summaryrefslogtreecommitdiffstats
path: root/web/html/css/arch.css
diff options
context:
space:
mode:
authorPyroPeter <abi1789@googlemail.com>2011-02-15 21:32:52 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2011-02-18 13:52:38 +0100
commit3d6c6cc98a09bd9d30a144d428d6ff093de2f477 (patch)
treecf3d5d2952d4a560a76160995d0e82f38f910285 /web/html/css/arch.css
parent346e82716bf52dec37e7b8c1a62ad30585a8aa58 (diff)
downloadaur-3d6c6cc98a09bd9d30a144d428d6ff093de2f477.tar.gz
aur-3d6c6cc98a09bd9d30a144d428d6ff093de2f477.tar.xz
Support for langauges written right-to-left
Signed-off-by: PyroPeter <abi1789@googlemail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/css/arch.css')
-rw-r--r--web/html/css/arch.css51
1 files changed, 45 insertions, 6 deletions
diff --git a/web/html/css/arch.css b/web/html/css/arch.css
index 5da56d28..eec02eec 100644
--- a/web/html/css/arch.css
+++ b/web/html/css/arch.css
@@ -53,9 +53,9 @@ body {
display: block;
font-size: 10pt;
text-align: right;
- position: relative;
margin-bottom: 40px;
margin-right: 35px;
+ margin-left: 35px;
}
#lang_sub ul {
list-style: none;
@@ -173,7 +173,6 @@ h3.title {
border-bottom: 1px solid #46494d;
}
h4.title {
- text-align: left;
border-bottom: 1px solid #46494d;
}
h4.news {
@@ -251,7 +250,6 @@ table.results {
background-color: #e1e3e6;
border-bottom: 1px solid #46494d;
border-top: 1px solid #46494d;
- text-align: left;
padding: 0px 5px 0px 0px;
}
.results th>a {
@@ -266,7 +264,6 @@ table.results {
.listing th {
font-size: small;
vertical-align: top;
- text-align: left;
padding: 2px;
}
.listing td {
@@ -306,7 +303,6 @@ blockquote.code {
margin-bottom: 1%;
background-color: #fff;
border: 2px solid #ddd;
- text-align: left;
padding: 3px;
}
.frontpgboxbody {
@@ -320,7 +316,6 @@ blockquote.code {
border-top: 1px solid #fff;
border-left: 1px solid #fff;
background-color: #f1f2f4;
- text-align: left;
padding: 2px 10px 2px 10px;
}
.pgboxbody,
@@ -383,3 +378,47 @@ blockquote.code {
font-size: 18px;
font-weight: bold;
}
+
+div.version {
+ font-weight:bold;
+ font-size:14px;
+ text-align:right;
+}
+
+
+
+
+/**
+ *
+ * =============== Language-specific declarations ======================
+ *
+ * (e.g. right-to-left texts for Hebrew)
+ *
+ * */
+
+
+/**
+ * RIGHT - TO - LEFT
+ *
+ * Too add a language, just add it's language code to all
+ * :lang()-pseudo-classes, delimited by a hyphen ("-").
+ * */
+
+body:lang(he) {
+ direction: rtl;
+}
+th:lang(he) {
+ text-align: right;
+}
+#lang_sub:lang(he) {
+ text-align: left;
+}
+.pkg_search_results_footer:lang(he) .legend_and_actions {
+ float: right;
+}
+.pkg_search_results_footer:lang(he) .page_links {
+ float: left;
+}
+div.version:lang(he) {
+ text-align: left;
+}