Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #content-settings-page { | 5 #content-settings-page { |
| 6 min-width: 620px; | 6 min-width: 620px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #content-settings-exceptions-area { | 9 #content-settings-exceptions-area { |
| 10 min-width: 540px; | 10 min-width: 540px; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 .settings-list div[role='listitem'][controlled-by='extension'] { | 72 .settings-list div[role='listitem'][controlled-by='extension'] { |
| 73 background: rgb(250, 230, 146); | 73 background: rgb(250, 230, 146); |
| 74 border-bottom: 1px solid rgb(201, 189, 141); | 74 border-bottom: 1px solid rgb(201, 189, 141); |
| 75 border-top: 0; | 75 border-top: 0; |
| 76 } | 76 } |
| 77 | 77 |
| 78 .sublabel { | 78 .sublabel { |
| 79 -webkit-margin-start: 2em; | 79 -webkit-margin-start: 2em; |
| 80 } | 80 } |
| 81 | 81 |
| 82 .media-device-control { | 82 select.media-device-control { |
| 83 display: table-row; | 83 margin: 5px 0; |
| 84 width: 12em; | |
| 84 } | 85 } |
| 85 | 86 |
| 86 .media-device-control > span { | 87 select.media-device-control:empty { |
|
msramek
2015/07/23 18:59:27
UI request: Hide device selection comboboxes if th
| |
| 87 display: table-cell; | 88 display: none; |
| 88 min-width: 145px; | |
| 89 } | |
| 90 | |
| 91 .media-device-control > select { | |
| 92 display: table-cell; | |
| 93 margin: 5px 0; | |
| 94 width: 12em; | |
| 95 } | 89 } |
| 96 | 90 |
| 97 .exception-setting.media-audio-setting { | 91 .exception-setting.media-audio-setting { |
| 98 width: 6em; | 92 width: 6em; |
| 99 } | 93 } |
| 100 | 94 |
| 101 .exception-setting.media-video-setting { | 95 .exception-setting.media-video-setting { |
| 102 width: 6.5em; | 96 width: 6.5em; |
| 103 } | 97 } |
| 104 | 98 |
| 105 #media-column-header { | 99 #media-column-header { |
| 106 display: -webkit-box; | 100 display: -webkit-box; |
| 107 } | 101 } |
| 108 | 102 |
| 109 #media-audio-column { | 103 #media-audio-column { |
| 110 width: 6em; | 104 width: 6em; |
| 111 } | 105 } |
| 112 | 106 |
| 113 #media-video-column { | 107 #media-video-column { |
| 114 width: 8.5em; | 108 width: 8.5em; |
| 115 } | 109 } |
| OLD | NEW |