Avoid pointless use of isset() in LBFactoryMulti()
[mediawiki.git] / resources / src / mediawiki.widgets.datetime / DateTimeInputWidget.less
blob84788d2a2fbf8815a2ae8b47300c3c9c975a1ef8
1 @import "mediawiki.widgets.datetime.definitions";
3 .mw-widgets-datetime-dateTimeInputWidget {
4         display: inline-block;
5         position: relative;
6         vertical-align: middle;
8         &-fields {
9                 position: relative;
10                 display: table;
11                 z-index: 2;
12                 .oo-ui-unselectable();
14                 > .mw-widgets-datetime-dateTimeInputWidget-field {
15                         .oo-ui-box-sizing(border-box);
17                         display: table-cell;
18                         white-space: pre;
19                 }
20         }
22         &-handle {
23                 width: 100%;
24                 display: inline-block;
25                 overflow: hidden;
27                 // Needed for proper behavior with overflow: hidden.
28                 vertical-align: bottom;
30                 .oo-ui-unselectable();
31                 .oo-ui-box-sizing(border-box);
33                 > .oo-ui-indicatorElement-indicator,
34                 > .oo-ui-iconElement-icon {
35                         position: absolute;
36                         background-position: center center;
37                         background-repeat: no-repeat;
38                         z-index: 1;
39                 }
40         }
42         margin: 0.25em 0;
43         width: 100%;
44         max-width: 50em;
46         .oo-ui-inline-spacing(0.5em);
48         &-handle {
49                 height: 2.5em;
50                 border: 1px solid #ccc;
51                 padding: 0 1em;
52                 margin: 0;
53                 background-color: #fff;
54                 color: #000;
55                 border: solid 1px #ccc;
56                 box-shadow: inset 0 0 0 0 @progressive;
57                 border-radius: 0.1em;
58                 .oo-ui-transition(box-shadow @quick-ease);
59                 .oo-ui-box-sizing(border-box);
61                 > .oo-ui-indicatorElement-indicator {
62                         right: 0;
63                 }
65                 > .oo-ui-iconElement-icon {
66                         left: 0.25em;
67                 }
69                 > .oo-ui-indicatorElement-indicator {
70                         top: 0;
71                         width: @indicator-size;
72                         height: @indicator-size;
73                         margin: 0.775em;
74                 }
76                 > .oo-ui-iconElement-icon {
77                         top: 0;
78                         width: @icon-size;
79                         height: @icon-size;
80                         margin: 0.3em;
81                 }
82         }
84         &-empty &-handle {
85                 color: #777;
86         }
88         &-field {
89                 padding: 0;
90                 margin: 0;
91                 font-size: inherit;
92                 font-family: inherit;
93                 background-color: transparent;
94                 color: inherit;
95                 border: none;
96                 box-shadow: none;
97                 text-align: center;
98                 vertical-align: middle;
99                 .oo-ui-box-sizing(border-box);
100         }
102         &.oo-ui-widget-disabled {
103                 .mw-widgets-datetime-dateTimeInputWidget-handle {
104                         color: #ccc;
105                         text-shadow: 0 1px 1px #fff;
106                         border-color: #ddd;
107                         background-color: #f3f3f3;
109                         > .oo-ui-iconElement-icon,
110                         > .oo-ui-indicatorElement-indicator {
111                                 opacity: 0.2;
112                         }
113                 }
114         }
116         &.oo-ui-widget-enabled {
117                 .mw-widgets-datetime-dateTimeInputWidget-editField:hover {
118                         background-color: #eee;
119                 }
121                 &.oo-ui-flaggedElement-invalid {
122                         .mw-widgets-datetime-dateTimeInputWidget-handle {
123                                 border-color: #f00;
124                                 box-shadow: inset 0 0 0 0 #f00;
125                         }
127                         .mw-widgets-datetime-dateTimeInputWidget-handle:focus {
128                                 border-color: #f00;
129                                 box-shadow: inset 0 0 0 0.1em #f00;
130                         }
131                 }
132         }
134         input.mw-widgets-datetime-dateTimeInputWidget-field {
135                 padding: 0.5em 0;
136         }
138         &-editField.mw-widgets-datetime-dateTimeInputWidget-invalid {
139                 border: 1px solid #f00;
140                 box-shadow: inset 0 0 0 0 #f00;
142                 &:focus {
143                         border: 1px solid #f00;
144                         box-shadow: inset 0 0 0 0.1em #f00;
145                 }
146         }
148         &.oo-ui-iconElement .mw-widgets-datetime-dateTimeInputWidget-handle {
149                 padding-left: 3em;
150         }
152         &.oo-ui-indicatorElement .mw-widgets-datetime-dateTimeInputWidget-handle {
153                 padding-right: 2em;
154         }