diff options
| author | ivar <i@oiee.no> | 2025-10-19 23:41:23 +0200 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-10-19 23:41:23 +0200 |
| commit | 3f4c0720e1e3421431e7baa20882a4a4512a7fab (patch) | |
| tree | 734ca81d7d0841d8863e3f523ebba14c282dc681 /src/wwwroot/libraries/fomantic/dist/components/calendar.css | |
| download | fagprove-master.tar.xz fagprove-master.zip | |
Diffstat (limited to 'src/wwwroot/libraries/fomantic/dist/components/calendar.css')
| -rw-r--r-- | src/wwwroot/libraries/fomantic/dist/components/calendar.css | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/src/wwwroot/libraries/fomantic/dist/components/calendar.css b/src/wwwroot/libraries/fomantic/dist/components/calendar.css new file mode 100644 index 0000000..3b50375 --- /dev/null +++ b/src/wwwroot/libraries/fomantic/dist/components/calendar.css @@ -0,0 +1,169 @@ +/*! + * # Fomantic-UI - Calendar + * http://github.com/fomantic/Fomantic-UI/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + + +/******************************* + Popup +*******************************/ + +.ui.calendar .ui.popup { + max-width: none; + padding: 0; + border: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + + +/******************************* + Calendar +*******************************/ + +.ui.calendar .calendar:focus { + outline: 0; +} + + +/******************************* + Grid +*******************************/ + +.ui.calendar .ui.popup .ui.grid { + display: block; + white-space: nowrap; +} +.ui.calendar .ui.popup .ui.grid > .column { + width: auto; +} + + +/******************************* + Table +*******************************/ + +.ui.calendar .ui.table.year, +.ui.calendar .ui.table.month, +.ui.calendar .ui.table.minute { + min-width: 15em; +} +.ui.calendar .ui.table.day { + min-width: 18em; +} +.ui.calendar .ui.table.day.andweek { + min-width: 22em; +} +.ui.calendar .ui.table.hour { + min-width: 20em; +} +.ui.calendar .ui.table tr th, +.ui.calendar .ui.table tr td { + padding: 0.5em; + white-space: nowrap; +} +.ui.calendar .ui.table tr th { + border-left: none; +} +.ui.calendar .ui.table tr th .icon { + margin: 0; +} +.ui.calendar .ui.table tr:first-child th { + position: relative; + padding-left: 0; + padding-right: 0; +} +.ui.calendar .ui.table.day tr:first-child th { + border: none; +} +.ui.calendar .ui.table.day tr:nth-child(2) th { + padding-top: 0.2em; + padding-bottom: 0.3em; +} +.ui.calendar .ui.table tr td { + padding-left: 0.1em; + padding-right: 0.1em; +} +.ui.calendar .ui.table tr .link { + cursor: pointer; +} +.ui.calendar .ui.table tr .prev.link { + width: 14.28571429%; + position: absolute; + left: 0; +} +.ui.calendar .ui.table tr .next.link { + width: 14.28571429%; + position: absolute; + right: 0; +} +.ui.calendar .ui.table tr .disabled { + pointer-events: auto; + cursor: default; + color: rgba(40, 40, 40, 0.3); +} +.ui.calendar .ui.table tr .adjacent:not(.disabled) { + color: rgba(0, 0, 0, 0.6); + background: rgba(0, 0, 0, 0.03); +} + +/*-------------- + States +---------------*/ + +.ui.calendar .ui.table tr td.today { + font-weight: bold; +} +.ui.calendar .ui.table tr td.range { + background: rgba(0, 0, 0, 0.05); + color: rgba(0, 0, 0, 0.95); + -webkit-box-shadow: none; + box-shadow: none; +} +.ui.calendar .ui.table.inverted tr td.range { + background: rgba(255, 255, 255, 0.08); + color: #ffffff; + -webkit-box-shadow: none; + box-shadow: none; +} +.ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus, +.ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus { + -webkit-box-shadow: inset 0 0 0 1px #85B7D9; + box-shadow: inset 0 0 0 1px #85B7D9; +} +.ui.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus, +.ui.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus { + -webkit-box-shadow: inset 0 0 0 1px #85B7D9; + box-shadow: inset 0 0 0 1px #85B7D9; +} + + +/******************************* + States +*******************************/ + + +/*-------------------- + Disabled + ---------------------*/ + +.ui.disabled.calendar { + opacity: 0.45; +} +.ui.disabled.calendar > .input, +.ui.disabled.calendar .ui.table tr .link { + pointer-events: none; +} + + +/******************************* + Theme Overrides +*******************************/ + |
