diff options
author | Byron Jones <glob@mozilla.com> | 2014-10-31 08:20:42 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-10-31 08:20:42 +0100 |
commit | 908480c98aa48a9d1caf09ee00f3cfe0863afec2 (patch) | |
tree | a15dc741c3fe821865291a0789fda1607d2a67a4 /skins | |
parent | f1fda7c8b9cf4646374cc708c14942e5feed82d1 (diff) | |
download | bugzilla-908480c98aa48a9d1caf09ee00f3cfe0863afec2.tar.gz bugzilla-908480c98aa48a9d1caf09ee00f3cfe0863afec2.tar.xz |
Bug 1062739: add the ability for administrators to limit the number of emails sent to a user per minute and hour
r=dylan,a=glob
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/admin.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/skins/standard/admin.css b/skins/standard/admin.css index cdf75ac2c..232076846 100644 --- a/skins/standard/admin.css +++ b/skins/standard/admin.css @@ -303,3 +303,38 @@ table.schedule_list th, table.search_list th { padding: .5em; font-size: small; } + +#report { + border: 1px solid #888888; +} + +#report td, #report th { + padding: 3px 10px 3px 3px; + border: 0px; +} + +#report th { + text-align: left; +} + +#report-header { + background-color: #cccccc; +} + +.report_row_odd { + background-color: #eeeeee; + color: #000000; +} + +.report_row_even { + background-color: #ffffff; + color: #000000; +} + +#report.hover tr:hover { + background-color: #ccccff; +} + +.report_information { + font-style: italic; +} |