| OLD | NEW |
| 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[dir='rtl'] body.uber-frame > .page { | 5 html[dir='rtl'] body.uber-frame > .page { |
| 6 -webkit-margin-end: 0; | 6 -webkit-margin-end: 0; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body.uber-frame > .page.big-topbar-page { | 9 body.uber-frame > .page.big-topbar-page { |
| 10 padding-top: 78px; | 10 padding-top: 78px; |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 325 |
| 326 .site-results .domain { | 326 .site-results .domain { |
| 327 display: none; | 327 display: none; |
| 328 } | 328 } |
| 329 | 329 |
| 330 html[dir='rtl'] .number-visits { | 330 html[dir='rtl'] .number-visits { |
| 331 /* This element contains parentheses, which without the unicode-bidi: embed | 331 /* This element contains parentheses, which without the unicode-bidi: embed |
| 332 * directive would show up incorrectly (e.g. '(www.google.com (5'). Using | 332 * directive would show up incorrectly (e.g. '(www.google.com (5'). Using |
| 333 * 'embed' makes the engine set the text in the parentheses as LTR even | 333 * 'embed' makes the engine set the text in the parentheses as LTR even |
| 334 * when the layout is set to RTL, which makes using -webkit-*-start | 334 * when the layout is set to RTL, which makes using -webkit-*-start |
| 335 * impossible. So use margins and dir='rtl'. | 335 * impossible. So use margins and dir='rtl'. */ |
| 336 */ | |
| 337 direction: rtl; | 336 direction: rtl; |
| 338 unicode-bidi: embed; | 337 unicode-bidi: embed; |
| 339 } | 338 } |
| 340 | 339 |
| 341 .number-visits { | 340 .number-visits { |
| 342 color: rgb(151, 156, 160); | 341 color: rgb(151, 156, 160); |
| 343 } | 342 } |
| 344 | 343 |
| 345 .drop-down { | 344 .drop-down { |
| 346 margin-top: 1px; | 345 margin-top: 1px; |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 | 631 |
| 633 #action-menu[data-devicetype='phone']::before { | 632 #action-menu[data-devicetype='phone']::before { |
| 634 background-image: url(../../../../ui/webui/resources/images/smartphone.svg); | 633 background-image: url(../../../../ui/webui/resources/images/smartphone.svg); |
| 635 background-position: 14px center; | 634 background-position: 14px center; |
| 636 padding-left: 43px; | 635 padding-left: 43px; |
| 637 } | 636 } |
| 638 | 637 |
| 639 #action-menu[data-devicetype='tablet']::before { | 638 #action-menu[data-devicetype='tablet']::before { |
| 640 background-image: url(../../../../ui/webui/resources/images/tablet.svg); | 639 background-image: url(../../../../ui/webui/resources/images/tablet.svg); |
| 641 } | 640 } |
| OLD | NEW |