Merge "objectcache: add "epoch" parameter to WANObjectCache"
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / styles / mw.rcfilters.less
1 @import 'mediawiki.mixins.animation';
2 @import 'mediawiki.ui/variables';
3 @import 'mw.rcfilters.mixins';
4
5 @rcfilters-spinner-size: 12px;
6 @rcfilters-head-min-height: 210px;
7 @rcfilters-head-margin-bottom: 20px;
8 @rcfilters-wl-head-min-height: 295px;
9 @rcfilters-head-min-height-collapsed: 130px;
10 @rcfilters-wl-head-min-height-collapsed: 220px;
11
12 // Corrections for the standard special page
13 .client-js {
14 .cloptions {
15 border: 0;
16 }
17
18 // Reserve space for the UI while it loads
19 .rcfilters-head {
20 min-height: @rcfilters-head-min-height;
21 margin-bottom: @rcfilters-head-margin-bottom;
22 }
23
24 // On the watchlist, reserve a bit more
25 .mw-special-Watchlist .rcfilters-head {
26 min-height: @rcfilters-wl-head-min-height;
27
28 }
29
30 .mw-rcfilters-collapsed {
31 .rcfilters-head {
32 min-height: @rcfilters-head-min-height-collapsed;
33 }
34
35 // On the watchlist, reserve a bit more
36 &.mw-special-Watchlist .rcfilters-head {
37 min-height: @rcfilters-wl-head-min-height-collapsed;
38 }
39 }
40
41 .mw-recentchanges-toplinks {
42 padding-left: 0.5em;
43
44 &:not( .mw-recentchanges-toplinks-collapsed ) {
45 margin-top: -1px; // Make up for `border` to prevent link movement
46 margin-left: -1px;
47 margin-bottom: 0.5em;
48 border: 1px solid @colorGray12; // Same as the legend
49 padding: 0 0.5em 0.5em 0.5em;
50 }
51
52 /* stylelint-disable declaration-no-important */
53 .oo-ui-buttonElement > .oo-ui-buttonElement-button {
54 padding-right: 1.2em !important;
55
56 > .oo-ui-indicatorElement-indicator {
57 right: 0 !important;
58 width: 0.9375em !important;
59 }
60 }
61 /* stylelint-enable declaration-no-important */
62 }
63
64 body:not( .mw-rcfilters-ui-initialized ) {
65 .mw-recentchanges-toplinks.mw-recentchanges-toplinks-collapsed {
66 // Similar to the watchlist-details hack, we are going to make this float left
67 // while loading to prevent jumpiness in the min-height calculation
68 float: left;
69
70 .mw-recentchanges-toplinks-content {
71 display: none;
72 }
73 }
74
75 .rcfilters-head {
76 opacity: 0.5;
77 pointer-events: none;
78
79 .cloptions {
80 display: none;
81 }
82
83 }
84 }
85
86 .mw-rcfilters-ui-highlights {
87 display: none;
88 }
89
90 .mw-changeslist {
91 // Reserve space for the highlight circles
92 ul,
93 table.mw-enhanced-rc {
94 .result-circle-margin();
95 }
96 }
97
98 // Temporarily hide the empty results section while we load rcfilters.
99 .mw-changeslist-empty {
100 display: none;
101 }
102
103 .errorbox {
104 display: none;
105 }
106
107 body.mw-rcfilters-ui-loading .mw-changeslist {
108 opacity: 0.5;
109 }
110
111 .rcfilters-spinner {
112 display: none;
113 position: absolute;
114 left: 50%;
115 // Make sure the middle of the spinner is centered, rather than its left edge
116 margin-left: -3 * @rcfilters-spinner-size / 2;
117 white-space: nowrap;
118
119 & .rcfilters-spinner-bounce,
120 &:before,
121 &:after {
122 content: '';
123 background-color: @colorGray7;
124 display: block;
125 float: left;
126 width: @rcfilters-spinner-size;
127 height: @rcfilters-spinner-size;
128 border-radius: 100%;
129 .animation( rcfiltersBouncedelay 1600ms ease-in-out -160ms infinite both );
130 }
131
132 &:before {
133 margin-right: 4px;
134 .animation-delay( -330ms );
135 }
136
137 &:after {
138 margin-left: 4px;
139 .animation-delay( 0s );
140 }
141 }
142 body:not( .mw-rcfilters-ui-initialized ) .rcfilters-spinner {
143 display: block;
144 // When initializing, display the spinner on top of the area where the UI will appear
145 margin-top: -( @rcfilters-head-min-height + @rcfilters-head-margin-bottom ) / 1.5;
146 }
147 body.mw-rcfilters-ui-loading .rcfilters-spinner {
148 display: block;
149 // When loading new results, display the spinner on top of the results area
150 margin-top: -( @rcfilters-head-min-height + @rcfilters-head-margin-bottom ) / 8;
151 }
152
153 #contentSub,
154 form#mw-watchlist-resetbutton {
155 display: none;
156 }
157
158 // Why does rcfilters have a copy of this?
159 // TODO: Remove per T195256.
160 #jump-to-nav {
161 margin-top: -0.5em;
162 margin-bottom: 0.5em;
163 }
164
165 // Make the watchlist-details message display while loading, but make it not take up any
166 // space. This makes the min-height trick work better.
167 .watchlistDetails {
168 float: left;
169 // The 20em should match the min-width we are setting up
170 // for the .mw-rcfilters-ui-watchlistTopSectionWidget-editWatchlistButton
171 // in mw.rcfilters.ui.WatchlistTopSectionWidget.less
172 width: ~'calc( 100% - 20em )';
173 }
174 }
175
176 .mw-rcfilters-staticfilters-selected {
177 font-weight: bold;
178 }
179
180 @-webkit-keyframes rcfiltersBouncedelay {
181 0%,
182 50%, // equals 800ms
183 100% {
184 -webkit-transform: scale( 0.625 );
185 }
186 20% { // equals 320ms
187 opacity: 0.87;
188 -webkit-transform: scale( 1 );
189 }
190 }
191
192 @-moz-keyframes rcfiltersBouncedelay {
193 0%,
194 50%,
195 100% {
196 -moz-transform: scale( 0.625 );
197 }
198 20% {
199 opacity: 0.87;
200 -moz-transform: scale( 1 );
201 }
202 }
203
204 @keyframes rcfiltersBouncedelay {
205 0%,
206 50%,
207 100% {
208 transform: scale( 0.625 );
209 }
210 20% { // equals 320ms
211 opacity: 0.87;
212 transform: scale( 1 );
213 }
214 }