| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
| 6 /* Bookmark Tiles ************************************************************/ | 6 /* Bookmark Tiles ************************************************************/ |
| 7 | 7 |
| 8 .bookmark { | 8 .bookmark { |
| 9 display: -webkit-box; | 9 display: -webkit-box; |
| 10 position: absolute; | 10 position: absolute; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 -webkit-transition-delay: 0.5s; | 39 -webkit-transition-delay: 0.5s; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .bookmark .favicon { | 42 .bookmark .favicon { |
| 43 background: no-repeat 5% 90%; | 43 background: no-repeat 5% 90%; |
| 44 } | 44 } |
| 45 | 45 |
| 46 .bookmark .color-stripe { | 46 .bookmark .color-stripe { |
| 47 border-bottom-left-radius: 3px 3px; | 47 border-bottom-left-radius: 3px 3px; |
| 48 border-bottom-right-radius: 3px 3px; | 48 border-bottom-right-radius: 3px 3px; |
| 49 bottom: 33px; | 49 /* Matches height of title. */ |
| 50 bottom: 23px; |
| 50 height: 3px; | 51 height: 3px; |
| 51 opacity: 0.5; | 52 /* Matches padding-top of the title. */ |
| 53 margin-bottom: 8px; |
| 52 position: absolute; | 54 position: absolute; |
| 53 width: 100%; | 55 width: 100%; |
| 54 z-index: 100; | 56 z-index: 100; |
| 55 } | 57 } |
| 56 | 58 |
| 57 .bookmark .title { | 59 .bookmark .title { |
| 58 cursor: pointer; | 60 cursor: pointer; |
| 59 display: block; | 61 display: block; |
| 60 height: 23px; | 62 height: 23px; |
| 61 line-height: 23px; | |
| 62 overflow: hidden; | 63 overflow: hidden; |
| 63 padding-top: 10px; | 64 padding-top: 8px; |
| 64 text-align: center; | 65 text-align: center; |
| 65 text-decoration: none; | 66 text-decoration: none; |
| 66 text-overflow: ellipsis; | 67 text-overflow: ellipsis; |
| 67 white-space: nowrap; | 68 white-space: nowrap; |
| 68 } | 69 } |
| 69 | 70 |
| 70 .bookmark .button { | 71 .bookmark .button { |
| 71 cursor: pointer; | 72 cursor: pointer; |
| 72 background-color: rgba(0, 0, 0, 0.15); | 73 background-color: rgba(0, 0, 0, 0.15); |
| 73 border: 1px solid transparent; | 74 border: 1px solid transparent; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 background: -webkit-canvas(bookmark-chevron) center center no-repeat; | 155 background: -webkit-canvas(bookmark-chevron) center center no-repeat; |
| 155 border: 0; | 156 border: 0; |
| 156 height: 44px; | 157 height: 44px; |
| 157 margin: 2px 0; | 158 margin: 2px 0; |
| 158 width: 10px; | 159 width: 10px; |
| 159 } | 160 } |
| 160 | 161 |
| 161 .bookmarks-manager-link-container { | 162 .bookmarks-manager-link-container { |
| 162 height: 40px; | 163 height: 40px; |
| 163 } | 164 } |
| OLD | NEW |