Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 #reset-profile-settings-overlay { | 5 #reset-profile-settings-overlay { |
| 6 width: 500px; | 6 width: 500px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #reset-profile-settings-content-area { | 9 #reset-profile-settings-content-area { |
| 10 -webkit-box-flex: 0; | 10 -webkit-box-flex: 0; |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 vertical-align: top; | 41 vertical-align: top; |
| 42 } | 42 } |
| 43 | 43 |
| 44 #feedback-template .value { | 44 #feedback-template .value { |
| 45 color: #333; | 45 color: #333; |
| 46 text-align: left; | 46 text-align: left; |
| 47 white-space: pre-line; | 47 white-space: pre-line; |
| 48 } | 48 } |
| 49 | 49 |
| 50 #expand-feedback { | 50 #expand-feedback { |
| 51 background: center bottom no-repeat; | 51 background: center no-repeat; |
| 52 background-image: url('chrome://theme/IDR_QUESTION_MARK'); | 52 background-image: url('chrome://theme/IDR_QUESTION_MARK'); |
|
Dan Beam
2014/09/08 17:52:54
combine into shorthand background
Evan Stade
2014/09/08 18:23:00
Done.
| |
| 53 display: inline-block; | 53 display: inline-block; |
| 54 height: 14px; | 54 height: 14px; |
| 55 opacity: 0.33; | 55 opacity: 0.33; |
| 56 vertical-align: text-top; | |
|
Dan Beam
2014/09/08 17:52:54
why did you remove this?
Evan Stade
2014/09/08 18:23:00
changed the element from div to span; it's no long
| |
| 57 width: 14px; | 56 width: 14px; |
| 58 } | 57 } |
| 59 | 58 |
| 60 #expand-feedback:hover { | 59 #expand-feedback:hover { |
| 61 opacity: 1; | 60 opacity: 1; |
| 62 } | 61 } |
| OLD | NEW |