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

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: Clean up styling 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 } 92 }
93 93
94 .hidden { 94 .hidden {
95 display: none; 95 display: none;
96 } 96 }
97 97
98 #suggestion { 98 #suggestion {
99 margin-top: 15px; 99 margin-top: 15px;
100 } 100 }
101 101
102 #suggestions-list p {
103 -webkit-margin-after: 0;
104 }
105
106 #suggestions-list ul {
107 margin-top: 0;
108 }
109
110 .single-suggestion {
111 list-style-type: none;
112 padding-left: 0;
113 }
114
102 #short-suggestion { 115 #short-suggestion {
103 margin-top: 5px; 116 margin-top: 5px;
104 } 117 }
105 118
106 #sub-frame-error-details { 119 #sub-frame-error-details {
107 color: #8F8F8F; 120 color: #8F8F8F;
108 <if expr="not is_android and not is_ios"> 121 <if expr="not is_android and not is_ios">
109 /* Not done on mobile for performance reasons. */ 122 /* Not done on mobile for performance reasons. */
110 text-shadow: 0 1px 0 rgba(255,255,255,0.3); 123 text-shadow: 0 1px 0 rgba(255,255,255,0.3);
111 </if> 124 </if>
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 overflow: inherit; 467 overflow: inherit;
455 padding: 0 8px; 468 padding: 0 8px;
456 } 469 }
457 } 470 }
458 471
459 @media (max-width: 120px) { 472 @media (max-width: 120px) {
460 button { 473 button {
461 width: auto; 474 width: auto;
462 } 475 }
463 } 476 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/resources/neterror.html » ('j') | chrome/renderer/resources/neterror.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698