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 #sync-search-query { | 5 #sync-search-query { |
6 width: 20em; | 6 width: 20em; |
7 } | 7 } |
8 | 8 |
9 #sync-search-query[error] { | |
10 background-color: #FAA; | |
Andrew T Wilson (Slow)
2012/04/06 20:30:57
Apparently css style guide says we should use rgb(
rlarocque
2012/04/07 00:58:04
Done.
| |
11 } | |
12 | |
9 #sync-search-status { | 13 #sync-search-status { |
10 color: #333; | 14 color: #333; |
Andrew T Wilson (Slow)
2012/04/06 20:30:57
Amusingly, this one is OK because you can use #RGB
rlarocque
2012/04/07 00:58:04
I'll change it anyway for consistency.
| |
11 font-style: italic; | 15 font-style: italic; |
12 } | 16 } |
13 | 17 |
14 #sync-results-container { | 18 #sync-results-container { |
15 display: -webkit-box; | 19 display: -webkit-box; |
16 /* Should be > #sync-page's min-height. */ | 20 /* Should be > #sync-page's min-height. */ |
17 /* TODO(akalin): Find a less hacky way to do this. */ | 21 /* TODO(akalin): Find a less hacky way to do this. */ |
18 height: 750px; | 22 height: 750px; |
19 } | 23 } |
20 | 24 |
(...skipping 20 matching lines...) Expand all Loading... | |
41 } | 45 } |
42 | 46 |
43 #sync-result-details-container { | 47 #sync-result-details-container { |
44 height: 100%; | 48 height: 100%; |
45 overflow: auto; | 49 overflow: auto; |
46 -webkit-box-flex: 1; | 50 -webkit-box-flex: 1; |
47 | 51 |
48 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */ | 52 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */ |
49 width: 100%; | 53 width: 100%; |
50 } | 54 } |
OLD | NEW |