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 input:focus, | 5 input:focus, |
6 button:focus { | 6 button:focus { |
7 outline-color: rgb(77, 144, 254); | 7 outline-color: rgb(77, 144, 254); |
8 } | 8 } |
9 | 9 |
10 .action-choice { | 10 .action-choice { |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 -webkit-user-drag: none; | 114 -webkit-user-drag: none; |
115 position: absolute; | 115 position: absolute; |
116 } | 116 } |
117 | 117 |
118 .counter { | 118 .counter { |
119 color: #808080; | 119 color: #808080; |
120 margin: 5px 3px; | 120 margin: 5px 3px; |
121 width: 100%; | 121 width: 100%; |
122 } | 122 } |
123 | 123 |
124 .footer { | |
125 -webkit-box-orient: horizontal; | |
126 -webkit-box-pack: end; | |
127 bottom: 0; | |
128 display: -webkit-box; | |
129 left: 0; | |
130 position: absolute; | |
131 right: 0; | |
132 } | |
133 | |
134 .footer button { | |
135 height: 27px; | |
136 margin-left: 10px; | |
137 min-width: 80px; | |
138 } | |
139 | |
140 .choices { | 124 .choices { |
141 width: 100%; | 125 width: 100%; |
142 } | 126 } |
143 | 127 |
144 /* Padding counterweights negative margins of items, thus eliminating scroll | 128 /* Padding counterweights negative margins of items, thus eliminating scroll |
145 bar when it's not needed. Max height is set to fit 8 items before showing | 129 bar when it's not needed. Max height is set to fit 8 items before showing |
146 scroll bar. */ | 130 scroll bar. */ |
147 #actions-list { | 131 #actions-list { |
148 display: block; | 132 display: block; |
149 max-height: 328px; | 133 max-height: 328px; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 background-image: -webkit-image-set( | 181 background-image: -webkit-image-set( |
198 url('../images/icon32.png') 1x, | 182 url('../images/icon32.png') 1x, |
199 url('../images/icon64.png') 2x); | 183 url('../images/icon64.png') 2x); |
200 } | 184 } |
201 | 185 |
202 #actions-list > li > div.watch-single-video { | 186 #actions-list > li > div.watch-single-video { |
203 background-image: -webkit-image-set( | 187 background-image: -webkit-image-set( |
204 url('../images/media/watch.png') 1x, | 188 url('../images/media/watch.png') 1x, |
205 url('../images/media/2x/watch.png') 2x); | 189 url('../images/media/2x/watch.png') 2x); |
206 } | 190 } |
OLD | NEW |