Skip to content

Commit

Permalink
moved rtl styles into style.css; added new toc selector
Browse files Browse the repository at this point in the history
  • Loading branch information
selfthinker committed Sep 10, 2012
1 parent dbe362d commit 90c13ad
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
12 changes: 0 additions & 12 deletions rtl.css

This file was deleted.

19 changes: 18 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@

.dokuwiki .plugin_loadskin {
float: right;
clear: right;
margin-bottom: .5em;
}
[dir=rtl] .dokuwiki .plugin_loadskin {
float: left;
clear: left;
}

.dokuwiki .plugin_loadskin form label {
background: transparent url(images/color_swatch.png) no-repeat 0 center;
padding-left: 20px;
}
[dir=rtl] .dokuwiki .plugin_loadskin form label {
background-position: right center;
padding-left: 0;
padding-right: 20px;
}

.dokuwiki .plugin_loadskin form label span {
display: none;
}

.dokuwiki div.toc {
.dokuwiki div.toc,
.dokuwiki #dw__toc {
clear: right;
}
[dir=rtl] .dokuwiki div.toc,
[dir=rtl] .dokuwiki #dw__toc {
clear: left;
}

0 comments on commit 90c13ad

Please sign in to comment.