summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-04-09 07:22:22 +0000
committeralecpl <alec@alec.pl>2009-04-09 07:22:22 +0000
commit72a8c32e1ad57d9472e2f57ad06d754f04ee8ed6 (patch)
treee579371229085ebbfa0cc2c7e2e6ab72090caa66 /skins
parent6e9f9fb9e62702e786329a370466ce620b4ebac2 (diff)
- small css fix in subscription-list thead
Diffstat (limited to 'skins')
-rw-r--r--skins/default/settings.css95
-rw-r--r--skins/default/templates/managefolders.html2
2 files changed, 43 insertions, 54 deletions
diff --git a/skins/default/settings.css b/skins/default/settings.css
index 5c4bd56dc..f09682cf4 100644
--- a/skins/default/settings.css
+++ b/skins/default/settings.css
@@ -132,6 +132,14 @@ span.tablink-selected a
background-color: #F9F9F9;
}
+#subscription-table
+{
+ width: 100%;
+ /* css hack for IE */
+ width: expression('auto');
+}
+
+#subscription-table tbody td,
#identities-table tbody td
{
cursor: default;
@@ -149,6 +157,39 @@ span.tablink-selected a
width: 45%;
}
+#subscription-table tr.virtual td
+{
+ color: #666;
+}
+
+#subscription-table tr.selected td,
+#subscription-table tr.selected td a
+{
+ color: #FFFFFF;
+ background-color: #CC3333;
+}
+
+#subscription-table tr.droptarget td,
+#subscription-table tr.droptarget td a
+{
+ background-color: #FFFFA6;
+}
+
+#subscription-table thead td.name
+{
+ width: 250px;
+}
+
+#subscription-table thead td.msgcount
+{
+ width: 90px;
+}
+
+#subscription-table thead td.subscribed
+{
+ width: 90px;
+}
+
#identity-frame
{
position: relative;
@@ -194,8 +235,7 @@ input.disabled
#userprefs-title,
#identity-title,
-div.boxtitle,
-#subscription-table thead td
+div.boxtitle
{
height: 12px !important;
padding: 4px 20px 3px 6px;
@@ -220,57 +260,6 @@ div.settingspart
padding: 10px;
}
-#subscription-table
-{
- width: 100%;
- /* css hack for IE */
- width: expression('auto');
-}
-
-#subscription-table tbody td
-{
- height: 20px;
- padding-left: 6px;
- padding-right: 10px;
- white-space: nowrap;
- border-bottom: 1px solid #EBEBEB;
- background-color: #F9F9F9;
- cursor: default;
-}
-
-#subscription-table tr.virtual td
-{
- color: #666;
-}
-
-#subscription-table tr.selected td,
-#subscription-table tr.selected td a
-{
- color: #FFFFFF;
- background-color: #CC3333;
-}
-
-#subscription-table tr.droptarget td,
-#subscription-table tr.droptarget td a
-{
- background-color: #FFFFA6;
-}
-
-#subscription-table thead td.name
-{
- width: 250px;
-}
-
-#subscription-table thead td.msgcount
-{
- width: 90px;
-}
-
-#subscription-table thead td.subscribed
-{
- width: 90px;
-}
-
fieldset
{
margin-bottom: 0.5em;
diff --git a/skins/default/templates/managefolders.html b/skins/default/templates/managefolders.html
index 8808f5130..5da5c22f1 100644
--- a/skins/default/templates/managefolders.html
+++ b/skins/default/templates/managefolders.html
@@ -16,7 +16,7 @@
<div id="folder-manager">
<roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table"
- cellpadding="1" cellspacing="0" summary="Folder subscription table"
+ cellpadding="1" cellspacing="0" summary="Folder subscription table" class="records-table"
deleteIcon="/images/icons/folder-trash.png"
renameIcon="/images/icons/rename.png" />
</div>