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 /* Begin top bar */ | 5 /* Begin top bar */ |
6 | 6 |
7 #bookmarks_title_wrapper { | 7 #bookmarks_title_wrapper { |
8 border-bottom: 1px solid #d0d0d0; | 8 border-bottom: 1px solid #d0d0d0; |
9 display: -webkit-box; | 9 display: -webkit-box; |
10 font-size: 17px; | 10 font-size: 17px; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 .bookmark-separator { | 61 .bookmark-separator { |
62 background-image: url(images/breadcrumb_mdpi.png); | 62 background-image: url(images/breadcrumb_mdpi.png); |
63 background-position: center; | 63 background-position: center; |
64 background-repeat: no-repeat; | 64 background-repeat: no-repeat; |
65 background-size: 8px 20px; /* this matches the background image size */ | 65 background-size: 8px 20px; /* this matches the background image size */ |
66 height: 44px; | 66 height: 44px; |
67 width: 10px; | 67 width: 10px; |
68 } | 68 } |
69 | 69 |
| 70 html[dir='rtl'] .bookmark-separator { |
| 71 -webkit-transform: scaleX(-1); |
| 72 } |
| 73 |
70 #bookmarks_title_wrapper .title-crumb { | 74 #bookmarks_title_wrapper .title-crumb { |
71 color: #555; | 75 color: #555; |
72 margin: 0 10px; | 76 margin: 0 10px; |
73 } | 77 } |
74 | 78 |
75 #bookmarks_title_wrapper .title-crumb-active { | 79 #bookmarks_title_wrapper .title-crumb-active { |
76 font-weight: bold; | 80 font-weight: bold; |
77 margin-right: 0; | 81 margin-right: 0; |
78 padding-right: 10px; | 82 padding-right: 10px; |
79 } | 83 } |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 .bookmark-border { | 263 .bookmark-border { |
260 background-image: url(images/bookmark_border_xhdpi.png); | 264 background-image: url(images/bookmark_border_xhdpi.png); |
261 } | 265 } |
262 .favicon-box.folder { | 266 .favicon-box.folder { |
263 background-image: url(images/bookmark_folder_xhdpi.png); | 267 background-image: url(images/bookmark_folder_xhdpi.png); |
264 } | 268 } |
265 .bookmark-separator { | 269 .bookmark-separator { |
266 background-image: url(images/breadcrumb_xhdpi.png); | 270 background-image: url(images/breadcrumb_xhdpi.png); |
267 } | 271 } |
268 } | 272 } |
OLD | NEW |