diff options
author | Byron Jones <bjones@mozilla.com> | 2013-09-03 16:52:41 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-09-03 16:52:41 +0200 |
commit | f988b727cc57bbc8fa9095476b1a27e5f9f9cb17 (patch) | |
tree | e28c65dd18439bf8c5da612992a7b29d68308070 | |
parent | 9a9e8ef7febf533e8aae2fb21f3d45f9bf919b1b (diff) | |
download | bugzilla-f988b727cc57bbc8fa9095476b1a27e5f9f9cb17.tar.gz bugzilla-f988b727cc57bbc8fa9095476b1a27e5f9f9cb17.tar.xz |
Bug 912036: all <input> text elements should be styled the same
-rw-r--r-- | skins/contrib/Mozilla/global.css | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/skins/contrib/Mozilla/global.css b/skins/contrib/Mozilla/global.css index 0eaf13ea1..9874cc8dc 100644 --- a/skins/contrib/Mozilla/global.css +++ b/skins/contrib/Mozilla/global.css @@ -22,7 +22,7 @@ a:hover, #header a:hover, #footer a:hover { color: #00539f; } -select[multiple], textarea, input[type=text], .text_input, .yui-ac-input { +select[multiple], textarea, input[type=text], input:not([type]), .text_input, .yui-ac-input { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; @@ -30,17 +30,16 @@ select[multiple], textarea, input[type=text], .text_input, .yui-ac-input { border-radius: .25em; box-shadow: inset 0 1px rgba(0, 0, 0, 0.1); background: white; - padding: 6px 5px 7px; + padding: 4px 3px 5px; color: #404040; vertical-align: top; } -select[multiple], input[type=text], .text_input, .yui-ac-input, input { +select[multiple], .text_input, .yui-ac-input, input { font-size: 1em; } - -select[multiple]:focus, textarea:focus, input[type=text]:focus, .text-input:focus, -yui-ac-input:focus, input:focus { +select[multiple]:focus, textarea:focus, .text-input:focus, -yui-ac-input:focus, input:focus { border-color: #42a4e0; -webkit-box-shadow: 0 0 0 2px rgba(73,173,227,0.4); -moz-box-shadow: 0 0 0 2px rgba(73,173,227,0.4); @@ -669,6 +668,12 @@ table.tabs { font-size: 90%; } +/* search */ + +#summary_field.search_field_row input { + padding-bottom: 6px; +} + /* Smaller than standard 990 (devices and browsers) */ @media only screen and (max-width: 989px) { #header .links { |