| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 .advanced-settings-item { | 5 .advanced-settings-item { |
| 6 cursor: default; | 6 cursor: default; |
| 7 display: table-row; | 7 display: table-row; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .advanced-settings-item > * { | 10 .advanced-settings-item > * { |
| 11 padding-bottom: 15px; | 11 padding-bottom: 15px; |
| 12 padding-top: 10px; | 12 padding-top: 10px; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .advanced-settings-item-label { | 15 .advanced-settings-item-label { |
| 16 -webkit-padding-end: 20px; | 16 -webkit-padding-end: 20px; |
| 17 display: table-cell; | 17 display: table-cell; |
| 18 line-height: 24px; | |
| 19 overflow: hidden; | 18 overflow: hidden; |
| 20 text-overflow: ellipsis; | 19 text-overflow: ellipsis; |
| 21 vertical-align: middle; | 20 vertical-align: middle; |
| 22 white-space: nowrap; | 21 white-space: nowrap; |
| 23 width: 250px; | 22 width: 250px; |
| 24 } | 23 } |
| 25 | 24 |
| 26 .advanced-settings-item-name .search-hint { | 25 .advanced-settings-item-name .search-hint { |
| 27 -webkit-margin-start: 1em; | 26 -webkit-margin-start: 1em; |
| 28 color: #999; | 27 color: #999; |
| 29 font-size: 75%; | 28 font-size: 75%; |
| 30 } | 29 } |
| 31 | 30 |
| 32 .advanced-settings-item-query-highlight { | 31 .advanced-settings-item-query-highlight { |
| 33 background-color: rgba(255, 240, 120, 0.9); | 32 background-color: rgba(255, 240, 120, 0.9); |
| 34 } | 33 } |
| 35 | 34 |
| 36 .advanced-settings-item-value { | 35 .advanced-settings-item-value { |
| 37 display: table-cell; | 36 display: table-cell; |
| 38 line-height: 24px; | |
| 39 overflow: hidden; | 37 overflow: hidden; |
| 40 text-overflow: ellipsis; | 38 text-overflow: ellipsis; |
| 41 vertical-align: middle; | 39 vertical-align: middle; |
| 42 white-space: nowrap; | 40 white-space: nowrap; |
| 43 width: 175px; | 41 width: 175px; |
| 44 } | 42 } |
| 45 | 43 |
| 44 .advanced-settings-item-value-select-control { |
| 45 line-height: 24px; |
| 46 } |
| 47 |
| 46 .advanced-settings-item-value-text-control { | 48 .advanced-settings-item-value-text-control { |
| 47 height: 28px; | 49 height: 28px; |
| 50 line-height: 24px; |
| 48 width: 175px; | 51 width: 175px; |
| 49 } | 52 } |
| OLD | NEW |