Chromium Code Reviews| 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 bottom: 31px; |
| 50 height: 3px; | 50 height: 3px; |
| 51 opacity: 0.5; | |
| 52 position: absolute; | 51 position: absolute; |
| 53 width: 100%; | 52 width: 100%; |
| 54 z-index: 100; | 53 z-index: 100; |
| 55 } | 54 } |
| 56 | 55 |
| 57 .bookmark .title { | 56 .bookmark .title { |
| 58 cursor: pointer; | 57 cursor: pointer; |
| 59 display: block; | 58 display: block; |
| 60 height: 23px; | 59 height: 23px; |
| 61 line-height: 23px; | |
| 62 overflow: hidden; | 60 overflow: hidden; |
| 63 padding-top: 10px; | 61 padding-top: 8px; |
| 64 text-align: center; | 62 text-align: center; |
| 65 text-decoration: none; | 63 text-decoration: none; |
| 66 text-overflow: ellipsis; | 64 text-overflow: ellipsis; |
|
Evan Stade
2011/08/30 01:06:24
also get rid of underline?
csilv
2011/08/30 01:29:04
That's already there (text-decoration: none).
| |
| 67 white-space: nowrap; | 65 white-space: nowrap; |
| 68 } | 66 } |
| 69 | 67 |
| 70 .bookmark .button { | 68 .bookmark .button { |
| 71 cursor: pointer; | 69 cursor: pointer; |
| 72 background-color: rgba(0, 0, 0, 0.15); | 70 background-color: rgba(0, 0, 0, 0.15); |
| 73 border: 1px solid transparent; | 71 border: 1px solid transparent; |
| 74 border-radius: 5px; | 72 border-radius: 5px; |
| 75 bottom: 70px; | 73 bottom: 70px; |
| 76 position: relative; | 74 position: relative; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 154 background: -webkit-canvas(bookmark-chevron) center center no-repeat; | 152 background: -webkit-canvas(bookmark-chevron) center center no-repeat; |
| 155 border: 0; | 153 border: 0; |
| 156 height: 44px; | 154 height: 44px; |
| 157 margin: 2px 0; | 155 margin: 2px 0; |
| 158 width: 10px; | 156 width: 10px; |
| 159 } | 157 } |
| 160 | 158 |
| 161 .bookmarks-manager-link-container { | 159 .bookmarks-manager-link-container { |
| 162 height: 40px; | 160 height: 40px; |
| 163 } | 161 } |
| OLD | NEW |