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

Side by Side Diff: chrome/browser/resources/supervised_user_block_interstitial.css

Issue 468533002: Update CSS for supervised user block interstitial to be more friendly to narrow screens. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 4 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 | Annotate | Revision Log
« 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 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 body { 4 body {
5 background-color: rgb(230, 230, 230); 5 background-color: rgb(230, 230, 230);
6 font-family: Helvetica, Arial, sans-serif; 6 font-family: Helvetica, Arial, sans-serif;
7 font-size: 10pt; 7 font-size: 10pt;
8 margin: 50px 40px 20px 40px; 8 margin: 50px 40px 20px 40px;
9 text-align: center; 9 text-align: center;
10 } 10 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 * the resource manually. */ 45 * the resource manually. */
46 -webkit-user-select: none; 46 -webkit-user-select: none;
47 content: -webkit-image-set( 47 content: -webkit-image-set(
48 url('../../app/theme/default_100_percent/common/error_managed_mode_blocked _page.png') 1x, 48 url('../../app/theme/default_100_percent/common/error_managed_mode_blocked _page.png') 1x,
49 url('../../app/theme/default_200_percent/common/error_managed_mode_blocked _page.png') 2x); 49 url('../../app/theme/default_200_percent/common/error_managed_mode_blocked _page.png') 2x);
50 margin-bottom: 10px; 50 margin-bottom: 10px;
51 margin-top: 10px; 51 margin-top: 10px;
52 } 52 }
53 53
54 #content-top { 54 #content-top {
55 margin: 20px 20px 20px 25px; 55 margin: 20px 25px;
56 } 56 }
57 57
58 button { 58 button {
59 -webkit-user-select: none; 59 -webkit-user-select: none;
60 background-image: linear-gradient(rgb(246, 246, 246) 5%, 60 background-image: linear-gradient(rgb(246, 246, 246) 5%,
61 rgb(239, 239, 239) 50%, 61 rgb(239, 239, 239) 50%,
62 rgb(221, 221, 221)); 62 rgb(221, 221, 221));
63 border: 1px solid rgb(209, 209, 211); 63 border: 1px solid rgb(209, 209, 211);
64 border-bottom: 1px solid rgb(193, 193, 195); 64 border-bottom: 1px solid rgb(193, 193, 195);
65 border-radius: 2px; 65 border-radius: 2px;
66 box-shadow: inset 0 1px 0 rgb(255, 255, 255); 66 box-shadow: inset 0 1px 0 rgb(255, 255, 255);
67 color: rgb(102, 102, 102); 67 color: rgb(102, 102, 102);
68 font-weight: bold; 68 font-weight: bold;
69 margin: 0 5px; 69 margin: 5px 0;
70 padding: 8px 13px; 70 padding: 8px 13px;
71 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); 71 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
72 } 72 }
73 73
74 #back-button { 74 #back-button {
75 background-image: linear-gradient(rgb(84, 153, 244) 5%, 75 background-image: linear-gradient(rgb(84, 153, 244) 5%,
76 rgb(82, 148, 242) 50%, 76 rgb(82, 148, 242) 50%,
77 rgb(75, 133, 241)); 77 rgb(75, 133, 241));
78 border: 1px solid rgb(81, 135, 223); 78 border: 1px solid rgb(81, 135, 223);
79 border-bottom: 1px solid rgb(56, 112, 207); 79 border-bottom: 1px solid rgb(56, 112, 207);
80 box-shadow: inset 0 1px 0 rgb(95, 168, 247); 80 box-shadow: inset 0 1px 0 rgb(95, 168, 247);
81 color: rgb(255, 255, 255); 81 color: rgb(255, 255, 255);
82 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); 82 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
83 width: 100px;
84 } 83 }
84
85 @media (min-width: 376px) {
86 #back-button {
87 width: 100px;
88 }
89 }
90
91 @media (max-width: 375px) {
92 button {
93 width: 100%;
94 }
95 }
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