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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 border-bottom: 1px solid rgba(0, 0, 0, 0.1); | 103 border-bottom: 1px solid rgba(0, 0, 0, 0.1); |
104 color: #777; | 104 color: #777; |
105 display: -webkit-box; | 105 display: -webkit-box; |
106 font-size: 16px; | 106 font-size: 16px; |
107 height: 48px; | 107 height: 48px; |
108 line-height: 48px; | 108 line-height: 48px; |
109 overflow: hidden; | 109 overflow: hidden; |
110 white-space: nowrap; | 110 white-space: nowrap; |
111 } | 111 } |
112 | 112 |
| 113 /* Add padding to tile page content to adjust for title wrapper. */ |
| 114 .bookmarks-page .tile-page-content { |
| 115 padding-bottom: 48px; |
| 116 } |
| 117 |
113 #bookmarks-title-wrapper .title-crumb { | 118 #bookmarks-title-wrapper .title-crumb { |
114 cursor: pointer; | 119 cursor: pointer; |
115 margin: 0 25px; | 120 margin: 0 25px; |
116 } | 121 } |
117 | 122 |
118 #bookmarks-title-wrapper .title-crumb-active { | 123 #bookmarks-title-wrapper .title-crumb-active { |
119 color: #7f7f7f; | 124 color: #7f7f7f; |
120 cursor: default; | 125 cursor: default; |
121 font-weight: bold; | 126 font-weight: bold; |
122 margin-right: 0; | 127 margin-right: 0; |
(...skipping 18 matching lines...) Expand all Loading... |
141 -webkit-box-flex: 1; | 146 -webkit-box-flex: 1; |
142 } | 147 } |
143 | 148 |
144 .bookmark-separator { | 149 .bookmark-separator { |
145 background: -webkit-canvas(bookmark-chevron) center center no-repeat; | 150 background: -webkit-canvas(bookmark-chevron) center center no-repeat; |
146 border: 0; | 151 border: 0; |
147 height: 44px; | 152 height: 44px; |
148 margin: 2px 0; | 153 margin: 2px 0; |
149 width: 10px; | 154 width: 10px; |
150 } | 155 } |
OLD | NEW |