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

Side by Side Diff: chrome/renderer/resources/neterror.css

Issue 1639953002: Network error interstitial update - add suggestions list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments + Fix generic icon Created 4 years, 10 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
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 } 87 }
88 88
89 .hidden { 89 .hidden {
90 display: none; 90 display: none;
91 } 91 }
92 92
93 #suggestion { 93 #suggestion {
94 margin-top: 15px; 94 margin-top: 15px;
95 } 95 }
96 96
97 #suggestions-list p {
98 -webkit-margin-after: 0;
99 }
100
101 #suggestions-list ul {
102 margin-top: 0;
103 }
104
105 .single-suggestion {
106 list-style-type: none;
107 padding-left: 0;
108 }
109
97 #short-suggestion { 110 #short-suggestion {
98 margin-top: 5px; 111 margin-top: 5px;
99 } 112 }
100 113
101 #sub-frame-error-details { 114 #sub-frame-error-details {
102 color: #8F8F8F; 115 color: #8F8F8F;
103 <if expr="not is_android and not is_ios"> 116 <if expr="not is_android and not is_ios">
104 /* Not done on mobile for performance reasons. */ 117 /* Not done on mobile for performance reasons. */
105 text-shadow: 0 1px 0 rgba(255,255,255,0.3); 118 text-shadow: 0 1px 0 rgba(255,255,255,0.3);
106 </if> 119 </if>
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 overflow: inherit; 473 overflow: inherit;
461 padding: 0 8px; 474 padding: 0 8px;
462 } 475 }
463 } 476 }
464 477
465 @media (max-width: 120px) { 478 @media (max-width: 120px) {
466 button { 479 button {
467 width: auto; 480 width: auto;
468 } 481 }
469 } 482 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698