summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-01-28 02:21:11 +0100
committermkanat%bugzilla.org <>2008-01-28 02:21:11 +0100
commit46381d01b6e3e1b0143c3fe06224a86b9960d67f (patch)
tree9659992730eddcd30f5a710abb157014312bc13d /skins
parentc0b4d49d2ed629ccba8c5fc0d61ebf28972d6ada (diff)
downloadbugzilla-46381d01b6e3e1b0143c3fe06224a86b9960d67f.tar.gz
bugzilla-46381d01b6e3e1b0143c3fe06224a86b9960d67f.tar.xz
Bug 374020: Re-work the bug editing form to be more usable.
Patch By Guy Pyrzak <guy.pyrzak@gmail.com> r=mkanat, a=mkanat
Diffstat (limited to 'skins')
-rw-r--r--skins/contrib/Dusk/.cvsignore1
-rw-r--r--skins/standard/global.css11
-rw-r--r--skins/standard/show_bug.css65
3 files changed, 72 insertions, 5 deletions
diff --git a/skins/contrib/Dusk/.cvsignore b/skins/contrib/Dusk/.cvsignore
index 193d1507b..8e2561a25 100644
--- a/skins/contrib/Dusk/.cvsignore
+++ b/skins/contrib/Dusk/.cvsignore
@@ -10,6 +10,7 @@ index.css
panel.css
params.css
release-notes.css
+show_bug.css
show_multiple.css
summarize-time.css
voting.css
diff --git a/skins/standard/global.css b/skins/standard/global.css
index 4d8102f88..9d87927c7 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -28,6 +28,10 @@
color: #000;
background: #fff url("global/body-back.gif") repeat-x;
}
+ body, td, th, input {
+ font-family: Verdana, sans-serif;
+ font-size: small;
+ }
/* global (end) */
/* header (begin) */
@@ -41,11 +45,6 @@
display: inline;
}
- #header .btn,
- #header .txt {
- font-size: 80%;
- }
-
#header .links {
font-size: 85%;
border-left: 1px solid silver;
@@ -397,3 +396,5 @@ form#Create .comment {
-moz-border-radius: 5px;
background: white;
}
+
+
diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css
new file mode 100644
index 000000000..0546b4165
--- /dev/null
+++ b/skins/standard/show_bug.css
@@ -0,0 +1,65 @@
+.bz_alias_short_desc_container {
+ margin: 8px 0;
+ padding: 0.3em;
+ background-color: rgb(208, 208, 208);
+ -moz-border-radius: 0.5em;
+ font-size: 125%;
+ font-weight: bold;
+}
+
+.bz_column_spacer {
+ width: 2em;
+}
+
+.bz_default_hidden {
+ display: none;
+}
+
+.related_actions {
+ font-size: 0.85em;
+ float: right;
+ list-style-type: none;
+ white-space: nowrap;
+ margin: 0;
+ padding: 0;
+}
+
+.related_actions li {
+ display: inline;
+}
+
+.bz_show_bug_column {
+ vertical-align: top;
+}
+
+.bz_section_spacer {
+ height: 1em;
+}
+
+#bz_field_status {
+ white-space: nowrap;
+}
+
+.bz_time_tracking_table {
+ border-collapse: collapse;
+}
+
+.bz_time_tracking_table th {
+ text-align: center;
+ background-color: #ccc;
+}
+
+.bz_time_tracking_table td {
+ text-align: center;
+}
+
+.bz_time_tracking_table th,
+.bz_time_tracking_table td {
+ padding: 4px;
+ border: 1px solid black;
+
+}
+
+.bz_time_tracking_table .bz_summarize_time {
+ text-align: right;
+}