diff options
Diffstat (limited to 'skins')
-rw-r--r-- | skins/contrib/Dusk/.cvsignore | 1 | ||||
-rw-r--r-- | skins/standard/global.css | 11 | ||||
-rw-r--r-- | skins/standard/show_bug.css | 65 |
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; +} |