summaryrefslogtreecommitdiff
path: root/themes/admin_default/css
diff options
context:
space:
mode:
authorjhilden <jakobhilden@gmail.com>2009-06-30 22:22:29 -0400
committerjhilden <jakobhilden@gmail.com>2009-06-30 22:22:29 -0400
commit0b34ec4e8b1f97db0dc6807bdb3a5ece8e1b83e4 (patch)
tree33bc49fde249f801626b23e6e5b21ce0f0047c2d /themes/admin_default/css
parent3ef39d457693a6744d468876aa7316b65cd3c9cd (diff)
UI enhancement: made the 'back to the Gallery' links a little bit easier to discover
Diffstat (limited to 'themes/admin_default/css')
-rw-r--r--themes/admin_default/css/screen.css20
1 files changed, 18 insertions, 2 deletions
diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css
index f4173d4b..629d0451 100644
--- a/themes/admin_default/css/screen.css
+++ b/themes/admin_default/css/screen.css
@@ -98,12 +98,28 @@
* 4) Content blocks in specific layout containers
*********************************************************************/
-#gHeader #gLogo {
+#gHeader #gLogo img {
float: left;
margin: -22px 10px 0 0;
}
-.rtl #gHeader #gLogo {
+#gHeader #gLogo {
+ position: relative;
+ display: block;
+ text-decoration: none;
+}
+#gHeader #gLogo span {
+ display: none;
+ position: absolute;
+ top: -20px;
+ left: 2px;
+ color: #FF6600;
+}
+#gHeader #gLogo:hover span {
+ display: inline;
+}
+
+.rtl #gHeader #gLogo img {
float: left;
}