OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .responsive-design { | 7 .responsive-design { |
8 overflow: hidden; | 8 overflow: hidden; |
9 position: relative; | 9 position: relative; |
10 } | 10 } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 .responsive-design-toolbar input[type='text'] { | 95 .responsive-design-toolbar input[type='text'] { |
96 color: rgb(255, 156, 0); | 96 color: rgb(255, 156, 0); |
97 text-align: center; | 97 text-align: center; |
98 background-color: transparent; | 98 background-color: transparent; |
99 border: none; | 99 border: none; |
100 margin: 0 2px; | 100 margin: 0 2px; |
101 padding: 3px; | 101 padding: 3px; |
102 } | 102 } |
103 | 103 |
| 104 .responsive-design-toolbar input[type='text']:disabled { |
| 105 opacity: 0.6; |
| 106 } |
| 107 |
104 .responsive-design-toolbar input[type='checkbox'] { | 108 .responsive-design-toolbar input[type='checkbox'] { |
105 background: none; | 109 background: none; |
106 margin: 0; | 110 margin: 0; |
107 margin-right: 3px; | 111 margin-right: 5px; |
108 } | 112 } |
109 | 113 |
110 .responsive-design-toolbar input[type='checkbox']:after { | 114 .responsive-design-toolbar input[type='checkbox']:after { |
111 content:'\2714'; | 115 content:'\2713'; |
112 color: transparent; | 116 color: transparent; |
113 line-height: 10px; | 117 line-height: 10px; |
114 position: absolute; | 118 position: absolute; |
115 cursor: pointer; | 119 cursor: pointer; |
116 background: rgb(64, 64, 64); | 120 background: rgb(64, 64, 64); |
117 border: 1px solid hsla(41, 100%, 47%, 0.6); | 121 border: 1px solid hsla(41, 100%, 47%, 0.6); |
118 } | 122 } |
119 | 123 |
120 .responsive-design-toolbar input[type='checkbox']:checked:after { | 124 .responsive-design-toolbar input[type='checkbox']:checked:after { |
121 color: hsl(41, 100%, 47%); | 125 color: hsl(41, 100%, 47%); |
(...skipping 11 matching lines...) Expand all Loading... |
133 .responsive-design-toolbar input:focus { | 137 .responsive-design-toolbar input:focus { |
134 background-color: rgb(102, 102, 102) | 138 background-color: rgb(102, 102, 102) |
135 } | 139 } |
136 | 140 |
137 .responsive-design-toolbar button { | 141 .responsive-design-toolbar button { |
138 color: rgb(255, 156, 0); | 142 color: rgb(255, 156, 0); |
139 background-color: rgb(64, 64, 64); | 143 background-color: rgb(64, 64, 64); |
140 border: none; | 144 border: none; |
141 cursor: pointer; | 145 cursor: pointer; |
142 } | 146 } |
OLD | NEW |