| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 border-top: 2px solid #A9A9AF !important; | 43 border-top: 2px solid #A9A9AF !important; |
| 44 /* Do not use box shadow until performance improves | 44 /* Do not use box shadow until performance improves |
| 45 * http://code.google.com/p/chromium/issues/detail?id=99045 | 45 * http://code.google.com/p/chromium/issues/detail?id=99045 |
| 46 box-shadow: 0px 0px 15px #fff; | 46 box-shadow: 0px 0px 15px #fff; |
| 47 */ | 47 */ |
| 48 } | 48 } |
| 49 | 49 |
| 50 .at, | 50 .at, |
| 51 .com, | 51 .com, |
| 52 .comma, | 52 .comma, |
| 53 .hide, | |
| 54 .mic, | |
| 55 .period, | 53 .period, |
| 56 .tab { | 54 .tab { |
| 57 -webkit-box-flex: 1.3 !important; | 55 -webkit-box-flex: 1.3 !important; |
| 58 } | 56 } |
| 59 | 57 |
| 60 .return { | 58 .return { |
| 61 -webkit-box-flex: 2.1 !important; | 59 -webkit-box-flex: 2.1 !important; |
| 62 } | 60 } |
| 63 | 61 |
| 62 .mic { |
| 63 -webkit-box-flex: 1.5 !important; |
| 64 } |
| 65 |
| 64 .symbol { | 66 .symbol { |
| 65 -webkit-box-flex: 1.5 !important; | 67 -webkit-box-flex: 1.25 !important; |
| 66 } | 68 } |
| 67 | 69 |
| 68 .backspace { | 70 .backspace { |
| 69 -webkit-box-flex: 1.7 !important; | 71 -webkit-box-flex: 1.7 !important; |
| 70 } | 72 } |
| 71 | 73 |
| 72 .left-shift, | 74 .left-shift, |
| 73 .left-more { | 75 .left-more { |
| 74 -webkit-box-flex: 1.8 !important; | 76 -webkit-box-flex: 1.8 !important; |
| 75 } | 77 } |
| 76 | 78 |
| 77 .right-shift, | 79 .right-shift, |
| 78 .right-more { | 80 .right-more { |
| 79 -webkit-box-flex: 1.8 !important; | 81 -webkit-box-flex: 1.8 !important; |
| 80 } | 82 } |
| 81 | 83 |
| 82 .space { | 84 .space { |
| 83 -webkit-box-flex: 4.8 !important; | 85 -webkit-box-flex: 6.0 !important; |
| 84 } | 86 } |
| 85 | 87 |
| 86 .bar { | 88 .bar { |
| 87 -webkit-box-flex: 0.6 !important; | 89 -webkit-box-flex: 0.6 !important; |
| 88 } | 90 } |
| 89 | 91 |
| 90 .backspace, | 92 .backspace, |
| 91 .dotcom, | 93 .dotcom, |
| 92 .left-more, | 94 .left-more, |
| 93 .left-shift, | 95 .left-shift, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 104 background-image: url('images/mic.svg'); | 106 background-image: url('images/mic.svg'); |
| 105 } | 107 } |
| 106 | 108 |
| 107 .audio .mic { | 109 .audio .mic { |
| 108 background-image: url('images/mic-green.svg'); | 110 background-image: url('images/mic-green.svg'); |
| 109 } | 111 } |
| 110 | 112 |
| 111 .hide { | 113 .hide { |
| 112 background-image: url('images/keyboard.svg'); | 114 background-image: url('images/keyboard.svg'); |
| 113 } | 115 } |
| OLD | NEW |