UNPKG

4.9 kBCSSView Raw
1
2.next-sr-only {
3 position: absolute;
4 width: 1px;
5 height: 1px;
6 padding: 0;
7 overflow: hidden;
8 clip: rect(0, 0, 0, 0);
9 white-space: nowrap;
10 border: 0;
11 top: 0;
12 margin: -1px; }
13
14.next-time-picker-menu {
15 float: left;
16 text-align: center; }
17 .next-time-picker-menu:not(:last-child) {
18 border-right: 1px solid #C4C6CF;
19 border-right: var(--time-picker-menu-border-width, 1px) var(--line-solid, solid) var(--time-picker-menu-border-color, #C4C6CF); }
20 .next-time-picker-menu-title {
21 cursor: default;
22 height: 28px;
23 height: var(--time-picker-menu-title-height, 28px);
24 line-height: 28px;
25 line-height: var(--time-picker-menu-title-height, 28px);
26 font-size: 12px;
27 font-size: var(--time-picker-menu-title-font-size, 12px);
28 font-weight: normal;
29 font-weight: var(--time-pikcer-menu-title-font-weight, normal);
30 color: #999999;
31 color: var(--time-picker-menu-title-color, #999999);
32 background: #FFFFFF;
33 background: var(--time-picker-menu-title-background, #FFFFFF); }
34 .next-time-picker-menu ul {
35 position: relative;
36 overflow-y: auto;
37 list-style: none;
38 margin: 0;
39 padding: 0;
40 font-size: 12px;
41 font-size: var(--time-picker-menu-item-font-size, 12px);
42 height: 196px;
43 height: calc(var(--time-picker-menu-item-height, 28px)*7); }
44 .next-time-picker-menu-item {
45 cursor: pointer;
46 height: 28px;
47 height: var(--time-picker-menu-item-height, 28px);
48 line-height: 28px;
49 line-height: var(--time-picker-menu-item-height, 28px);
50 transition: background 100ms linear;
51 transition: background var(--motion-duration-immediately, 100ms) var(--motion-linear, linear);
52 color: #666666;
53 color: var(--time-picker-menu-item-color, #666666);
54 background: #FFFFFF;
55 background: var(--time-picker-menu-item-background, #FFFFFF);
56 outline: none; }
57 .next-time-picker-menu-item:hover {
58 color: #333333;
59 color: var(--time-picker-menu-item-color-hover, #333333);
60 background: #F2F3F7;
61 background: var(--time-picker-menu-item-background-hover, #F2F3F7); }
62 .next-time-picker-menu-item.next-selected {
63 font-weight: bold;
64 font-weight: var(--time-picker-menu-item-font-weight-selected, bold);
65 color: #666666;
66 color: var(--time-picker-menu-item-color-selected, #666666);
67 background: #F2F3F7;
68 background: var(--time-picker-menu-item-background-selected, #F2F3F7); }
69 .next-time-picker-menu-item.next-disabled {
70 cursor: not-allowed;
71 color: #CCCCCC;
72 color: var(--time-picker-menu-item-color-disabled, #CCCCCC);
73 background: #FFFFFF;
74 background: var(--time-picker-menu-item-background-disabled, #FFFFFF); }
75
76.next-time-picker-panel {
77 box-sizing: border-box; }
78 .next-time-picker-panel *,
79 .next-time-picker-panel *:before,
80 .next-time-picker-panel *:after {
81 box-sizing: border-box; }
82 .next-time-picker-panel:after {
83 visibility: hidden;
84 display: block;
85 height: 0;
86 font-size: 0;
87 content: '\0020';
88 clear: both; }
89 .next-time-picker-panel-header {
90 border-bottom: 1px solid #DCDEE3;
91 border-bottom: var(--line-1, 1px) var(--line-solid, solid) var(--time-picker-panel-border-color, #DCDEE3); }
92 .next-time-picker-panel-input.next-input {
93 width: 100%;
94 padding: 6px;
95 border-color: transparent;
96 vertical-align: middle; }
97 .next-time-picker-panel-col-3 .next-time-picker-menu {
98 width: 33.33333%; }
99 .next-time-picker-panel-col-2 .next-time-picker-menu {
100 width: 50%; }
101 .next-time-picker-panel-col-1 .next-time-picker-menu {
102 width: 100%; }
103
104.next-time-picker-body[dir="rtl"] .next-time-picker-menu {
105 float: right; }
106 .next-time-picker-body[dir="rtl"] .next-time-picker-menu:not(:last-child) {
107 border-right: none;
108 border-left: 1px solid #C4C6CF;
109 border-left: var(--time-picker-menu-border-width, 1px) var(--line-solid, solid) var(--time-picker-menu-border-color, #C4C6CF); }
110
111.next-time-picker {
112 box-sizing: border-box;
113 display: inline-block;
114 width: 200px;
115 width: var(--s-50, 200px); }
116 .next-time-picker *,
117 .next-time-picker *:before,
118 .next-time-picker *:after {
119 box-sizing: border-box; }
120 .next-time-picker-trigger .next-input {
121 width: 100%; }
122 .next-time-picker-body {
123 overflow: hidden;
124 width: 200px;
125 width: var(--time-picker-panel-width, 200px);
126 border: 1px solid #DCDEE3;
127 border: var(--popup-local-border-width, 1px) var(--popup-local-border-style, solid) var(--time-picker-panel-border-color, #DCDEE3);
128 border-radius: 3px;
129 border-radius: var(--time-picker-panel-corner, 3px);
130 background: #FFFFFF;
131 background: var(--time-picker-panel-background, #FFFFFF);
132 box-shadow: none;
133 box-shadow: var(--time-picker-panel-shadow, none); }
134 .next-time-picker-symbol-clock-icon::before {
135 content: "";
136 content: var(--time-picker-clock-icon, ""); }