Move remaining LoadBalancer classes to Rdbms
[mediawiki.git] / resources / src / mediawiki.ui / components / radio.less
blob7538ff4e3e880c61485039dea6b537674974faa1
1 @import "mediawiki.mixins";
2 @import "mediawiki.ui/variables";
4 // Radio
5 //
6 // Styling radios in a way that works cross browser is a tricky problem to solve.
7 // In MediaWiki UI put a radio and label inside a mw-ui-radio div.
8 // This renders in all browsers except IE 6-8 which do not support the :checked selector;
9 // these are kept backwards-compatible using the `:not( #noop )` selector.
10 // You should give the radio and label matching "id" and "for" attributes, respectively.
12 // Markup:
13 // <div class="mw-ui-radio">
14 //   <input type="radio" id="kss-example-4" name="kss-example-4">
15 //   <label for="kss-example-4">Standard radio</label>
16 // </div>
17 // <div class="mw-ui-radio">
18 //   <input type="radio" id="kss-example-4-checked" name="kss-example-4" checked>
19 //   <label for="kss-example-4-checked">Standard checked radio</label>
20 // </div>
21 // <div class="mw-ui-radio">
22 //   <input type="radio" id="kss-example-4-disabled" name="kss-example-4-disabled" disabled>
23 //   <label for="kss-example-4-disabled">Disabled radio</label>
24 // </div>
25 // <div class="mw-ui-radio">
26 //   <input type="radio" id="kss-example-4-disabled-checked" name="kss-example-4-disabled" disabled checked>
27 //   <label for="kss-example-4-disabled-checked">Disabled checked radio</label>
28 // </div>
30 // Styleguide 4.
31 .mw-ui-radio {
32         display: inline-block;
33         vertical-align: middle;
36 // We use the not selector to cancel out styling on IE 8 and below.
37 // We also disable this styling on JavaScript disabled devices. This fixes the issue with
38 // Opera Mini where checking/unchecking doesn't apply styling but potentially leaves other
39 // more capable browsers with unstyled radio buttons.
40 .client-js .mw-ui-radio:not( #noop ) {
41         // Position relatively so we can make use of absolute pseudo elements
42         position: relative;
43         line-height: @radioSize;
45         * {
46                 // reset font sizes (see T74727)
47                 font: inherit;
48                 vertical-align: middle;
49         }
51         input[type="radio"] {
52                 // we hide the input element as instead we will style the label that follows
53                 // we use opacity so that VoiceOver software can still identify it
54                 opacity: 0;
55                 // ensure the invisible radio takes up the required width
56                 width: @radioSize;
57                 height: @radioSize;
58                 // This is needed for Firefox mobile (See T73750 to workaround default Firefox stylesheet)
59                 max-width: none;
60                 margin-right: 0.4em;
62                 // the pseudo before element of the label after the radio now looks like a radio
63                 & + label::before {
64                         content: '';
65                         background-color: #fff;
66                         .background-image-svg( 'images/radio_checked.svg', 'images/radio_checked.png' );
67                         background-origin: border-box;
68                         background-position: center center;
69                         background-repeat: no-repeat;
70                         .background-size( 0, 0 );
71                         .box-sizing( border-box );
72                         position: absolute;
73                         left: 0;
74                         width: @radioSize;
75                         height: @radioSize;
76                         border: 1px solid @colorGray7;
77                         border-radius: 100%;
78                         cursor: pointer;
79                 }
81                 // when the input is checked, style the label pseudo before element that followed as a checked radio
82                 &:checked + label::before {
83                         .background-size( 100%, 100% );
84                 }
86                 &:active + label::before {
87                         background-color: @colorGray13;
88                         border-color: @colorGray13;
89                 }
91                 &:focus + label::before {
92                         border-width: 2px;
93                 }
95                 &:focus:hover + label::before,
96                 &:hover + label::before {
97                         border-bottom-width: 3px;
98                 }
100                 // disabled radios have a gray background
101                 &:disabled + label::before {
102                         background-color: @colorGray14;
103                         border-color: @colorGray14;
104                         cursor: default;
105                 }
107                 // disabled and checked radios have a white circle
108                 &:disabled:checked + label::before {
109                         .background-image-svg( 'images/radio_disabled.svg', 'images/radio_disabled.png' );
110                 }
111         }