From 0f3ae423a627142b564fbc024e465f5d2ddb2502 Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Tue, 19 Jun 2012 13:14:35 -0400
Subject: [PATCH] Highlight the entire row of selected items with a slightly darker background
---
skins/larry/settings.css | 4 +++-
skins/larry/styles.css | 3 ++-
skins/larry/addressbook.css | 4 +++-
3 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/skins/larry/addressbook.css b/skins/larry/addressbook.css
index 77cf48a..a9a3c98 100644
--- a/skins/larry/addressbook.css
+++ b/skins/larry/addressbook.css
@@ -67,7 +67,9 @@
#directorylist li a,
#contacts-table .contact td.name {
- background: url(images/listicons.png) -100px 0 no-repeat;
+ background-image: url(images/listicons.png);
+ background-position: -100px 0;
+ background-repeat: no-repeat;
overflow: hidden;
padding-left: 36px;
text-overflow: ellipsis;
diff --git a/skins/larry/settings.css b/skins/larry/settings.css
index f962a84..e0047f9 100644
--- a/skins/larry/settings.css
+++ b/skins/larry/settings.css
@@ -54,7 +54,9 @@
#settings-sections span.listitem a,
#settings-sections span.tablink a {
padding-left: 36px;
- background: url(images/listicons.png) -100px 0 no-repeat;
+ background-image: url(images/listicons.png);
+ background-position: -100px 0;
+ background-repeat: no-repeat;
}
/* note: support span.tablink because this is used by plugins */
diff --git a/skins/larry/styles.css b/skins/larry/styles.css
index c64bc77..3c06135 100644
--- a/skins/larry/styles.css
+++ b/skins/larry/styles.css
@@ -769,6 +769,7 @@
.listing li.selected > a {
color: #004458;
font-weight: bold;
+ background-color: #c7e3ef;
}
ul.listing {
@@ -784,7 +785,7 @@
ul.listing li.droptarget,
table.listing tr.droptarget td {
- background-color: #c7e3ef;
+ background-color: #e8e798;
}
table.listing,
--
Gitblit v1.9.1