From ae579cee860c90183b3968d9658ffe0b3ba29dd5 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 18 Sep 2008 16:48:04 -0400 Subject: [PATCH] Also list message/rfc822 parts as attachment if a filename is specified --- skins/default/common.css | 158 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 154 insertions(+), 4 deletions(-) diff --git a/skins/default/common.css b/skins/default/common.css old mode 100755 new mode 100644 index 67e404e..7d3d35f --- a/skins/default/common.css +++ b/skins/default/common.css @@ -10,6 +10,7 @@ body.iframe { margin: 0px; + background-color: #FFF; } body.extwin @@ -17,7 +18,7 @@ margin: 10px; } -body, td, th, span, div, p, h3 +body, td, th, div, p, h3 { font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; font-size: 12px; @@ -39,6 +40,7 @@ a, a:active, a:visited { color: #000000; + outline: none; } a.button, a.button:visited, a.tab, a.tab:visited, a.axislist @@ -68,8 +70,17 @@ padding: 1px; padding-left: 3px; padding-right: 3px; + color: #333333; background-color: #ffffff; border: 1px solid #666666; +} + +input[type="checkbox"], +input[type="radio"] +{ + border: 0; + padding: 0; + background-color: transparent; } input.button @@ -88,6 +99,12 @@ color: black; } +input.mainaction +{ + font-weight: bold; + border: 1px solid #999; +} + img { behavior: url('skins/default/pngbehavior.htc'); @@ -98,6 +115,11 @@ font-size: 11px; } +.hint +{ + color: #666; + font-size: 11px; +} /** common user interface objects */ @@ -119,7 +141,7 @@ width: 600px; height: 37px; background: url(images/taskbar.gif) top right no-repeat; - padding: 10px 24px 0px 0px; + padding: 10px 4px 10px 0px; text-align: right; white-space: nowrap; z-index: 2; @@ -132,7 +154,7 @@ font-size: 11px; color: #666666; text-decoration: none; - padding: 6px 16px 6px 30px; + padding: 6px 16px 6px 25px; background-repeat: no-repeat; } @@ -170,6 +192,9 @@ left: 200px; right: 200px; z-index: 5000; + opacity: 0.85; + /* IE */ + filter: alpha(opacity=85); } #message div @@ -211,6 +236,43 @@ border: 1px solid #CCCCCC; } +.splitter +{ + user-select: none; + -moz-user-select: none; + -khtml-user-select: none; + position: absolute; + background: url(images/dimple.png) center no-repeat; +} + +.splitter-h +{ + cursor: n-resize; + background-position: center 2px; +} + +.splitter-v +{ + cursor: e-resize; + background-position: 2px center; +} + +.boxtitle +{ + height: 12px !important; + padding: 4px 20px 3px 20px; + border-bottom: 1px solid #999; + color: #333; + font-size: 11px; + font-weight: bold; + background-color: #EBEBEB; + background-image: url(images/listheader_aqua.gif); +} + +.radios-left label +{ + padding-left: 0.3em; +} /***** common table settings ******/ @@ -245,15 +307,103 @@ table.records-table tr.selected td { - font-weight: bold; color: #FFFFFF; background-color: #CC3333; } +table.records-table tr.focused td +{ +} + +table.records-table tr.unfocused td +{ + color: #FFFFFF; + background-color: #929292; +} + + +/***** mac-style quicksearch field *****/ + +#quicksearchbar +{ + position: absolute; + top: 60px; + right: 20px; + width: 182px; + height: 20px; + text-align: right; + background: url('images/searchfield.gif') top left no-repeat; +} + +#quicksearchbar a +{ + position: absolute; + top: 3px; + right: 4px; + text-decoration: none; +} + +#quicksearchbar img +{ + vertical-align: middle; +} + +#quicksearchbox +{ + position: absolute; + top: 2px; + left: 20px; + width: 140px; + font-size: 11px; + padding: 0px; + border: none; +} + + +/*\*/ +html>body*#quicksearchbar[id$="quicksearchbar"]:not([class="none"]) { background-image: none; } +html>body*#quicksearchbar[id$="quicksearchbar"]:not([class="none"]) a { top: 5px; } +html>body*#quicksearchbar[id$="quicksearchbar"]:not([class="none"]) #quicksearchbox { width: 180px; top:0px; right: 1px; left: auto; } +/**/ /***** roundcube webmail pre-defined classes *****/ +#rcversion +{ + position: absolute; + top: 67px; + left: 20px; + width: 160px; + text-align: center; + + font-weight: normal; + font-size: x-small; + font-variant: small-caps; + + color: #999999; + /*border: 1px solid #308014; + background-color: #b4eeb4;*/ +} + +#rcmdraglayer +{ + min-width: 300px; + width: auto !important; + width: 300px; + border: 1px solid #999999; + background-color: #F9F9F9; + padding-left: 8px; + padding-right: 8px; + padding-top: 3px; + padding-bottom: 3px; + font-size: 11px; + white-space: nowrap; + opacity: 0.7; + -moz-opacity: 0.7; + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); +} + a.rcmContactAddress { text-decoration: none; -- Gitblit v1.9.1