diff options
author | lpsolit%gmail.com <> | 2007-01-21 23:11:13 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-01-21 23:11:13 +0100 |
commit | 98079c9180649bbb11191f708ec755265c188924 (patch) | |
tree | 8705523bdf7290c58802ba19df08c7f36e912716 /skins | |
parent | 7c0b9e7f84e5f10adc9df3a2590eef6d266b673a (diff) | |
download | bugzilla-98079c9180649bbb11191f708ec755265c188924.tar.gz bugzilla-98079c9180649bbb11191f708ec755265c188924.tar.xz |
Bug 365247: New UI for the attachment table (ported from b.m.o) - Patch by Frédéric Buclin <LpSolit@gmail.com> (UI proposed by Mike Connor <mconnor@mozilla.com>) r=bkor a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index 7504cb0fb..bd558d5c5 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -281,6 +281,35 @@ dl dl > dt { border-top: none; } +/* Style of the attachment table */ +#attachment_table { + border-collapse: collapse; + width: 40em; + border: 1px solid #333333; +} + +#attachment_table th, .bz_attach_footer { + background-color: #E0E0E0; + color: black; +} + +#attachment_table td { + border: 1px solid #333333; +} + +.bz_attach_extra_info { + font-size: smaller; +} + +.bz_attach_flags, .bz_attach_footer { + white-space: nowrap; +} + +.bz_attach_view_hide { + float: right; + padding-left: 1em; +} + .box { border: 1px solid black; color: black; |