Chromium Code Reviews| 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 { |
| 11 margin: 5px; | 11 margin: 5px; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #header a { | 14 #header a { |
| 15 padding: 0 4px; | 15 padding: 0 4px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 #header cr-network-icon { | 18 #header cr-network-icon { |
| 19 height: 40px; | 19 height: 40px; |
| 20 width: 40px; | 20 width: 40px; |
| 21 } | 21 } |
| 22 | 22 |
| 23 #default-network { | 23 #default-network { |
| 24 align-items: center; | 24 align-items: center; |
|
michaelpg
2015/08/10 07:35:03
this doesn't do anything now (I think)
stevenjb
2015/08/10 19:19:47
Removed the div.
| |
| 25 display: flex; | 25 display: flex; |
| 26 flex-direction: row; | 26 flex-direction: row; |
| 27 padding: 4px; | 27 padding: 5px; |
| 28 } | |
| 29 | |
| 30 #default-network-text { | |
| 31 -webkit-padding-start: 8px; | |
| 32 font-size: 14px; | |
| 33 font-weight: bold; | |
| 34 } | 28 } |
| 35 | 29 |
| 36 #refresh { | 30 #refresh { |
| 37 margin: 4px; | 31 margin-top: 10px; |
| 32 padding: 5px; | |
| 38 } | 33 } |
| 39 | 34 |
| 40 .state-table { | 35 .state-table { |
| 41 border-collapse: collapse; | 36 border-collapse: collapse; |
| 42 } | 37 } |
| 43 | 38 |
| 44 .state-table tr td { | 39 .state-table tr td { |
| 45 border: 1px solid rgb(220, 220, 220); | 40 border: 1px solid rgb(220, 220, 220); |
| 46 font-size: 13px; | 41 font-size: 13px; |
| 47 } | 42 } |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 69 } | 64 } |
| 70 | 65 |
| 71 .state-table cr-network-icon { | 66 .state-table cr-network-icon { |
| 72 height: 25px; | 67 height: 25px; |
| 73 width: 25px; | 68 width: 25px; |
| 74 } | 69 } |
| 75 | 70 |
| 76 #advanced-options { | 71 #advanced-options { |
| 77 margin-top: 10px; | 72 margin-top: 10px; |
| 78 } | 73 } |
| OLD | NEW |