| OLD | NEW |
| (Empty) |
| 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 | |
| 3 found in the LICENSE file. */ | |
| 4 | |
| 5 paper-input { | |
| 6 display: inline-block; | |
| 7 margin: 0 15px; | |
| 8 width: 200px; | |
| 9 } | |
| 10 | |
| 11 #editModal paper-checkbox { | |
| 12 -webkit-margin-start: 15px; | |
| 13 } | |
| 14 | |
| 15 paper-dialog { | |
| 16 height: 90%; | |
| 17 overflow-y: scroll; | |
| 18 width: 40%; | |
| 19 } | |
| 20 | |
| 21 paper-radio-button { | |
| 22 display: inline-block; | |
| 23 } | |
| 24 | |
| 25 .element-label { | |
| 26 -webkit-padding-start: 0; | |
| 27 color: rgb(82, 101, 162); | |
| 28 display: block; | |
| 29 font-size: 24px; | |
| 30 font-weight: normal; | |
| 31 height: 80px; | |
| 32 letter-spacing: 0.05em; | |
| 33 line-height: 80px; | |
| 34 } | |
| 35 | |
| 36 .form-label { | |
| 37 display: block; | |
| 38 } | |
| 39 | |
| 40 .form-field-section { | |
| 41 margin-top: 30px; | |
| 42 } | |
| 43 | |
| 44 .form-field-section:first-of-type { | |
| 45 margin-top: 0; | |
| 46 } | |
| 47 | |
| 48 .icon-cell { | |
| 49 text-align: center; | |
| 50 width: 45%; | |
| 51 } | |
| 52 | |
| 53 .icon-cell paper-icon-button { | |
| 54 color: rgb(82, 101, 162); | |
| 55 } | |
| 56 | |
| 57 .devices-table { | |
| 58 border-collapse: collapse; | |
| 59 padding: 20px 0; | |
| 60 } | |
| 61 | |
| 62 .devices-table paper-icon-button[disabled] { | |
| 63 color: rgb(150, 194, 244); | |
| 64 } | |
| 65 | |
| 66 .devices-table.custom { | |
| 67 margin-top: 40px; | |
| 68 } | |
| 69 | |
| 70 .devices-table .icon-cell { | |
| 71 width: 45%; | |
| 72 } | |
| 73 | |
| 74 .devices-table .center-cell-label { | |
| 75 text-align: center; | |
| 76 } | |
| 77 | |
| 78 .devices-table .control-cell { | |
| 79 text-align: center; | |
| 80 } | |
| 81 | |
| 82 .devices-table td { | |
| 83 padding: 10px; | |
| 84 } | |
| 85 | |
| 86 .devices-table td.centered-cell-label { | |
| 87 text-align: center; | |
| 88 } | |
| 89 | |
| 90 .bold { | |
| 91 font-weight: bold; | |
| 92 } | |
| 93 | |
| 94 .devices-table tr.table-section-header { | |
| 95 font-weight: bold; | |
| 96 } | |
| 97 | |
| 98 .devices-table tbody:first-of-type::before { | |
| 99 height: 0; | |
| 100 } | |
| 101 | |
| 102 .devices-table tbody:last-of-type::before { | |
| 103 content: ''; | |
| 104 display: block; | |
| 105 height: 30px; | |
| 106 } | |
| 107 | |
| 108 .devices-table tbody tr { | |
| 109 border-bottom: 1px solid #dadada; | |
| 110 } | |
| 111 | |
| 112 .devices-table tbody tr:last-of-type { | |
| 113 border-bottom: 0; | |
| 114 } | |
| 115 | |
| 116 .add-device-container { | |
| 117 margin: 15px; | |
| 118 text-align: right; | |
| 119 } | |
| 120 | |
| 121 .add-device-container paper-button { | |
| 122 color: rgb(82, 101, 162); | |
| 123 width: 200px; | |
| 124 } | |
| 125 | |
| 126 [hidden] { | |
| 127 display: none !important; | |
| 128 } | |
| OLD | NEW |