OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 General Styles | 6 General Styles |
7 ----------------------------------------------------------------------------- */ | 7 ----------------------------------------------------------------------------- */ |
8 | 8 |
9 html { | 9 html { |
10 /* It's necessary to put this here instead of in body in order to get the | 10 /* It's necessary to put this here instead of in body in order to get the |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 vertical-align: top; | 65 vertical-align: top; |
66 } | 66 } |
67 | 67 |
68 .link-button { | 68 .link-button { |
69 -webkit-margin-start: 0.5em; | 69 -webkit-margin-start: 0.5em; |
70 } | 70 } |
71 | 71 |
72 #bottom-panel { | 72 #bottom-panel { |
73 -webkit-transition: opacity 200ms; | 73 -webkit-transition: opacity 200ms; |
74 position: absolute; | 74 position: absolute; |
75 top: 364px; | 75 top: 300px; |
76 visibility: hidden; | 76 visibility: hidden; |
77 width: 100%; | 77 width: 100%; |
78 } | 78 } |
79 | 79 |
80 .hide-bottom-panel { | 80 .hide-bottom-panel { |
81 opacity: 0; | 81 opacity: 0; |
82 } | 82 } |
83 | 83 |
84 #card-slider-frame { | 84 #card-slider-frame { |
85 height: 92px; | 85 height: 100px; |
86 overflow: hidden; | 86 overflow: hidden; |
87 } | 87 } |
88 | 88 |
89 #page-list { | 89 #page-list { |
90 display: -webkit-box; | 90 display: -webkit-box; |
91 height: 100%; | 91 height: 100%; |
92 position: static; | 92 position: static; |
93 } | 93 } |
94 | 94 |
95 #bottom-panel-header, | 95 #bottom-panel-header, |
96 #bottom-panel-footer, | 96 #bottom-panel-footer, |
97 #bottom-panel-toolbar { | 97 #bottom-panel-toolbar { |
98 margin: 10px auto; | 98 margin: 0 auto; |
99 text-align: center; | 99 text-align: center; |
100 } | 100 } |
101 | 101 |
102 #bottom-panel-header { | 102 #bottom-panel-header { |
103 margin-bottom: 20px; | 103 padding: 10px 0 20px; |
104 } | 104 } |
105 | 105 |
106 #bottom-panel-toolbar { | 106 #bottom-panel-toolbar { |
107 height: 18px; | 107 height: 18px; |
108 margin-top: 8px; | 108 padding: 10px 0; |
| 109 } |
| 110 |
| 111 #bookmark-bar-spacer { |
| 112 height: 48px; |
109 } | 113 } |
110 | 114 |
111 #promo-bubble-anchor { | 115 #promo-bubble-anchor { |
112 bottom: 50px; | 116 bottom: 50px; |
113 height: 10px; | 117 height: 10px; |
114 left: 0; | 118 left: 0; |
115 position: absolute; | 119 position: absolute; |
116 width: 90px; | 120 width: 90px; |
117 } | 121 } |
118 | 122 |
(...skipping 25 matching lines...) Expand all Loading... |
144 text-align: right; | 148 text-align: right; |
145 } | 149 } |
146 | 150 |
147 #attribution > span { | 151 #attribution > span { |
148 display: block; | 152 display: block; |
149 } | 153 } |
150 | 154 |
151 .starting-up * { | 155 .starting-up * { |
152 -webkit-transition: none !important; | 156 -webkit-transition: none !important; |
153 } | 157 } |
OLD | NEW |