summaryrefslogtreecommitdiff
path: root/themes/stark
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-03 03:04:34 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-03 03:04:34 +0000
commit0bd7fcbf38d71df62904bd4c86046e9c85c9085d (patch)
tree4fc269aca56523e2d83bb743c36a1a47f7e38b2d /themes/stark
parent7fc6e2eaf9d60dd071f9a9d6360047f8a2312116 (diff)
downloadbrdo-0bd7fcbf38d71df62904bd4c86046e9c85c9085d.tar.gz
brdo-0bd7fcbf38d71df62904bd4c86046e9c85c9085d.tar.bz2
#226587 by JohnAlbin, E.Z, et al: Make sidebar regions semantic and RTL-friendly.
Diffstat (limited to 'themes/stark')
-rw-r--r--themes/stark/layout.css22
1 files changed, 11 insertions, 11 deletions
diff --git a/themes/stark/layout.css b/themes/stark/layout.css
index 0d87d6e2b..67f3117c8 100644
--- a/themes/stark/layout.css
+++ b/themes/stark/layout.css
@@ -17,8 +17,8 @@
*/
#content,
-#sidebar-left,
-#sidebar-right {
+#sidebar-first,
+#sidebar-second {
float: left;
display: inline;
position: relative;
@@ -27,11 +27,11 @@
#content {
width: 100%;
}
-body.sidebar-left #content {
+body.sidebar-first #content {
width: 80%;
- left: 20%;
+ left: 20%; /* LTR */
}
-body.sidebar-right #content {
+body.sidebar-second #content {
width: 80%;
}
body.two-sidebars #content {
@@ -39,17 +39,17 @@ body.two-sidebars #content {
left: 20%;
}
-#sidebar-left {
+#sidebar-first {
width: 20%;
- left: -80%;
+ left: -80%; /* LTR */
}
-body.two-sidebars #sidebar-left {
- left: -60%;
+body.two-sidebars #sidebar-first {
+ left: -60%; /* LTR */
}
-#sidebar-right {
- float: right;
+#sidebar-second {
+ float: right; /* LTR */
width: 20%;
}