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

Side by Side Diff: chrome/browser/resources/uber/uber_shared.css

Issue 11272026: Remove the managed banner from the Chrome settings UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 8 years, 1 month 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 body.uber-frame { 5 body.uber-frame {
6 -webkit-margin-start: 155px; 6 -webkit-margin-start: 155px;
7 color: rgb(48, 57, 66); 7 color: rgb(48, 57, 66);
8 } 8 }
9 9
10 html[dir='rtl'] body.uber-frame { 10 html[dir='rtl'] body.uber-frame {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 body.uber-frame header button { 69 body.uber-frame header button {
70 margin: 0; 70 margin: 0;
71 } 71 }
72 72
73 body.uber-frame header > h1 { 73 body.uber-frame header > h1 {
74 margin: 0; 74 margin: 0;
75 padding: 21px 0 13px; 75 padding: 21px 0 13px;
76 } 76 }
77 77
78 /* Create a border under the h1 (but before anything that gets appended 78 /* Create a border under the h1 (but before anything that gets appended
79 * to the end of the header, such as the managed prefs banner). */ 79 * to the end of the header). */
80 body.uber-frame header > h1::after { 80 body.uber-frame header > h1::after {
81 -webkit-margin-end: 20px; 81 -webkit-margin-end: 20px;
82 background-color: #eee; 82 background-color: #eee;
83 content: ' '; 83 content: ' ';
84 display: block; 84 display: block;
85 height: 1px; 85 height: 1px;
86 position: relative; 86 position: relative;
87 top: 13px; 87 top: 13px;
88 } 88 }
89 89
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 124 }
125 body.uber-frame section > h3 { 125 body.uber-frame section > h3 {
126 -webkit-margin-start: -28px; 126 -webkit-margin-start: -28px;
127 } 127 }
128 } 128 }
129 129
130 body.uber-frame section > div:only-of-type { 130 body.uber-frame section > div:only-of-type {
131 -webkit-box-flex: 1; 131 -webkit-box-flex: 1;
132 } 132 }
133 133
134 /* Styles for a hideable notification banner at the top of a page. 134 /* Styles for a hideable notification banner at the top of a page. */
135 * See the Options page .managed-prefs-banner for a usage example. */
136 .page.showing-banner { 135 .page.showing-banner {
137 margin-top: 45px; 136 margin-top: 45px;
138 } 137 }
139 138
140 .page-banner { 139 .page-banner {
141 background-color: white; 140 background-color: white;
142 width: 100%; 141 width: 100%;
143 z-index: 2; 142 z-index: 2;
144 } 143 }
145 144
(...skipping 25 matching lines...) Expand all
171 background-size: 16px; 170 background-size: 16px;
172 display: block; 171 display: block;
173 padding-bottom: 8px; 172 padding-bottom: 8px;
174 padding-top: 8px; 173 padding-top: 8px;
175 } 174 }
176 175
177 .page-banner.clickable:active .page-banner-text { 176 .page-banner.clickable:active .page-banner-text {
178 background: -webkit-linear-gradient(rgb(250, 230, 145), 177 background: -webkit-linear-gradient(rgb(250, 230, 145),
179 rgb(255, 242, 183)); 178 rgb(255, 242, 183));
180 } 179 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/pref_ui.js ('k') | chrome/browser/ui/webui/options/chromeos/proxy_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698