From eebf5bbfb99ad3ee969b8a25b0d0e91f491911fd Mon Sep 17 00:00:00 2001
From: Patrick Anders <p.anders@timmehosting.de>
Date: Mon, 24 Nov 2014 09:11:57 -0500
Subject: [PATCH] fix FS#3659

---
 interface/web/themes/default/css/styles.css |  106 +++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 99 insertions(+), 7 deletions(-)

diff --git a/interface/web/themes/default/css/styles.css b/interface/web/themes/default/css/styles.css
index b8de084..000846a 100644
--- a/interface/web/themes/default/css/styles.css
+++ b/interface/web/themes/default/css/styles.css
@@ -153,6 +153,8 @@
 
 #topNav a {
     background: url("../icons/x32_sprite.png") no-repeat #D3D3D3;
+    border-top-left-radius:5px;
+    border-top-right-radius:5px;
     color:black;
     display:inline-block;
     height:20px;
@@ -371,13 +373,21 @@
 table.list th[class$="_active"],
 table.list td[class$="_active"],
 table.list th.tbl_col_autoresponder,
-table.list td.tbl_col_autoresponder {
+table.list td.tbl_col_autoresponder,
+table.list th.tbl_col_postfix,
+table.list td.tbl_col_postfix,
+table.list th.tbl_col_disablesmtp,
+table.list td.tbl_col_disablesmtp,
+table.list th.tbl_col_disableimap,
+table.list td.tbl_col_disableimap,
+table.list th.tbl_col_disablepop3,
+table.list td.tbl_col_disablepop3 {
     width: 70px;
     text-align: center;
 }
 table.list .tbl_col_buttons,
 table.list .tbl_col_limit {
-    width: 150px;
+    width: 50px;
 }
 .tbl_col_client_pid input {
     width: 50px;
@@ -438,9 +448,6 @@
     font-family: Consolas, "Lucida Console", "Courier New", monospace;
     font-size: 0.9em;
 }
-.codeview .logerror { background: rgb(255,0,0); }
-.codeview .logwarn { background: rgb(255,204,0); }
-.codeview .loginfo { background: rgb(153,204,255); }
 /* Lists */
 table.list {
     width: 100%;
@@ -583,6 +590,7 @@
     width:60px;
     height: 60px;
     border:1px dotted #888888;
+    border-radius:5px;
     background-color: #cccccc;
     margin:10px;
     background-position: center 5px;
@@ -832,7 +840,7 @@
 .selectInput.formLengthLimit { width: 85px !important; }
 .formLengthDate { width: 75px !important; }
 .formLengthIPv4 { width: 125px !important; }
-.formLengthIPv6 { width: 100% !important; }
+.formLengthIPv6 { }
 .formLengthEmailUser { width: 30% !important; }
 .formLengthEmailDomain { width: 30% !important; }
 .formLengthHalf { width: 15% !important; }
@@ -1506,7 +1514,7 @@
 /* content_ispc
 -------------------------------------------------------------- */
 .tipsy {
-    font-size: 10px;
+    font-size: 12px !important;
     position: absolute;
     padding: 5px;
     z-index: 100000;
@@ -1840,4 +1848,88 @@
 a.link-page.current-page {
     background-color: #DFDFDF;
     font-weight: bold;
+}
+
+.command {
+    padding: 1em;
+    border: 1px dashed #2f6fab;
+    color: black;
+    background-color: #f9f9f9;
+    line-height: 1.1em;
+    font-family: Courier New, Courier, mono;
+    font-size: 12px;
+    font-style: italic;
+}
+.system {
+    color: black;
+    font-family: Courier New, Courier, mono;
+    font-size: 12px;
+    font-style: italic;
+}
+.highlight {
+    color: #FF0000;
+    font-family: Georgia, "Times New Roman", Times, serif;
+    font-size: 12px;
+    text-decoration: underline;
+}
+
+.custom-combobox {
+    position: relative !important;
+    display: inline-block !important;
+    overflow: hidden;
+    padding-right: 10px;
+    max-width: 356px;
+}
+.custom-combobox-toggle {
+    background: none repeat scroll 0 0 #ffffff !important;
+    border: 1px solid #dfdfdf !important;
+    position: absolute !important;
+    top: 0 !important;
+    right: -1px;
+    z-index: 5000;
+    bottom: 0 !important;
+    margin-left: -1px !important;
+    padding: 1px !important;
+    /* support: IE7 */
+    *height: 1.7em !important;
+    *top: 0.1em !important;
+    width: 17px !important;
+}
+.custom-combobox-input {
+    background: none repeat scroll 0 0 #ffffff !important;
+    border: 1px solid #dfdfdf !important;
+    font-weight: normal !important;
+    margin: 0 !important;
+    padding: 0.3em !important;
+    display: inline-block !important;
+    width: 100%;
+}
+
+.tbl_col_limit .custom-combobox-toggle {
+	right: 0px;
+}
+
+.tbl_col_limit .custom-combobox-input {
+	width: 80% !important;
+}
+
+.tbl_col_limit input {
+    padding: 0.3em !important;	
+}
+
+.ui-autocomplete {
+	overflow-x: hidden !important;
+	padding-bottom: 3px !important;
+}
+
+li.ui-menu-item {
+	display: block !important;
+	width: auto !important;
+	margin-right: -1px !important;
+	margin-bottom: -1px !important;
+	margin-top: -1px !important;
+	font-weight: normal !important;
+	border: 1px solid #fff !important;
+	padding-left: 4px !important;
+	margin-left: 0px !important
 }
\ No newline at end of file

--
Gitblit v1.9.1