From a3644638aaf0418598196a870204e0b632a4c8ad Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Fri, 17 Apr 2015 06:28:40 -0400
Subject: [PATCH] Allow preference sections to define CSS class names

---
 plugins/acl/skins/larry/acl.css |   19 ++++++-------------
 1 files changed, 6 insertions(+), 13 deletions(-)

diff --git a/plugins/acl/skins/larry/acl.css b/plugins/acl/skins/larry/acl.css
index b1636990..bd72b3c 100644
--- a/plugins/acl/skins/larry/acl.css
+++ b/plugins/acl/skins/larry/acl.css
@@ -26,46 +26,39 @@
   border: none;
 }
 
+#acltable th,
 #acltable td
 {
   white-space: nowrap;
-  border: none;
   text-align: center;
 }
 
-#acltable thead tr td
+#acltable thead tr th
 {
-  border-left: #BBD3DA dotted 1px;
   font-size: 11px;
   font-weight: bold;
-  width: auto;
 }
 
 #acltable tbody td
 {
-  border-bottom: #DDDDDD 1px solid;
   text-align: center;
   height: 16px;
   cursor: default;
 }
 
-#acltable thead td.user
+#acltable thead tr > .user
 {
-  border-left: none;
   width: 30%;
+  border-left: none;
 }
 
-#acltable.advanced thead td.user {
-	width: 25%;
+#acltable.advanced thead tr > .user {
+  width: 25%;
 }
 
 #acltable tbody td.user
 {
   text-align: left;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
-  border-left: none;
 }
 
 #acltable tbody td.partial

--
Gitblit v1.9.1