Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariam El-Tantawi2015-02-04 11:20:28 +0000
committerDani Megert2015-02-04 11:20:28 +0000
commit33440d4b0778e7d597cd955668975bf7609cfef5 (patch)
treeab99d33e958de300fbf493593e4f92c2caf83705
parent01d2aec6ff87feab0e11e6b8d5eae44d5bc548c7 (diff)
downloadeclipse.platform.ua-33440d4b0778e7d597cd955668975bf7609cfef5.tar.gz
eclipse.platform.ua-33440d4b0778e7d597cd955668975bf7609cfef5.tar.xz
eclipse.platform.ua-33440d4b0778e7d597cd955668975bf7609cfef5.zip
Fixed bug 409081: BIDI 4.2.2 : Welcome Page isn't correctly mirrored
Signed-off-by: Mariam El-Tantawi <mariamel@eg.ibm.com>
-rw-r--r--org.eclipse.ui.intro.universal/themes/slate/html/rtl.css45
1 files changed, 40 insertions, 5 deletions
diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/rtl.css b/org.eclipse.ui.intro.universal/themes/slate/html/rtl.css
index 7053216e5..cdf403708 100644
--- a/org.eclipse.ui.intro.universal/themes/slate/html/rtl.css
+++ b/org.eclipse.ui.intro.universal/themes/slate/html/rtl.css
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2011 IBM Corporation and others.
+ * Copyright (c) 2009, 2015 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -21,14 +21,24 @@ table {
direction: rtl;
}
+#page-links a {
+ float: right !important;
+ margin-right: 0% !important;
+ margin-left: auto !important;
+}
+
#page-links a span.link-label {
- right : 48px;
- margin-right: 0px;
+ left: auto !important;
+ right: 100px !important;
+ margin-right: auto !important;
+ margin-left: 60px !important;
}
#page-links a p .text {
- right: 51px;
- margin-right: 0px;
+ left: auto !important;
+ right: 100px !important;
+ margin-right: auto !important;
+ margin-left: 53px !important;
}
#page-content p {
@@ -65,10 +75,26 @@ table {
top:0px;
}
+#branding {
+ left: auto !important;
+ right: 20px !important;
+}
+
+.content-img {
+ padding-left: auto !important;
+ padding-right: 15px !important;
+}
+
.content-group {
text-align: right;
}
+.intro-header {
+ margin-left: auto !important;
+ margin-right: 0% !important;
+ text-align: right !important;
+}
+
.intro-header span {
margin-right : 45px;
padding-right : 45px;
@@ -135,3 +161,12 @@ div ul.news-list {
right : 60px;
}
+#page-links a#workbench {
+ right: auto !important;
+ left: 20px !important;
+}
+
+#page-links a#workbench .link-label {
+ margin-right: auto !important;
+ margin-left: 0px !important;
+} \ No newline at end of file

Back to the top