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

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

Issue 11189094: Implement sideload wipeout for Extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 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
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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 145
146 .page:not(.showing-banner) .page-banner { 146 .page:not(.showing-banner) .page-banner {
147 display: none; 147 display: none;
148 } 148 }
149 149
150 .page-banner-gradient { 150 .page-banner-gradient {
151 background: -webkit-linear-gradient(rgb(255, 242, 183), 151 background: -webkit-linear-gradient(rgb(255, 242, 183),
152 rgb(250, 230, 145)); 152 rgb(250, 230, 145));
153 border: 1px solid rgb(201, 189, 141); 153 border: 1px solid rgb(201, 189, 141);
154 border-radius: 3px; 154 border-radius: 3px;
155 height: 25px;
156 margin: 9px 9px 0 9px; 155 margin: 9px 9px 0 9px;
156 min-height: 25px;
157 } 157 }
158 158
159 .page-banner .page-banner-gradient { 159 .page-banner .page-banner-gradient {
160 -webkit-margin-end: 20px; 160 -webkit-margin-end: 20px;
161 -webkit-margin-start: 0; 161 -webkit-margin-start: 0;
162 margin-bottom: 9px; 162 margin-bottom: 9px;
163 } 163 }
164 164
165 .page-banner-text { 165 .page-banner-text {
166 background-image: url('chrome://theme/IDR_MANAGED'); 166 background-image: url('chrome://theme/IDR_MANAGED');
167 background-position: 5px center; 167 background-position: 5px center;
168 background-repeat: no-repeat; 168 background-repeat: no-repeat;
169 background-size: 16px; 169 background-size: 16px;
170 display: block; 170 display: block;
171 line-height: 24px; 171 padding: 8px 8px 8px 26px;
Dan Beam 2012/10/19 19:08:54 this needs to work in RTL, i.e. -webkit-padding-
172 padding-left: 26px;
173 } 172 }
174 173
175 .page-banner.clickable:active .page-banner-text { 174 .page-banner.clickable:active .page-banner-text {
176 background: -webkit-linear-gradient(rgb(250, 230, 145), 175 background: -webkit-linear-gradient(rgb(250, 230, 145),
177 rgb(255, 242, 183)); 176 rgb(255, 242, 183));
178 } 177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698