| 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 /* Don't use the main frame div when the error is in a subframe. */ | 5 /* Don't use the main frame div when the error is in a subframe. */ |
| 6 html[subframe] #main-frame-error { | 6 html[subframe] #main-frame-error { |
| 7 display: none; | 7 display: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 /* Don't use the subframe error div when the error is in a main frame. */ | 10 /* Don't use the subframe error div when the error is in a main frame. */ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 display: flex; | 155 display: flex; |
| 156 height: 30px; | 156 height: 30px; |
| 157 margin: 0; | 157 margin: 0; |
| 158 padding: 0; | 158 padding: 0; |
| 159 width: 60px; | 159 width: 60px; |
| 160 } | 160 } |
| 161 | 161 |
| 162 #search-image { | 162 #search-image { |
| 163 content: | 163 content: |
| 164 -webkit-image-set( | 164 -webkit-image-set( |
| 165 url(../../resources/default_100_percent/omnibox/omnibox_search_button_
loupe.png) 1x, | 165 url(../../resources/default_100_percent/neterror/search_glass.png) 1x, |
| 166 url(../../resources/default_200_percent/omnibox/omnibox_search_button_
loupe.png) 2x); | 166 url(../../resources/default_200_percent/neterror/search_glass.png) 2x)
; |
| 167 margin: auto; | 167 margin: auto; |
| 168 } | 168 } |
| 169 | 169 |
| 170 .secondary-button { | 170 .secondary-button { |
| 171 -webkit-margin-end: 16px; | 171 -webkit-margin-end: 16px; |
| 172 background: #d9d9d9; | 172 background: #d9d9d9; |
| 173 color: #696969; | 173 color: #696969; |
| 174 } | 174 } |
| 175 | 175 |
| 176 .snackbar { | 176 .snackbar { |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 overflow: inherit; | 482 overflow: inherit; |
| 483 padding: 0 8px; | 483 padding: 0 8px; |
| 484 } | 484 } |
| 485 } | 485 } |
| 486 | 486 |
| 487 @media (max-width: 120px) { | 487 @media (max-width: 120px) { |
| 488 button { | 488 button { |
| 489 width: auto; | 489 width: auto; |
| 490 } | 490 } |
| 491 } | 491 } |
| OLD | NEW |