Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: components/neterror/resources/neterror.css

Issue 1764643002: Wrap long URLs on the network error interstitial to prevent layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698