diff options
Diffstat (limited to 'rt/share/html/NoAuth/css/base/misc.css')
-rw-r--r-- | rt/share/html/NoAuth/css/base/misc.css | 60 |
1 files changed, 35 insertions, 25 deletions
diff --git a/rt/share/html/NoAuth/css/base/misc.css b/rt/share/html/NoAuth/css/base/misc.css index ede9daeb2..dd932091f 100644 --- a/rt/share/html/NoAuth/css/base/misc.css +++ b/rt/share/html/NoAuth/css/base/misc.css @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -47,30 +47,6 @@ %# END BPS TAGGED BLOCK }}} .hide, .hidden { display: none !important; } -div.autocomplete { - position: absolute; - background-color: white; - border: 1px solid #888; - margin: 0px; - padding: 0px; -} -div.autocomplete ul { - list-style-type: none; - margin: 0px; - padding: 0px; -} -div.autocomplete ul li.selected { - background-color: #0088cc; - color: #eee; -} -div.autocomplete ul li { - list-style-type: none; - display: block; - margin: 0; - padding: 2px; -} - - .clear { clear: both; } * html .clearfix { @@ -98,3 +74,37 @@ hr.clear { border: none; font-size: 1px; } + + +/* Custom fields */ + +/* Only apply these when we're not rendering in a table, hence the leading div. */ +div.edit-custom-field { + width: 48%; + float: left; + margin: 0.5em; +} + +div.edit-custom-field .cflabel { + float: left; + padding-right: 0.5em; +} + +.cflabel .name { font-weight: bold; } +.cflabel .type { font-style: italic; } + +fieldset.cfedit { + border: none; + padding: 0; + margin: 0; +} + +.query-stacktrace-toggle { + float: right; +} + +/* jQuery UI overrides */ +.ui-widget { + font-family: arial,helvetica,sans-serif !important; +} + |