Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro.universal/themes/purpleMesh/html/rtl.css')
-rw-r--r--org.eclipse.ui.intro.universal/themes/purpleMesh/html/rtl.css86
1 files changed, 86 insertions, 0 deletions
diff --git a/org.eclipse.ui.intro.universal/themes/purpleMesh/html/rtl.css b/org.eclipse.ui.intro.universal/themes/purpleMesh/html/rtl.css
new file mode 100644
index 000000000..c3de355bf
--- /dev/null
+++ b/org.eclipse.ui.intro.universal/themes/purpleMesh/html/rtl.css
@@ -0,0 +1,86 @@
+/*******************************************************************************
+ * Copyright (c) 2008 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+body {
+ direction: rtl;
+}
+
+table {
+ direction: rtl;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul#eclipse-news {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+

Back to the top