123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- @use 'sass:map';
- .xdsoft_datetimepicker {
- box-shadow: 0 5px 10px -5px theme('colors.black-35');
- background: theme('colors.surface-field');
- border: 1px solid theme('colors.border-field-default');
- padding: 8px;
- padding-inline-start: 0;
- padding-top: 2px;
- position: absolute;
- z-index: 500;
- display: none;
- .w-dialog & {
- z-index: calc(theme('zIndex.dialog') + 5);
- }
- * {
- padding: 0;
- margin: 0;
- }
- iframe {
- position: absolute;
- inset-inline-start: 0;
- top: 0;
- width: 75px;
- height: 210px;
- background: transparent;
- border: 0;
- }
- .xdsoft_datepicker,
- .xdsoft_timepicker {
- display: none;
- &.active {
- display: block;
- }
- }
- .xdsoft_datepicker {
- float: left;
- margin-inline-start: 8px;
- }
- .xdsoft_datepicker.active + .xdsoft_timepicker {
- margin-top: 8px;
- margin-bottom: 3px;
- }
- .xdsoft_mounthpicker {
- position: relative;
- text-align: center;
- }
- .xdsoft_next,
- .xdsoft_prev,
- .xdsoft_today_button {
- background-color: transparent;
- cursor: pointer;
- display: block;
- border: 0;
- overflow: hidden;
- padding: 5px 0;
- position: relative;
- white-space: nowrap;
- width: 2em;
- color: theme('colors.text-button-outline-default');
- text-align: center;
- &:before {
- content: '';
- display: inline-block;
- width: 1rem;
- height: 1rem;
- text-align: center;
- margin: 0;
- background-color: currentColor;
- @media (forced-colors: active) {
- background-color: ButtonText;
- }
- }
- &:hover {
- color: theme('colors.surface-button-hover');
- }
- }
- .xdsoft_prev {
- float: left;
- &:before {
- mask-image: url('#{$images-root}icons/arrow-left.svg');
- }
- }
- .xdsoft_today_button {
- float: left;
- margin-inline-start: 5px;
- &:before {
- mask-image: url('#{$images-root}icons/home.svg');
- }
- }
- .xdsoft_next {
- float: right;
- &:before {
- mask-image: url('#{$images-root}icons/arrow-right.svg');
- }
- }
- .xdsoft_timepicker {
- min-width: 70px;
- float: left;
- text-align: center;
- margin-inline-start: 8px;
- margin-top: 0;
- .xdsoft_prev,
- .xdsoft_next {
- float: none;
- height: 1.5em;
- display: block;
- text-align: center;
- width: 100%;
- padding: 0;
- }
- .xdsoft_prev:before {
- mask-image: url('#{$images-root}icons/arrow-up.svg');
- }
- .xdsoft_next:before {
- mask-image: url('#{$images-root}icons/arrow-down.svg');
- }
- .xdsoft_time_box {
- position: relative;
- border: 1px solid theme('colors.border-furniture');
- height: 170px;
- overflow: hidden;
- > div > div {
- background: theme('colors.surface-header');
- border-top: 1px solid theme('colors.border-furniture');
- color: theme('colors.text-context');
- font-size: 1em;
- text-align: center;
- border-collapse: collapse;
- cursor: pointer;
- border-bottom-width: 0;
- height: 2.3em;
- line-height: 2.3em;
- padding-inline-start: 0.6em;
- padding-inline-end: 0.6em;
- // stylelint-disable-next-line max-nesting-depth
- &:first-child {
- border-top-width: 0;
- }
- }
- }
- }
- .xdsoft_label {
- display: inline;
- position: relative;
- z-index: 9999;
- margin: 0;
- padding: 5px 3px;
- font-size: 14px;
- line-height: 20px;
- font-weight: bold;
- background-color: theme('colors.surface-page');
- float: left;
- width: 182px;
- text-align: center;
- cursor: pointer;
- &:hover {
- text-decoration: underline;
- }
- > .xdsoft_select {
- border: 1px solid theme('colors.border-furniture');
- position: absolute;
- inset-inline-end: 0;
- top: 30px;
- z-index: 101;
- display: none;
- background: theme('colors.surface-field');
- max-height: 160px;
- overflow-y: hidden;
- &.xdsoft_monthselect {
- inset-inline-end: -7px;
- }
- &.xdsoft_yearselect {
- inset-inline-end: 2px;
- }
- > div > .xdsoft_option:hover {
- background: theme('colors.text-highlight');
- // stylelint-disable-next-line max-nesting-depth
- @media (forced-colors: active) {
- background: SelectedItem;
- }
- }
- > div > .xdsoft_option {
- padding: 2px 15px 2px 5px;
- }
- }
- }
- .xdsoft_month {
- width: 90px;
- text-align: end;
- }
- .xdsoft_year {
- width: 56px;
- }
- .xdsoft_calendar {
- clear: both;
- table {
- border-collapse: collapse;
- }
- td > div {
- padding-inline-end: 5px;
- }
- td,
- th {
- width: 14.285%;
- border: 1px solid theme('colors.border-furniture');
- color: theme('colors.text-context');
- font-size: 12px;
- text-align: end;
- padding: 5px 7px;
- border-collapse: collapse;
- cursor: pointer;
- height: 25px;
- }
- td {
- background-color: theme('colors.surface-page');
- }
- th {
- background: theme('colors.surface-header');
- font-weight: 700;
- font-size: 0.85em;
- text-align: center;
- cursor: default;
- }
- }
- .xdsoft_calendar td.xdsoft_default,
- .xdsoft_calendar td.xdsoft_current,
- .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
- background: theme('colors.text-highlight');
- font-weight: 700;
- @media (forced-colors: active) {
- background: SelectedItem;
- }
- }
- .xdsoft_calendar td.xdsoft_other_month,
- .xdsoft_calendar td.xdsoft_disabled,
- .xdsoft_time_box > div > div.xdsoft_disabled {
- opacity: 0.5;
- background: theme('colors.border-furniture');
- @media (forced-colors: active) {
- opacity: 1;
- color: GrayText;
- }
- }
- .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
- opacity: 0.2;
- @media (forced-colors: active) {
- opacity: 1;
- color: GrayText;
- }
- }
- .xdsoft_calendar td:hover,
- .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
- color: theme('colors.text-button');
- background: theme('colors.surface-button-default');
- }
- .xdsoft_calendar td.xdsoft_today {
- font-weight: 700;
- }
- }
- .xdsoft_noselect {
- user-select: none;
- }
- .xdsoft_noselect::selection {
- background: transparent;
- }
- .xdsoft_noselect::-moz-selection {
- background: transparent;
- }
- .xdsoft_datetimepicker.xdsoft_inline {
- display: inline-block;
- position: static;
- box-shadow: none;
- }
- .xdsoft_scroller_box {
- position: relative;
- }
- .xdsoft_scrollbar {
- position: absolute;
- width: 7px;
- inset-inline-end: 0;
- top: 0;
- bottom: 0;
- cursor: pointer;
- > .xdsoft_scroller {
- // stylelint-disable-next-line declaration-no-important
- background: theme('colors.border-furniture') !important;
- height: 20px;
- border-radius: 3px;
- }
- }
|