Inline CSS is bad in itself and bad for RTL support (why was there even a message...
[lhc/web/wiklou.git] / skins / common / shared.css
index 06513eb..1cebc9e 100644 (file)
@@ -4,6 +4,31 @@
  * another, but don't ignore the poor pre-Monobook users either.
  */
 
+/* GENERAL CLASSES FOR DIRECTIONALITY SUPPORT */
+/* These classes should be used for text depending on the content direction.
+Content stuff like editsection, ul/ol and TOC depend on this. */
+ /* @noflip */.mw-content-ltr { direction: ltr; }
+/* @noflip */.mw-content-rtl { direction: rtl; }
+/* Most input fields should be in site direction */
+/* @noflip */.sitedir-ltr textarea, .sitedir-ltr input { direction: ltr; }
+/* @noflip */.sitedir-rtl textarea, .sitedir-rtl input { direction: rtl; }
+/* Input types that should follow user direction, like buttons */
+input[type="submit"], input[type="button"], input[type="reset"], input[type="file"] { direction: ltr; }
+/* Override default values */
+/* @noflip */textarea[dir="ltr"], input[dir="ltr"] { direction: ltr; }
+/* @noflip */textarea[dir="rtl"], input[dir="rtl"] { direction: rtl; }
+
+.mw-float-start { float: left; }
+.mw-float-end { float: right; }
+.mw-align-start { text-align: left; }
+.mw-align-end { text-align: left; }
+
+/* The scripts of these languages are very hard to read with underlines */
+[lang="ar"] a, [lang="ckb"] a, [lang="fa"] a, [lang="kk-arab"] a,
+[lang="mzn"] a, [lang="ps"] a, [lang="ur"] a {
+       text-decoration: none;
+}
+
 /* Default style for semantic tags */
 abbr, acronym, .explain {
        border-bottom: 1px dotted black;
@@ -21,15 +46,6 @@ abbr, acronym, .explain {
        font-style: italic;
 }
 
-.mw-specialpages-table {
-       margin-top: -1em;
-       margin-bottom: 1em;
-}
-
-.mw-specialpages-table td {
-       vertical-align: top;
-}
-
 
 /* Comment and username portions of RC entries */
 span.comment {
@@ -71,7 +87,9 @@ div#mw-js-message {
        float: right;
        margin-left: 5px;
 }
-
+/* Correct directionality when page dir is different from site/user dir */
+/* @noflip */.mw-content-ltr .editsection, .mw-content-rtl .mw-content-ltr .editsection { float: right; }
+/* @noflip */.mw-content-rtl .editsection, .mw-content-ltr .mw-content-rtl .editsection { float: left; }
 /**
  * File histories
  */
@@ -103,9 +121,6 @@ li span.deleted, span.history-deleted {
        color: #888;
        font-style: italic;
 }
-li span.deleted a, span.history-deleted a {
-       color: #888;
-}
 
 /**
  * Patrol stuff
@@ -180,61 +195,25 @@ p.mw-revdel-editreasons {
 /*
  * OpenSearch ajax suggestions
  */
-.os-suggest {
-       overflow: auto;
-       overflow-x: hidden;
-       position: absolute;
-       top: 0px;
-       left: 0px;
-       width: 0px;
-       background-color: white;
-       background-color: Window;
-       border-style: solid;
-       border-color: #AAAAAA;
-       border-width: 1px;
-       z-index:99;
-       font-size:95%;
-}
-
-table.os-suggest-results {
+.open-search-suggestions .ui-autocomplete {
        font-size: 95%;
-       cursor: pointer;
-       border: 0;
-       border-collapse: collapse;
-       width: 100%;
-}
-
-.os-suggest-result, .os-suggest-result-hl {
-       white-space: nowrap;
-       background-color: white;
-       background-color: Window;
-       color: black;
-       color: WindowText;
-       padding: 2px;
+       border: 1px solid #AAA!important;
+       overflow: auto;
+       height: 100px;
+       background: #FFF;
+       background: Window;
 }
-.os-suggest-result-hl,
-.os-suggest-result-hl-webkit {
-       background-color: #4C59A6;
+.open-search-suggestions .ui-autocomplete #ui-active-menuitem {
+       background: #4C59A6;
+       background: Highlight;
        color: white;
-}
-.os-suggest-result-hl {
-       /* System colors are misimplemented in Safari 3.0 and earlier,
-          making highlighted text illegible... */
-       background-color: Highlight;
        color: HighlightText;
+       border-color: #4C59A6;
+       border-color: Highlight;
 }
-
-.os-suggest-toggle {
-       position: relative;
-       left: 1ex;
-       font-size: 65%;
-}
-.os-suggest-toggle-def {
-       position: absolute;
-       top: 0px;
-       left: 0px;
-       font-size: 65%;
-       visibility: hidden;
+.open-search-suggestions .ui-autocomplete .ui-menu-item a{
+       line-height: 1.1!important;
+       font-size: 95%;
 }
 
 /* Page history styling */
@@ -571,6 +550,11 @@ li.gallerybox div.thumb {
        margin: 2px;
 }
 
+li.gallerybox div.thumb img {
+       display: block;
+       margin: 0 auto;
+}
+
 div.gallerytext {
        overflow: hidden;
        font-size: 94%;
@@ -623,6 +607,15 @@ div.gallerytext {
        background-repeat: no-repeat;
 }
 
+/* Correct directionality when page dir is different from site/user dir */
+/* @noflip */.mw-content-ltr ul, .mw-content-ltr ol,
+.mw-content-rtl .mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ol {
+       margin: .3em 0 0 1.5em;
+}
+/* @noflip */.mw-content-rtl ul, .mw-content-rtl ol,
+.mw-content-ltr .mw-content-rtl ul, .mw-content-ltr .mw-content-rtl ol {
+       margin: .3em 1.5em 0 0;
+}
 /* Localised ordered list numbering for some languages */
 ol:lang(bcc) li,
 ol:lang(bqi) li,
@@ -649,21 +642,40 @@ ol:lang(or) li {
        list-style-type: oriya;
 }
 
+/* Correct directionality when page dir is different from site/user dir */
+/* @noflip */.mw-content-ltr .toc ul, .mw-content-ltr #toc ul,
+.mw-content-rtl .mw-content-ltr .toc ul, .mw-content-rtl .mw-content-ltr #toc ul {
+       text-align: left;
+       margin-left: 0;
+}
+/* @noflip */.mw-content-rtl .toc ul, .mw-content-rtl #toc ul,
+.mw-content-ltr .mw-content-rtl .toc ul, .mw-content-ltr .mw-content-rtl #toc ul {
+       text-align: right;
+       margin-right: 0;
+}
+/* @noflip */.mw-content-ltr .toc ul ul, .mw-content-ltr #toc ul ul,
+.mw-content-rtl .mw-content-ltr .toc ul ul, .mw-content-rtl .mw-content-ltr #toc ul ul {
+       margin: 0 0 0 2em;
+}
+/* @noflip */.mw-content-rtl .toc ul ul, .mw-content-rtl #toc ul ul,
+.mw-content-ltr .mw-content-rtl .toc ul ul, .mw-content-ltr .mw-content-rtl #toc ul ul {
+       margin: 0 2em 0 0;
+}
+
 /* tooltip styles */
 .mw-help-field-hint {
        display: none;
-       padding: 0px;
-       padding-left: 15px;
        margin-left: 2px;
        margin-bottom: -8px;
+       padding: 0px 0px 0px 15px;
        /* @embed */
        background-image: url('images/help-question.gif');
        background-position: left center;
        background-repeat: no-repeat;
-       color: #0645ad;
-       text-decoration: underline;
        cursor: pointer;
        font-size: .8em;
+       text-decoration: underline;
+       color: #0645ad;
 }
 .mw-help-field-hint:hover {
        /* @embed */
@@ -725,3 +737,42 @@ th.headerSortDown {
        unicode-bidi: embed;
 }
 
+#mw-clearyourcache, #mw-sitecsspreview, #mw-sitejspreview, #mw-usercsspreview, #mw-userjspreview {
+       direction: ltr;
+       unicode-bidi: embed;
+}
+
+/* Correct user & content directionality when viewing a diff */
+.diff-currentversion-title, .diff {
+       direction: ltr;
+       unicode-bidi: embed;
+}
+/* @noflip */ .diff-contentalign-right td {
+       direction: rtl;
+       unicode-bidi: embed;
+}
+/* @noflip */ .diff-contentalign-left td {
+       direction: ltr;
+       unicode-bidi: embed;
+}
+.diff-otitle, .diff-ntitle, .diff-lineno {
+       direction: ltr !important;
+       unicode-bidi: embed;
+}
+
+#mw-revision-info, #mw-revision-nav {
+       direction: ltr;
+}
+
+/* Images */
+/* @noflip */div.tright, div.floatright, table.floatright {
+       clear: right;
+       float: right;
+}
+/* @noflip */div.tleft, div.floatleft, table.floatleft {
+       float: left;
+       clear: left;
+}
+div.floatright, table.floatright, div.floatleft, table.floatleft {
+       position: relative;
+}
\ No newline at end of file