diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-02 00:52:24 +0100 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-02 00:52:24 +0100 |
commit | fde6d4aa81a56418ae5cdfd16a6b917534d66bed (patch) | |
tree | a11eb5eef41eea1db91f4fadcf901c1df7d21329 /skins | |
parent | cf2e1cc0ce32cefbc7c540768dd7f0a4af8407d5 (diff) | |
download | bugzilla-fde6d4aa81a56418ae5cdfd16a6b917534d66bed.tar.gz bugzilla-fde6d4aa81a56418ae5cdfd16a6b917534d66bed.tar.xz |
Bug 514970: Clean up duplicates.cgi and make it use Bug objects
r=LpSolit, a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/duplicates.css | 45 |
1 files changed, 30 insertions, 15 deletions
diff --git a/skins/standard/duplicates.css b/skins/standard/duplicates.css index 9948b789e..e89b72c59 100644 --- a/skins/standard/duplicates.css +++ b/skins/standard/duplicates.css @@ -10,25 +10,40 @@ * * The Original Code is the Bugzilla Bug Tracking System. * - * The Initial Developer of the Original Code is Netscape Communications - * Corporation. Portions created by Netscape are - * Copyright (C) 1998 Netscape Communications Corporation. All - * Rights Reserved. + * The Initial Developer of the Original Code is Everything Solved, Inc. + * Portions created by the Initial Developer are Copyright (C) 2009 + * the Initial Developer. All Rights Reserved. * - * Contributor(s): Myk Melez <myk@mozilla.org> + * Contributor(s): + * Max Kanat-Alexander <mkanat@bugzilla.org> */ -tree#results-tree { - margin-right: 0px; - border-right-width: 0px; - margin-left: 0px; - border-left-width: 0px; +#duplicates_table { + border-collapse: collapse; } -treechildren:-moz-tree-cell-text(resolution-FIXED) { - text-decoration: line-through; +#duplicates_table .resolved { + background-color: #d9d9d9; + color: black; } -treecol#id_column { width: 6em; } -treecol#duplicate_count_column { width: 5em; } -treecol#duplicate_delta_column { width: 5em; } +#duplicates_table thead tr { + background-color: #ccc; + color: black; +} + +#duplicates_table thead tr th { + vertical-align: middle; +} + +#duplicates_table td, #duplicates_table th { + border: 1px solid black; + padding: .1em .25em; +} + +#duplicates_table tbody td { + text-align: center; +} +#duplicates_table tbody td.short_desc { + text-align: left; +} |