Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2006-04-12 02:31:43 +0000
committerDejan Gloszic2006-04-12 02:31:43 +0000
commit9e00ebe67d6eb3773510d96879626898255b2c8c (patch)
treeb0a60600739bf77596e82df0573aba35d378ae46 /org.eclipse.ui.intro.universal
parent052e417948c9df67da25435b9fc39258cdfeadc8 (diff)
downloadeclipse.platform.ua-9e00ebe67d6eb3773510d96879626898255b2c8c.tar.gz
eclipse.platform.ua-9e00ebe67d6eb3773510d96879626898255b2c8c.tar.xz
eclipse.platform.ua-9e00ebe67d6eb3773510d96879626898255b2c8c.zip
*** empty log message ***v20060411a
Diffstat (limited to 'org.eclipse.ui.intro.universal')
-rw-r--r--org.eclipse.ui.intro.universal/introContent.xml3
-rw-r--r--org.eclipse.ui.intro.universal/themes/circles/html/standby.css18
-rw-r--r--org.eclipse.ui.intro.universal/themes/purpleMesh/html/standby.css9
3 files changed, 27 insertions, 3 deletions
diff --git a/org.eclipse.ui.intro.universal/introContent.xml b/org.eclipse.ui.intro.universal/introContent.xml
index ae01cf016..0f3ed982c 100644
--- a/org.eclipse.ui.intro.universal/introContent.xml
+++ b/org.eclipse.ui.intro.universal/introContent.xml
@@ -33,7 +33,8 @@
</group>
<group id="action-links" computed="true">
</group>
- <group id="branding" style-id="branding" bgImage="$introBrandingImage$">
+ <group id="branding">
+ <img src="$introBrandingImage$" alt="$introBrandingImageText$"/>
</group>
<!-- General-purpose groups for additional content -->
<group id="extra-group1" filteredFrom="swt"><anchor id="anchor"/></group>
diff --git a/org.eclipse.ui.intro.universal/themes/circles/html/standby.css b/org.eclipse.ui.intro.universal/themes/circles/html/standby.css
index 4cde4b34a..cc9e98bd1 100644
--- a/org.eclipse.ui.intro.universal/themes/circles/html/standby.css
+++ b/org.eclipse.ui.intro.universal/themes/circles/html/standby.css
@@ -6,6 +6,16 @@
font-size : 15pt;
}
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+
#page-links a .link-label, #action-links a .link-label {
font-size : 10pt;
font-weight : 600;
@@ -30,7 +40,13 @@ body {
background-color : #6d7e85;
}
-.page {
+#branding {
+ position: absolute;
+ bottom : 20px;
+ left : 20px;
+}
+
+.page {
background-repeat : no-repeat;
background-position : bottom left;
min-width : 230px;
diff --git a/org.eclipse.ui.intro.universal/themes/purpleMesh/html/standby.css b/org.eclipse.ui.intro.universal/themes/purpleMesh/html/standby.css
index 16ff0792c..436dd6d44 100644
--- a/org.eclipse.ui.intro.universal/themes/purpleMesh/html/standby.css
+++ b/org.eclipse.ui.intro.universal/themes/purpleMesh/html/standby.css
@@ -40,10 +40,13 @@ body {
background-color : #7169D1;
}
-.page {
+.page {
+/*
background-image : url(../graphics/root/brandmark.gif);
background-repeat : no-repeat;
background-position : bottom left;
+*/
+ background-image: none;
min-width : 230px;
/* since IE doesn't support min-width, use expression */
width:expression(document.body.clientWidth < 230? "230px": "auto" );
@@ -52,6 +55,10 @@ body {
height : expression(document.body.clientHeight < 450? "450px": "100%" );
}
+#extra-group1 {
+ display: none;
+}
+
/*
* Set up the navigation bar. It should be centered in the middle
* of the page

Back to the top