Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkevinm2009-02-05 23:33:56 +0000
committerkevinm2009-02-05 23:33:56 +0000
commite177c315d35139dcadd63632ee9db63a24425dc3 (patch)
tree85c44395d585fac44910891a7225ce64582c45a3
parenta8924746ac8ae10c0a574a78fb019f8281f33861 (diff)
downloadeclipse.platform.ui-e177c315d35139dcadd63632ee9db63a24425dc3.tar.gz
eclipse.platform.ui-e177c315d35139dcadd63632ee9db63a24425dc3.tar.xz
eclipse.platform.ui-e177c315d35139dcadd63632ee9db63a24425dc3.zip
Fixes bug 263740 - [CSS] Gallery background not matching CSSv20090205-1745
-rw-r--r--examples/org.eclipse.e4.demo.e4photo/css/e4photo.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/org.eclipse.e4.demo.e4photo/css/e4photo.css b/examples/org.eclipse.e4.demo.e4photo/css/e4photo.css
index 60823770aa6..1798afb3c5d 100644
--- a/examples/org.eclipse.e4.demo.e4photo/css/e4photo.css
+++ b/examples/org.eclipse.e4.demo.e4photo/css/e4photo.css
@@ -25,7 +25,7 @@ CTabFolder.active:selected {
background-color: #f4f4f4;
}
-CTabFolder Gallery GalleryItem {
+CTabFolder {
background-color: #f4f4f4;
}
@@ -34,6 +34,10 @@ CTabFolder Gallery GalleryItem {
background-color: #ffffff;
}
+Gallery {
+ background-color: #f4f4f4;
+}
+
GalleryItem:selected {
background-color: #ff884c;
}

Back to the top