| OLD | NEW |
| (Empty) |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 #images-grid { | |
| 6 -webkit-user-drag: none; | |
| 7 -webkit-user-select: none; | |
| 8 margin: 10px; | |
| 9 outline: none; | |
| 10 padding: 10px; | |
| 11 width: 600px; | |
| 12 } | |
| 13 | |
| 14 #images-grid * { | |
| 15 margin: 0; | |
| 16 padding: 0; | |
| 17 } | |
| 18 | |
| 19 #images-grid img { | |
| 20 background-color: white; | |
| 21 height: 64px; | |
| 22 vertical-align: middle; | |
| 23 width: 64px; | |
| 24 } | |
| 25 | |
| 26 #images-grid [role=listitem] { | |
| 27 border: 1px solid rgba(0, 0, 0, 0.15); | |
| 28 border-radius: 4px; | |
| 29 display: inline-block; | |
| 30 margin: 10px; | |
| 31 padding: 3px; | |
| 32 } | |
| 33 | |
| 34 #images-grid [selected] { | |
| 35 border: 2px solid rgb(0, 102, 204); | |
| 36 padding: 2px; | |
| 37 } | |
| OLD | NEW |