Merge "Add tests for LanguageConverter classes that didn't have them"
[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-optionalWidget {
37 width: 100%;
38 }
39
40 .mw-apisandbox-optionalWidget.oo-ui-widget-disabled {
41 position: relative;
42 z-index: 0; /* New stacking context to prevent the overlay from leaking out */
43 }
44
45 .mw-apisandbox-optionalWidget-overlay {
46 position: absolute;
47 left: 0;
48 right: 0;
49 top: 0;
50 bottom: 0;
51 z-index: 2;
52 cursor: pointer;
53 }
54
55 .mw-apisandbox-optionalWidget-fields {
56 display: table;
57 width: 100%;
58 }
59
60 .mw-apisandbox-optionalWidget-widget,
61 .mw-apisandbox-optionalWidget-checkbox {
62 display: table-cell;
63 vertical-align: middle;
64 }
65
66 .mw-apisandbox-optionalWidget-checkbox {
67 width: 1%; /* Will be expanded by content */
68 white-space: nowrap;
69 padding-left: 0.5em;
70 }
71
72 .oo-ui-textInputWidget.oo-ui-widget-enabled > .oo-ui-indicatorElement-indicator.mw-apisandbox-clickable-indicator {
73 cursor: pointer;
74 }