summaryrefslogtreecommitdiffstats
path: root/skins/standard/admin.css
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-12-28 20:55:54 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-12-28 20:55:54 +0100
commit5a15633a1179f960e1726eebf7f38c7ee2f2b4f8 (patch)
tree814ecaa9e2d4eeea93e416bb4f265ba2e24224ba /skins/standard/admin.css
parent3b55436dd3711772ff632eaa805b6c19e588b791 (diff)
downloadbugzilla-5a15633a1179f960e1726eebf7f38c7ee2f2b4f8.tar.gz
bugzilla-5a15633a1179f960e1726eebf7f38c7ee2f2b4f8.tar.xz
Bug 952795: Remove all style="..." attributes from HTML elements
r/a=justdave
Diffstat (limited to 'skins/standard/admin.css')
-rw-r--r--skins/standard/admin.css40
1 files changed, 40 insertions, 0 deletions
diff --git a/skins/standard/admin.css b/skins/standard/admin.css
index 7058bd1af..d0aaf368f 100644
--- a/skins/standard/admin.css
+++ b/skins/standard/admin.css
@@ -43,6 +43,20 @@ p.areyoureallyreallysure {
font-weight: bold;
}
+#admin_table {
+ border-collapse: collapse;
+ border: 1px solid black;
+}
+
+#admin_table th {
+ white-space: normal !important;
+}
+
+#admin_table th, #admin_table td {
+ border: 1px solid black;
+ padding: 0.3em;
+}
+
tr.disabled {
background-color: lightgrey;
}
@@ -140,3 +154,29 @@ th.title {
#flag_types_bugs .multiplicable, #flag_types_attachments .multiplicable {
display: block;
}
+
+table.whining_list {
+ border: 1px solid black;
+ border-collapse: collapse;
+ width: 100%;
+}
+
+table.whining_list th, table.whining_list td {
+ padding: 0.3em;
+}
+
+table.whining_list th {
+ text-align: right;
+ font-weight: normal !important;
+ white-space: normal !important;
+}
+
+table.whining_list th.subtitle {
+ font-weight: bold !important;
+ text-align: left !important;
+}
+
+table.schedule_list th, table.search_list th {
+ text-align: center;
+ font-weight: bold !important;
+}