Merge "SpecialMovepage: Convert form to use OOUI controls"
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.htmlform.css
1 /* HTMLForm styles */
2
3 table.mw-htmlform-nolabel td.mw-label {
4 width: 1px;
5 }
6
7 .mw-htmlform-invalid-input td.mw-input input {
8 border-color: red;
9 }
10
11 .mw-htmlform-flatlist div.mw-htmlform-flatlist-item {
12 display: inline;
13 margin-right: 1em;
14 white-space: nowrap;
15 }
16
17 /* HTMLCheckMatrix */
18
19 .mw-htmlform-matrix td {
20 padding-left: 0.5em;
21 padding-right: 0.5em;
22 }
23
24 tr.mw-htmlform-vertical-label td.mw-label {
25 text-align: left !important;
26 }
27
28 .mw-icon-question {
29 /* SVG support using a transparent gradient to guarantee cross-browser
30 * compatibility (browsers able to understand gradient syntax support also SVG).
31 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
32 background-image: url(images/question.png);
33 /* @embed */
34 background-image: -webkit-linear-gradient(transparent, transparent), url(images/question.svg);
35 /* @embed */
36 background-image: linear-gradient(transparent, transparent), url(images/question.svg);
37 background-repeat: no-repeat;
38 background-size: 13px 13px;
39 display: inline-block;
40 height: 13px;
41 width: 13px;
42 margin-left: 4px;
43 }
44
45 .mw-icon-question:lang(ar),
46 .mw-icon-question:lang(fa),
47 .mw-icon-question:lang(ur) {
48 -webkit-transform: scaleX(-1);
49 -ms-transform: scaleX(-1);
50 transform: scaleX(-1);
51 }