Merge "Give redirects a sort index in title widget"
[lhc/web/wiklou.git] / resources / src / mediawiki.special / mediawiki.special.apisandbox.css
1 .mw-apisandbox-fullscreen {
2 overflow: hidden;
3 }
4
5 .mw-apisandbox-toolbar {
6 text-align: right;
7 padding: 0.5em;
8 }
9
10 .mw-apisandbox-popup .oo-ui-popupWidget-body > .oo-ui-widget {
11 vertical-align: middle;
12 }
13
14 /* So DateTimeInputWidget's calendar popup works... */
15 .mw-apisandbox-popup .oo-ui-popupWidget-popup,
16 .mw-apisandbox-popup .oo-ui-popupWidget-body {
17 overflow: visible;
18 }
19
20 .mw-apisandbox-fullscreen #mw-apisandbox-ui {
21 position: fixed;
22 top: 0;
23 left: 0;
24 bottom: 0;
25 right: 0;
26 background: #fff;
27 z-index: 100;
28 }
29
30 .mw-apisandbox-spacer {
31 display: inline-block;
32 height: 1px;
33 width: 5em;
34 }
35
36 .mw-apisandbox-help-field {
37 border-bottom: 1px solid rgba( 0, 0, 0, 0.1 );
38 }
39
40 .mw-apisandbox-help-field:last-child {
41 border-bottom: none;
42 }
43
44 .mw-apisandbox-optionalWidget {
45 width: 100%;
46 }
47
48 .mw-apisandbox-optionalWidget.oo-ui-widget-disabled {
49 position: relative;
50 z-index: 0; /* New stacking context to prevent the overlay from leaking out */
51 }
52
53 .mw-apisandbox-optionalWidget-overlay {
54 position: absolute;
55 left: 0;
56 right: 0;
57 top: 0;
58 bottom: 0;
59 z-index: 2;
60 cursor: pointer;
61 }
62
63 .mw-apisandbox-optionalWidget-fields {
64 display: table;
65 width: 100%;
66 }
67
68 .mw-apisandbox-optionalWidget-widget,
69 .mw-apisandbox-optionalWidget-checkbox {
70 display: table-cell;
71 vertical-align: middle;
72 }
73
74 .mw-apisandbox-optionalWidget-checkbox {
75 width: 1%; /* Will be expanded by content */
76 white-space: nowrap;
77 padding-left: 0.5em;
78 }
79
80 .oo-ui-textInputWidget.oo-ui-widget-enabled > .oo-ui-indicatorElement-indicator.mw-apisandbox-clickable-indicator {
81 cursor: pointer;
82 }