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

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

Issue 339403004: Fix RTL issues with the chrome://devices page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/local_discovery/local_discovery.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 body { 5 body {
6 margin: 21px 10px 24px 10px; 6 margin: 21px 10px 24px 10px;
7 } 7 }
8 8
9 h1 { 9 h1 {
10 margin: 0 0 13px 0; 10 margin: 0 0 13px 0;
11 } 11 }
12 12
13 h2 { 13 h2 {
14 margin: 23px 0 0 0; 14 margin: 23px 0 0 0;
15 } 15 }
16 16
17 header { 17 header {
18 border-bottom: 1px solid #eee; 18 border-bottom: 1px solid #eee;
19 max-width: 718px; 19 max-width: 718px;
20 } 20 }
21 21
22 .device { 22 .device {
23 background: url(device.png) no-repeat; 23 background: url(device.png) no-repeat;
24 margin: 23px 0; 24 margin: 23px 0;
25 max-width: 695px; 25 max-width: 695px;
26 overflow: hidden; 26 overflow: hidden;
27 } 27 }
28 28
29 html[dir='rtl'] .device {
30 background-position: right top;
31 }
32
29 .device .device-info { 33 .device .device-info {
30 -webkit-padding-start: 40px; 34 -webkit-padding-start: 40px;
31 float: left; 35 float: left;
32 } 36 }
33 37
34 .printer { 38 .printer {
35 background: url(printer.png) no-repeat; 39 background: url(printer.png) no-repeat;
36 } 40 }
37 41
38 html[dir='rtl'] .device .device-info { 42 html[dir='rtl'] .device .device-info {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 margin: 23px 0; 106 margin: 23px 0;
103 } 107 }
104 108
105 section { 109 section {
106 margin-bottom: 23px; 110 margin-bottom: 23px;
107 } 111 }
108 112
109 .dialog-contents { 113 .dialog-contents {
110 padding-left: 17px; 114 padding-left: 17px;
111 } 115 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/local_discovery/local_discovery.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698