1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
// ----------------------------------------------------------------------------
// Form styling mixins
// ----------------------------------------------------------------------------
.agora-label-styling() {
font-size: 0.9em;
color: @colorText;
* {
font-weight: normal;
}
}
.agora-inline-label-styling() {
margin-bottom: 0.5em;
cursor: pointer;
vertical-align: bottom;
line-height: normal;
font-weight: normal;
& > input[type="checkbox"],
& > input[type="radio"] {
width: auto;
height: auto;
margin: 0 0.1em 0 0;
padding: 0;
border: 1px solid @colorFieldBorder;
cursor: pointer;
}
}
// ----------------------------------------------------------------------------
// Button styling
// ----------------------------------------------------------------------------
.button-colors(@bgColor) {
background: @bgColor;
&:hover,
&:focus {
// The inner bottom bevel should match the active background color.
box-shadow: 0 1px rgba(0, 0, 0, 10%), inset 0 -3px rgba(0, 0, 0, 20%);
border-bottom-color: mix(#000, @bgColor, 20%);
outline: none;
// remove outline in Firefox
&::-moz-focus-inner {
border-color: transparent;
}
}
&:active,
&.mw-ui-checked {
// lessphp doesn't implement shade (https://github.com/leafo/lessphp/issues/528);
// it passes it through, then ResourceLoader drops it.
// background: shade(@bgColor, 20%);
background: mix(#000, @bgColor, 20%);
box-shadow: none;
}
}
.button-colors(@bgColor) when (lightness(@bgColor) >= 70%) {
color: @colorButtonText;
border: 1px solid @colorGray12;
&:disabled {
color: @colorDisabledText;
// make sure disabled buttons don't have hover and active states
&:hover,
&:active {
background: @bgColor;
box-shadow: none;
}
}
}
.button-colors(@bgColor) when (lightness(@bgColor) < 70%) {
color: #fff;
// border of the same color as background so that light background and
// dark background buttons are the same height (only top and bottom to
// make box shadow on hover cover the corners too)
border: 1px solid @bgColor;
border-left: none;
border-right: none;
text-shadow: 0 1px rgba(0, 0, 0, .1);
&:disabled {
background: @colorGray12;
border-color: @colorGray12;
// make sure disabled buttons don't have hover and active states
&:hover,
&:active,
&.mw-ui-checked {
box-shadow: none;
}
}
}
.button-colors-quiet(@textColor) {
// Quiet buttons all start gray, and reveal
// constructive/progressive/destructive color on hover and active.
color: @colorButtonText;
&:hover,
&:focus {
// lessphp doesn't implement tint, see above
// color: tint(@textColor, 20%);
color: mix(#fff, @textColor, 20%);
}
&:active,
&.mw-ui-checked {
// lessphp doesn't implement shade, see above
// color: shade(@textColor, 20%);
color: mix(#000, @textColor, 20%);
}
&:disabled {
color: @colorDisabledText;
}
}
|