| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 * { | 7 * { |
| 8 /* This is required for correct sizing of flex items because we rely | 8 /* This is required for correct sizing of flex items because we rely |
| 9 * on an old version of the flexbox spec. | 9 * on an old version of the flexbox spec. |
| 10 * Longer-term we should remove this, see crbug.com/473625 */ | 10 * Longer-term we should remove this, see crbug.com/473625 */ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 .vbox { | 86 .vbox { |
| 87 display: flex; | 87 display: flex; |
| 88 flex-direction: column !important; | 88 flex-direction: column !important; |
| 89 position: relative; | 89 position: relative; |
| 90 } | 90 } |
| 91 | 91 |
| 92 .flex-auto { | 92 .flex-auto { |
| 93 flex: auto; | 93 flex: auto; |
| 94 } | 94 } |
| 95 | 95 |
| 96 .flex-auto-important { |
| 97 flex: auto !important; |
| 98 } |
| 99 |
| 96 .flex-none { | 100 .flex-none { |
| 97 flex: none; | 101 flex: none; |
| 98 } | 102 } |
| 99 | 103 |
| 100 .flex-centered { | 104 .flex-centered { |
| 101 display: flex; | 105 display: flex; |
| 102 align-items: center; | 106 align-items: center; |
| 103 justify-content: center; | 107 justify-content: center; |
| 104 } | 108 } |
| 105 | 109 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 .highlighted-search-result.current-search-result { | 155 .highlighted-search-result.current-search-result { |
| 152 border-radius: 1px; | 156 border-radius: 1px; |
| 153 padding: 1px; | 157 padding: 1px; |
| 154 margin: -1px; | 158 margin: -1px; |
| 155 background-color: rgba(255, 127, 0, 0.8); | 159 background-color: rgba(255, 127, 0, 0.8); |
| 156 } | 160 } |
| 157 | 161 |
| 158 .dimmed { | 162 .dimmed { |
| 159 opacity: 0.6; | 163 opacity: 0.6; |
| 160 } | 164 } |
| 165 |
| 166 .editing { |
| 167 -webkit-user-select: text; |
| 168 box-shadow: rgba(0, 0, 0, .5) 3px 3px 4px; |
| 169 outline: 1px solid rgb(66%, 66%, 66%) !important; |
| 170 background-color: white; |
| 171 -webkit-user-modify: read-write-plaintext-only; |
| 172 text-overflow: clip !important; |
| 173 padding-left: 2px; |
| 174 margin-left: -2px; |
| 175 padding-right: 2px; |
| 176 margin-right: -2px; |
| 177 margin-bottom: -1px; |
| 178 padding-bottom: 1px; |
| 179 opacity: 1.0 !important; |
| 180 } |
| 181 |
| 182 .editing, |
| 183 .editing * { |
| 184 color: #222 !important; |
| 185 text-decoration: none !important; |
| 186 } |
| OLD | NEW |