| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 html, body { | 6 html, body { |
| 7 margin: 0; | 7 margin: 0; |
| 8 width: 100%; | 8 width: 100%; |
| 9 height: 100%; | 9 height: 100%; |
| 10 cursor: default; | 10 cursor: default; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 list > :hover > .url, | 53 list > :hover > .url, |
| 54 list > [selected] > .url { | 54 list > [selected] > .url { |
| 55 display: inline; | 55 display: inline; |
| 56 } | 56 } |
| 57 | 57 |
| 58 html[dir=rtl] list .label { | 58 html[dir=rtl] list .label { |
| 59 background-position: 100% 50%; | 59 background-position: 100% 50%; |
| 60 } | 60 } |
| 61 | 61 |
| 62 list > .folder > .label { | 62 list > .folder > .label { |
| 63 background-image: url("../images/folder_closed.png"); | 63 background-image: url("chrome://resources/images/folder_closed.png"); |
| 64 } | 64 } |
| 65 | 65 |
| 66 /* We need to ensure that even empty labels take up space */ | 66 /* We need to ensure that even empty labels take up space */ |
| 67 list > * > .label:empty:after, | 67 list > * > .label:empty:after, |
| 68 list > * > .url:empty:after { | 68 list > * > .url:empty:after { |
| 69 content: " "; | 69 content: " "; |
| 70 white-space: pre; | 70 white-space: pre; |
| 71 } | 71 } |
| 72 | 72 |
| 73 list > .folder > .url:empty:after { | 73 list > .folder > .url:empty:after { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 -webkit-padding-start: 5px; | 111 -webkit-padding-start: 5px; |
| 112 } | 112 } |
| 113 | 113 |
| 114 list .url form { | 114 list .url form { |
| 115 display: inline; | 115 display: inline; |
| 116 } | 116 } |
| 117 | 117 |
| 118 /* end editing */ | 118 /* end editing */ |
| 119 | 119 |
| 120 html[dir=rtl] list > .folder > .label { | 120 html[dir=rtl] list > .folder > .label { |
| 121 background-image: url("../images/folder_closed_rtl.png"); | 121 background-image: url("chrome://resources/images/folder_closed_rtl.png"); |
| 122 } | 122 } |
| 123 | 123 |
| 124 html[os=mac] list > .folder > .label { | 124 html[os=mac] list > .folder > .label { |
| 125 background-image: url("../images/bookmark_bar_folder_mac.png"); | 125 background-image: url("chrome://resources/images/bookmark_bar_folder_mac.png")
; |
| 126 } | 126 } |
| 127 | 127 |
| 128 html[os=mac] .tree-label { | 128 html[os=mac] .tree-label { |
| 129 background-image: url("../images/bookmark_bar_folder_mac.png"); | 129 background-image: url("chrome://resources/images/bookmark_bar_folder_mac.png")
; |
| 130 } | 130 } |
| 131 | 131 |
| 132 html[os=mac] .tree-row[selected] > .tree-label { | 132 html[os=mac] .tree-row[selected] > .tree-label { |
| 133 background-image: url("../images/bookmark_bar_folder_mac.png"); | 133 background-image: url("chrome://resources/images/bookmark_bar_folder_mac.png")
; |
| 134 } | 134 } |
| 135 | 135 |
| 136 .main { | 136 .main { |
| 137 position: absolute; | 137 position: absolute; |
| 138 display: -webkit-box; | 138 display: -webkit-box; |
| 139 top: 79px; | 139 top: 79px; |
| 140 left: 0; | 140 left: 0; |
| 141 right: 0; | 141 right: 0; |
| 142 bottom: 0; | 142 bottom: 0; |
| 143 } | 143 } |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; | 265 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; |
| 266 padding-right: 11px; | 266 padding-right: 11px; |
| 267 -webkit-margin-start: 10px; | 267 -webkit-margin-start: 10px; |
| 268 } | 268 } |
| 269 | 269 |
| 270 html[dir=rtl] .summary button { | 270 html[dir=rtl] .summary button { |
| 271 background-position: 0% 50%; | 271 background-position: 0% 50%; |
| 272 padding-right: 0; | 272 padding-right: 0; |
| 273 padding-left: 11px; | 273 padding-left: 11px; |
| 274 } | 274 } |
| OLD | NEW |