| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2013 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 body { | 7 body { |
| 8 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
| 9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 10 background-color: #0b0b0b; | 10 background-color: #0b0b0b; |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 } | 245 } |
| 246 | 246 |
| 247 .reload { | 247 .reload { |
| 248 background-image: url('images/reload.svg'); | 248 background-image: url('images/reload.svg'); |
| 249 } | 249 } |
| 250 | 250 |
| 251 .right { | 251 .right { |
| 252 background-image: url('images/right.svg'); | 252 background-image: url('images/right.svg'); |
| 253 } | 253 } |
| 254 | 254 |
| 255 .search{ |
| 256 background-image: url('images/search.svg'); |
| 257 } |
| 258 |
| 255 .shutdown { | 259 .shutdown { |
| 256 background-image: url('images/shutdown.svg'); | 260 background-image: url('images/shutdown.svg'); |
| 257 } | 261 } |
| 258 | 262 |
| 259 .up { | 263 .up { |
| 260 background-image: url('images/up.svg'); | 264 background-image: url('images/up.svg'); |
| 261 } | 265 } |
| 262 | 266 |
| 263 .volume-down { | 267 .volume-down { |
| 264 background-image: url('images/volume-down.svg'); | 268 background-image: url('images/volume-down.svg'); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 275 .brightness-down, | 279 .brightness-down, |
| 276 .brightness-up, | 280 .brightness-up, |
| 277 .change-window, | 281 .change-window, |
| 278 .down, | 282 .down, |
| 279 .forward, | 283 .forward, |
| 280 .fullscreen, | 284 .fullscreen, |
| 281 .left, | 285 .left, |
| 282 .mute, | 286 .mute, |
| 283 .reload, | 287 .reload, |
| 284 .right, | 288 .right, |
| 289 .search, |
| 285 .shutdown, | 290 .shutdown, |
| 286 .up, | 291 .up, |
| 287 .volume-down, | 292 .volume-down, |
| 288 .volume-up { | 293 .volume-up { |
| 289 background-size:50%; | 294 background-size:50%; |
| 290 } | 295 } |
| OLD | NEW |