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

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

Issue 12252036: Fix RTL issue in the extensions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 (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 html.loading * { 5 html.loading * {
6 -webkit-transition-duration: 0 !important; 6 -webkit-transition-duration: 0 !important;
7 } 7 }
8 8
9 /* Developer mode */ 9 /* Developer mode */
10 10
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 #suggest-gallery { 67 #suggest-gallery {
68 -webkit-padding-start: 10px; 68 -webkit-padding-start: 10px;
69 } 69 }
70 70
71 #footer-section { 71 #footer-section {
72 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat left center; 72 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat left center;
73 font-size: 1.25em; 73 font-size: 1.25em;
74 } 74 }
75 75
76 html[dir=rtl] #footer-section {
77 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat right center;
78 }
79
76 #footer-section > a { 80 #footer-section > a {
77 -webkit-margin-start: 42px; 81 -webkit-margin-start: 42px;
78 line-height: 32px; 82 line-height: 32px;
79 } 83 }
80 84
81 .empty-extension-list { 85 .empty-extension-list {
82 height: 3em; 86 height: 3em;
83 } 87 }
84 88
85 .loading #no-extensions, 89 .loading #no-extensions,
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 #font-measuring-div { 212 #font-measuring-div {
209 /* Remove from the flow and hide. */ 213 /* Remove from the flow and hide. */
210 position: absolute; 214 position: absolute;
211 visibility: hidden; 215 visibility: hidden;
212 } 216 }
213 217
214 .extension-commands-config { 218 .extension-commands-config {
215 float: right; 219 float: right;
216 } 220 }
217 221
222 html[dir=rtl] .extension-commands-config {
223 float: left;
224 }
225
218 /* Overlays */ 226 /* Overlays */
219 227
220 #overlay { 228 #overlay {
221 z-index: 5; 229 z-index: 5;
222 } 230 }
223 231
224 #overlay .page:not(.showing) { 232 #overlay .page:not(.showing) {
225 display: none; 233 display: none;
226 } 234 }
227 235
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 311
304 /* Sideload Wipeout */ 312 /* Sideload Wipeout */
305 313
306 .sideload-wipeout-learn-more { 314 .sideload-wipeout-learn-more {
307 text-decoration: none; 315 text-decoration: none;
308 } 316 }
309 317
310 .sideload-wipeout-banner .page-banner-text { 318 .sideload-wipeout-banner .page-banner-text {
311 -webkit-padding-start: 8px; 319 -webkit-padding-start: 8px;
312 background-image: none; 320 background-image: none;
313 } 321 }
jeremy 2013/02/14 13:56:05 NL at end of file removed?
Adrian Kuegel 2013/02/14 14:03:09 I just checked it locally to be sure, there was no
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