From ec4862650f2da6ef3b0cdcb1ca135a64879c6b31 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sun, 22 Dec 2013 15:51:18 +0100 Subject: Bug 322402: Inline styling using bgcolor=x or color=x should be replaced by CSS styles r/a=justdave --- skins/standard/admin.css | 18 +++++++++++++++++- skins/standard/enter_bug.css | 27 ++++++++++++++++++++++++++- skins/standard/global.css | 5 +++-- skins/standard/show_bug.css | 5 +++++ 4 files changed, 51 insertions(+), 4 deletions(-) (limited to 'skins') diff --git a/skins/standard/admin.css b/skins/standard/admin.css index c2b822bbe..7058bd1af 100644 --- a/skins/standard/admin.css +++ b/skins/standard/admin.css @@ -6,6 +6,10 @@ * defined by the Mozilla Public License, v. 2.0. */ +.column_header { + background-color: #66f; +} + .warningmessages, .criticalmessages { background-color: white; border-style: solid; @@ -39,7 +43,7 @@ p.areyoureallyreallysure { font-weight: bold; } -tr.param_disabled { +tr.disabled { background-color: lightgrey; } @@ -124,3 +128,15 @@ th.title { #edit_custom_field th.narrow_label { white-space: normal; } + +#flag_types_bugs tr th, #flag_types_attachments tr th { + text-align: left; +} + +#flag_types_bugs .inactive, #flag_types_attachments .inactive { + color: #787878; +} + +#flag_types_bugs .multiplicable, #flag_types_attachments .multiplicable { + display: block; +} diff --git a/skins/standard/enter_bug.css b/skins/standard/enter_bug.css index e0f1ab656..2aa094626 100644 --- a/skins/standard/enter_bug.css +++ b/skins/standard/enter_bug.css @@ -24,11 +24,16 @@ #Create #field_container_component { width: 1px; } #Create #field_container_reporter { width: 100%; } -#Create .comment { +#Create .comment, #description.comment { vertical-align: top; overflow: auto; color: green; } + +#description.comment { + margin-left: 10px; +} + #Create #comp_desc_container td { padding: 0; } #Create #comp_desc { height: 11ex; } #Create #os_guess_note { @@ -53,3 +58,23 @@ #possible_duplicates .yui-dt-col-update_token { white-space: nowrap; } form#Create #possible_duplicates td { vertical-align: middle; } + + +/* CSS rules for the guided form. */ + +.guided_form_field { + background-color: #ffc; +} + +#somebugs { + width: 100%; + height: 500px; +} + +.good { + color: #090; +} + +.bad { + color: #900; +} diff --git a/skins/standard/global.css b/skins/standard/global.css index 3d3be8331..9396a6346 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -413,7 +413,8 @@ dl dl > dt { border: 1px solid #333333; } -#attachment_table th, .bz_attach_footer, .bz_time_tracking_table th { +#attachment_table th, .bz_attach_footer, .bz_time_tracking_table th, +.dependency_tree_controls { background-color: #E0E0E0; color: black; } @@ -422,7 +423,7 @@ dl dl > dt { border: 1px solid #333333; } -.bz_attach_extra_info { +.bz_attach_extra_info, .bz_info { font-size: smaller; } diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css index 7c002cc15..0c6534fc0 100644 --- a/skins/standard/show_bug.css +++ b/skins/standard/show_bug.css @@ -47,6 +47,11 @@ table#flags { display: inline; } +.navigation_link { + color: #777; + font-style: italic; +} + .bz_show_bug_column { vertical-align: top; } -- cgit v1.2.3-24-g4f1b