diff options
author | Tom Kistner <tom@duncanthrax.net> | 2008-12-04 11:24:17 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-12-12 23:18:56 +0100 |
commit | f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d (patch) | |
tree | 84af841fdb450b60d54e590ec02b9ddb0e671cba /htdocs/exilog_stylesheet.css | |
parent | a35e1469841bfbc7e58b66dcefb108993bc4b494 (diff) | |
download | exilog-f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d.zip exilog-f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d.tar.gz exilog-f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d.tar.bz2 |
Forward unreleased changes
- IPv6 address parsing
- Some queue management
- Better SQL quoting
- More misc stuff
Signed-off-by: Tom Kistner <tom@duncanthrax.net>
Diffstat (limited to 'htdocs/exilog_stylesheet.css')
-rw-r--r-- | htdocs/exilog_stylesheet.css | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/htdocs/exilog_stylesheet.css b/htdocs/exilog_stylesheet.css index f50ec95..e315446 100644 --- a/htdocs/exilog_stylesheet.css +++ b/htdocs/exilog_stylesheet.css @@ -91,9 +91,15 @@ select { font-size: 10px; } -table.queue_table { - background: black; +table.queue_frame_table { + border: 0; + font-size: 12px; +} +table.queue_entry_table { + background: #999999; + margin-bottom: 8px; font-size: 12px; + width: 926px; } td.queue_header { background: #cccccc; @@ -104,15 +110,26 @@ td.queue { background: #eeeeee; white-space: nowrap; padding: 2px 4px 2px 4px; + font-family: monospace; +} + +div.popup_container { + position: relative; + width:0px; + height:0px; + border:0; + margin:0; + padding:0; } -div.rcpts_pending_popup { +div.popup { position: absolute; visibility: hidden; - background: #dddddd; + background: #eeeeee; + top: -3px; + left: -5px; color: black; - padding: 4px; - border: 1px solid black; - width: 100px; + padding: 2px 4px 2px 4px; + border: 1px solid #999999; } td.table_titlebar { |