OLD | NEW |
---|---|
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 paper-button[raised].colored { | 5 paper-button[raised].colored { |
6 background: rgb(66, 133, 244); | 6 background: rgb(66, 133, 244); |
7 color: white; | 7 color: white; |
8 } | 8 } |
9 | 9 |
10 #header { | 10 #header { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 | 43 |
44 .state-table tr td { | 44 .state-table tr td { |
45 border: 1px solid rgb(220, 220, 220); | 45 border: 1px solid rgb(220, 220, 220); |
46 font-size: 13px; | 46 font-size: 13px; |
47 } | 47 } |
48 | 48 |
49 .state-table-header { | 49 .state-table-header { |
50 font-weight: bold; | 50 font-weight: bold; |
51 } | 51 } |
52 | 52 |
53 .state-table-icon-cell { | |
54 display: flex; | |
michaelpg
2015/03/03 02:52:04
I don't know why exactly but this affects the flow
stevenjb
2015/03/03 17:55:28
Good catch. It seems that display: flex does not p
| |
55 justify-content: center; | |
56 } | |
57 | |
53 .state-table-expand-button-cell { | 58 .state-table-expand-button-cell { |
54 text-align: center; | 59 text-align: center; |
55 } | 60 } |
56 | 61 |
57 .state-table-expand-button { | 62 .state-table-expand-button { |
58 background-color: #fff; | 63 background-color: #fff; |
59 border: none; | 64 border: none; |
60 height: 20px; | 65 height: 20px; |
61 margin: 0; | 66 margin: 0; |
62 outline: none; | 67 outline: none; |
63 padding: 0; | 68 padding: 0; |
64 width: 20px; | 69 width: 20px; |
65 } | 70 } |
66 | 71 |
67 .state-table-expanded-cell { | 72 .state-table-expanded-cell { |
68 white-space: pre-wrap; | 73 white-space: pre-wrap; |
69 } | 74 } |
70 | 75 |
71 .state-table cr-network-icon { | 76 .state-table cr-network-icon { |
72 height: 25px; | 77 height: 25px; |
73 width: 25px; | 78 width: 25px; |
74 } | 79 } |
75 | 80 |
76 #advanced-options { | 81 #advanced-options { |
77 margin-top: 10px; | 82 margin-top: 10px; |
78 } | 83 } |
OLD | NEW |