OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 /* TODO: Need to discuss with NTP folks before we remove font-family from the | 5 /* TODO: Need to discuss with NTP folks before we remove font-family from the |
6 * body tag. */ | 6 * body tag. */ |
7 body { | 7 body { |
8 background-attachment: fixed !important; | 8 background-attachment: fixed !important; |
9 background-color: white; | 9 background-color: white; |
10 cursor: default; | 10 cursor: default; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 background: #eee; | 55 background: #eee; |
56 } | 56 } |
57 | 57 |
58 #fakebox { | 58 #fakebox { |
59 -webkit-transform: translate3d(0, 0, 0); | 59 -webkit-transform: translate3d(0, 0, 0); |
60 -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear; | 60 -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear; |
61 background-color: #fff; | 61 background-color: #fff; |
62 border: 1px solid rgb(185, 185, 185); | 62 border: 1px solid rgb(185, 185, 185); |
63 border-radius: 1px; | 63 border-radius: 1px; |
64 border-top-color: rgb(160, 160, 160); | 64 border-top-color: rgb(160, 160, 160); |
65 box-sizing: border-box; | |
66 cursor: text; | 65 cursor: text; |
67 font-size: 18px; | 66 font-size: 18px; |
68 height: 36px; | 67 height: 36px; |
69 line-height: 36px; | 68 line-height: 36px; |
70 max-width: 672px; | 69 max-width: 672px; |
71 position: relative; | 70 position: relative; |
72 width: 300px; | 71 /* #fakebox width (here and below) should be 2px less than #mv-tiles |
| 72 to account for its border. */ |
| 73 width: 298px; |
73 } | 74 } |
74 | 75 |
75 #fakebox:hover { | 76 #fakebox:hover { |
76 border: 1px solid rgb(169, 169, 169); | 77 border: 1px solid rgb(169, 169, 169); |
77 border-top-color: rgb(144, 144, 144); | 78 border-top-color: rgb(144, 144, 144); |
78 } | 79 } |
79 | 80 |
80 body.fakebox-focused #fakebox { | 81 body.fakebox-focused #fakebox { |
81 border: 1px solid rgb(77, 144, 254); | 82 border: 1px solid rgb(77, 144, 254); |
82 } | 83 } |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 html[dir=rtl] #recent-tabs { | 295 html[dir=rtl] #recent-tabs { |
295 left: 8px; | 296 left: 8px; |
296 right: auto; | 297 right: auto; |
297 } | 298 } |
298 | 299 |
299 #mv-single { | 300 #mv-single { |
300 border: none; | 301 border: none; |
301 height: 100%; | 302 height: 100%; |
302 width: 100%; | 303 width: 100%; |
303 } | 304 } |
OLD | NEW |