| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 <if expr="is_ios"> | 115 <if expr="is_ios"> |
| 116 font-size: 8pt; | 116 font-size: 8pt; |
| 117 </if> | 117 </if> |
| 118 color: #8F8F8F; | 118 color: #8F8F8F; |
| 119 <if expr="not is_android and not is_ios"> | 119 <if expr="not is_android and not is_ios"> |
| 120 /* Not done on mobile for performance reasons. */ | 120 /* Not done on mobile for performance reasons. */ |
| 121 text-shadow: 0 1px 0 rgba(255,255,255,0.3); | 121 text-shadow: 0 1px 0 rgba(255,255,255,0.3); |
| 122 </if> | 122 </if> |
| 123 } | 123 } |
| 124 | 124 |
| 125 [jscontent=hostName], |
| 125 [jscontent=failedUrl] { | 126 [jscontent=failedUrl] { |
| 126 overflow-wrap: break-word; | 127 overflow-wrap: break-word; |
| 127 } | 128 } |
| 128 | 129 |
| 129 #search-container { | 130 #search-container { |
| 130 /* Prevents a space between controls. */ | 131 /* Prevents a space between controls. */ |
| 131 display: flex; | 132 display: flex; |
| 132 margin-top: 20px; | 133 margin-top: 20px; |
| 133 } | 134 } |
| 134 | 135 |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 overflow: inherit; | 477 overflow: inherit; |
| 477 padding: 0 8px; | 478 padding: 0 8px; |
| 478 } | 479 } |
| 479 } | 480 } |
| 480 | 481 |
| 481 @media (max-width: 120px) { | 482 @media (max-width: 120px) { |
| 482 button { | 483 button { |
| 483 width: auto; | 484 width: auto; |
| 484 } | 485 } |
| 485 } | 486 } |
| OLD | NEW |