From 11550718822f3489b93710509f546eb2ffd98e11 Mon Sep 17 00:00:00 2001 From: Chris Goldthorpe Date: Mon, 6 Apr 2009 21:39:47 +0000 Subject: Use .png for page icons for all browsers except IE6 --- .../slate/graphics/icons/ctool/firststeps-select.png | Bin 0 -> 9390 bytes .../themes/slate/graphics/icons/ctool/migrate-select.png | Bin 0 -> 5978 bytes .../slate/graphics/icons/ctool/overview-select.png | Bin 0 -> 6156 bytes .../themes/slate/graphics/icons/ctool/samples-select.png | Bin 0 -> 6634 bytes .../slate/graphics/icons/ctool/tutorials-select.png | Bin 0 -> 5519 bytes .../slate/graphics/icons/ctool/webresources-select.png | Bin 0 -> 7407 bytes .../slate/graphics/icons/ctool/whatsnew-select.png | Bin 0 -> 6588 bytes .../themes/slate/html/firststeps.css | 7 ++++++- .../themes/slate/html/migrate.css | 7 ++++++- .../themes/slate/html/overview.css | 7 ++++++- .../themes/slate/html/samples.css | 7 ++++++- .../themes/slate/html/tutorials.css | 7 ++++++- .../themes/slate/html/webresources.css | 7 ++++++- .../themes/slate/html/whatsnew.css | 7 ++++++- 14 files changed, 42 insertions(+), 7 deletions(-) create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/firststeps-select.png create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/migrate-select.png create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/overview-select.png create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/samples-select.png create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/tutorials-select.png create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/webresources-select.png create mode 100644 org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/whatsnew-select.png (limited to 'org.eclipse.ui.intro.universal') diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/firststeps-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/firststeps-select.png new file mode 100644 index 000000000..846b27851 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/firststeps-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/migrate-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/migrate-select.png new file mode 100644 index 000000000..df8e2ffa7 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/migrate-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/overview-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/overview-select.png new file mode 100644 index 000000000..c2513e951 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/overview-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/samples-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/samples-select.png new file mode 100644 index 000000000..d2cabf1e5 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/samples-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/tutorials-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/tutorials-select.png new file mode 100644 index 000000000..4c6664402 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/tutorials-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/webresources-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/webresources-select.png new file mode 100644 index 000000000..dc106f216 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/webresources-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/whatsnew-select.png b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/whatsnew-select.png new file mode 100644 index 000000000..cb686d2a5 Binary files /dev/null and b/org.eclipse.ui.intro.universal/themes/slate/graphics/icons/ctool/whatsnew-select.png differ diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/firststeps.css b/org.eclipse.ui.intro.universal/themes/slate/html/firststeps.css index 08dca456e..261307447 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/firststeps.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/firststeps.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#firststeps img { - background-image : url(../graphics/icons/ctool/firststeps-select.gif); + background-image : url(../graphics/icons/ctool/firststeps-select.png); width : 64px; height: 64px; margin-top : 12px; } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#firststeps img { + background-image : url(../graphics/icons/ctool/firststeps-select.gif); +} + #navigation-links a#.high-contrast#firststeps img { display : none; } diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/migrate.css b/org.eclipse.ui.intro.universal/themes/slate/html/migrate.css index e1abebab9..be06798d5 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/migrate.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/migrate.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#migrate img { - background-image : url(../graphics/icons/ctool/migrate-select.gif); + background-image : url(../graphics/icons/ctool/migrate-select.png); width : 64px; height: 64px; margin-top : 12px } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#migrate img { + background-image : url(../graphics/icons/ctool/migrate-select.gif); +} + #navigation-links a#.high-contrast#migrate img { display : none; } diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/overview.css b/org.eclipse.ui.intro.universal/themes/slate/html/overview.css index 6382f3b49..716bfa0df 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/overview.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/overview.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#overview img { - background-image : url(../graphics/icons/ctool/overview-select.gif); + background-image : url(../graphics/icons/ctool/overview-select.png); width : 64px; height: 64px; margin-top : 12px } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#overview img { + background-image : url(../graphics/icons/ctool/overview-select.gif); +} + #navigation-links a#.high-contrast#overview img { display : none; } diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/samples.css b/org.eclipse.ui.intro.universal/themes/slate/html/samples.css index 972ccf3f8..665946c60 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/samples.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/samples.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#samples img { - background-image : url(../graphics/icons/ctool/samples-select.gif); + background-image : url(../graphics/icons/ctool/samples-select.png); width : 64px; height: 64px; margin-top : 12px; } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#samples img { + background-image : url(../graphics/icons/ctool/samples-select.gif); +} + #navigation-links a#.high-contrast#samples img { display : none; } diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/tutorials.css b/org.eclipse.ui.intro.universal/themes/slate/html/tutorials.css index 648e97170..8ae92945f 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/tutorials.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/tutorials.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#tutorials img { - background-image : url(../graphics/icons/ctool/tutorials-select.gif); + background-image : url(../graphics/icons/ctool/tutorials-select.png); width : 64px; height: 64px; margin-top : 12px } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#tutorials img { + background-image : url(../graphics/icons/ctool/tutorials-select.gif); +} + #navigation-links a.high-contrast#tutorials img { display : none; } diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/webresources.css b/org.eclipse.ui.intro.universal/themes/slate/html/webresources.css index de1dce36d..0e19a4479 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/webresources.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/webresources.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#webresources img { - background-image : url(../graphics/icons/ctool/webresources-select.gif); + background-image : url(../graphics/icons/ctool/webresources-select.png); width : 64px; height: 64px; margin-top : 12px } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#webresources img { + background-image : url(../graphics/icons/ctool/webresources-select.gif); +} + #navigation-links a#.high-contrast#webresources img { display : none; } diff --git a/org.eclipse.ui.intro.universal/themes/slate/html/whatsnew.css b/org.eclipse.ui.intro.universal/themes/slate/html/whatsnew.css index 54b6a51f2..01d5b9705 100644 --- a/org.eclipse.ui.intro.universal/themes/slate/html/whatsnew.css +++ b/org.eclipse.ui.intro.universal/themes/slate/html/whatsnew.css @@ -18,12 +18,17 @@ /* show the "selected" image for this page */ #navigation-links a#whatsnew img { - background-image : url(../graphics/icons/ctool/whatsnew-select.gif); + background-image : url(../graphics/icons/ctool/whatsnew-select.png); width : 64px; height: 64px; margin-top : 12px; } +/* Hack for IE6, which cannot display png files with alpha channel transparency */ +* html #navigation-links a#whatsnew img { + background-image : url(../graphics/icons/ctool/whatsnew-select.gif); +} + #navigation-links a#.high-contrast#whatsnew img { display : none; } -- cgit v1.2.3