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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 } | 99 } |
| 100 | 100 |
| 101 /* The bookmark gets a shadow when clicked, but not when the click is on the | 101 /* The bookmark gets a shadow when clicked, but not when the click is on the |
| 102 * close button. */ | 102 * close button. */ |
| 103 .bookmark:active .close-button:not(:active) + .button-frame { | 103 .bookmark:active .close-button:not(:active) + .button-frame { |
| 104 -webkit-box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.2); | 104 -webkit-box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.2); |
| 105 } | 105 } |
| 106 | 106 |
| 107 /* Bookmark Titles ************************************************************/ | 107 /* Bookmark Titles ************************************************************/ |
| 108 | 108 |
| 109 #bookmarks-title-wrapper { | 109 #bookmarks-title-wrapper { |
|
Evan Stade
2011/09/05 01:59:20
might as well fix crbug.com/94968 while we're here
csilv
2011/09/06 05:33:33
Could you clarify, do you mean the same colors (ba
| |
| 110 background: #fff; | 110 background: #fff; |
| 111 background-position: left; | 111 background-position: left; |
| 112 background-repeat: no-repeat; | 112 background-repeat: no-repeat; |
| 113 border-bottom: 1px solid rgba(0, 0, 0, 0.1); | 113 border-bottom: 1px solid rgba(0, 0, 0, 0.1); |
| 114 color: #777; | 114 color: #777; |
| 115 display: -webkit-box; | 115 display: -webkit-box; |
| 116 font-size: 16px; | 116 font-size: 16px; |
| 117 height: 48px; | 117 height: 48px; |
| 118 line-height: 48px; | 118 line-height: 48px; |
| 119 overflow: hidden; | 119 overflow: hidden; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 152 } | 152 } |
| 153 | 153 |
| 154 .bookmark-separator { | 154 .bookmark-separator { |
| 155 background: -webkit-canvas(bookmark-chevron) center center no-repeat; | 155 background: -webkit-canvas(bookmark-chevron) center center no-repeat; |
| 156 border: 0; | 156 border: 0; |
| 157 height: 44px; | 157 height: 44px; |
| 158 margin: 2px 0; | 158 margin: 2px 0; |
| 159 width: 10px; | 159 width: 10px; |
| 160 } | 160 } |
| 161 | 161 |
| 162 .bookmarks-manager-link-container { | 162 #bookmarks-top-link-wrapper { |
| 163 position: absolute; | |
| 164 right: 10px; | |
| 165 text-align: right; | |
|
Evan Stade
2011/09/05 01:59:20
end not right
csilv
2011/09/06 05:33:33
Done.
| |
| 166 top: 10px; | |
| 167 } | |
| 168 | |
| 169 #bookmarks-bottom-link-wrapper { | |
| 163 height: 40px; | 170 height: 40px; |
| 171 /* Matches .tile-page-content padding-right - 10px */ | |
| 172 margin-right: -70px; | |
| 173 text-align: right; | |
|
Evan Stade
2011/09/05 01:59:20
also need to make this ok for RTL (I think you can
csilv
2011/09/06 05:33:33
Done.
| |
| 164 } | 174 } |
| 175 | |
| OLD | NEW |