summaryrefslogtreecommitdiff
path: root/www/wiki/resources/src/mediawiki/htmlform/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/resources/src/mediawiki/htmlform/styles.css')
-rw-r--r--www/wiki/resources/src/mediawiki/htmlform/styles.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/www/wiki/resources/src/mediawiki/htmlform/styles.css b/www/wiki/resources/src/mediawiki/htmlform/styles.css
new file mode 100644
index 00000000..0f331ee0
--- /dev/null
+++ b/www/wiki/resources/src/mediawiki/htmlform/styles.css
@@ -0,0 +1,54 @@
+/* HTMLForm styles */
+
+.mw-htmlform {
+ clear: both;
+}
+
+table.mw-htmlform-nolabel td.mw-label {
+ display: none;
+}
+
+.mw-htmlform-invalid-input td.mw-input input {
+ border-color: #d33;
+}
+
+.mw-htmlform-flatlist div.mw-htmlform-flatlist-item {
+ display: inline;
+ margin-right: 1em;
+ white-space: nowrap;
+}
+
+/* HTMLCheckMatrix */
+
+.mw-htmlform-matrix td {
+ padding-left: 0.5em;
+ padding-right: 0.5em;
+}
+
+tr.mw-htmlform-vertical-label td.mw-label {
+ text-align: left !important; /* stylelint-disable-line declaration-no-important */
+}
+
+.mw-icon-question {
+ /* SVG support using a transparent gradient to guarantee cross-browser
+ * compatibility (browsers able to understand gradient syntax support also SVG).
+ * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
+ background-image: url( images/question.png );
+ /* @embed */
+ background-image: linear-gradient( transparent, transparent ), url( images/question.svg );
+ background-repeat: no-repeat;
+ background-size: 13px 13px;
+ display: inline-block;
+ height: 13px;
+ width: 13px;
+ margin-left: 4px;
+}
+
+/* stylelint-disable indentation */
+.mw-icon-question:lang( ar ),
+.mw-icon-question:lang( fa ),
+.mw-icon-question:lang( ur ) {
+ -webkit-transform: scaleX( -1 );
+ -ms-transform: scaleX( -1 );
+ transform: scaleX( -1 );
+}