| OLD | NEW |
| (Empty) | |
| 1 .emoji { |
| 2 font-family: 'Noto Emoji', Roboto2, Roboto, sans-serif; |
| 3 } |
| 4 |
| 5 .inputview-container { |
| 6 width:1240px; |
| 7 height: 323px; |
| 8 cursor: default; |
| 9 /* background-color: rgb(236, 239, 241);*/ |
| 10 -webkit-user-select: none; |
| 11 font-family: Roboto2, Roboto, 'Noto Sans', sans-serif; |
| 12 /* background-color: rgb(50,50,75);*/ |
| 13 float:left; |
| 14 } |
| 15 |
| 16 .inputview-layoutview { |
| 17 position: relative; |
| 18 background-color: rgb(71, 71, 71); |
| 19 border: 2px solid gray; |
| 20 border-radius: 10px; |
| 21 display: inline-block; |
| 22 overflow: hidden; |
| 23 font-size: 0; |
| 24 padding: 32px; |
| 25 float:left; |
| 26 } |
| 27 |
| 28 .inputview-spacerview { |
| 29 position: relative; |
| 30 display: inline-block; |
| 31 overflow: hidden; |
| 32 font-size: 0; |
| 33 padding: 32px; |
| 34 float: left; |
| 35 } |
| 36 |
| 37 |
| 38 .inputview-skv { |
| 39 display: inline-block; |
| 40 overflow: hidden; |
| 41 padding: 3px 2px; |
| 42 box-sizing: border-box; |
| 43 } |
| 44 |
| 45 .inputview-sk { |
| 46 width: 100%; |
| 47 height: 100%; |
| 48 position: relative; |
| 49 display: block; |
| 50 /*background-color: rgb(236, 239, 241);*/ |
| 51 background-color: rgb(71, 71, 71); |
| 52 border-radius: 5px |
| 53 } |
| 54 |
| 55 .inputview-sk:hover { |
| 56 background-color: rgb(110, 112, 114); |
| 57 } |
| 58 |
| 59 .inputview-sk:active { |
| 60 background-color: rgb(90, 93, 95); |
| 61 } |
| 62 |
| 63 .inputview-sk-spacer:hover { |
| 64 background-color: inherit; |
| 65 } |
| 66 |
| 67 .inputview-ch { |
| 68 color: rgba(236, 236, 236, 0.8); |
| 69 display: inline-block; |
| 70 font-size: 30px; |
| 71 text-align: center; |
| 72 width: 100%; |
| 73 position: absolute; |
| 74 top: 50%; |
| 75 transform: translate(0, -50%); |
| 76 } |
| 77 |
| 78 .inputview-sk-1 .inputview-ch { |
| 79 display: block; |
| 80 } |
| 81 |
| 82 .inputview-level { |
| 83 display: none; |
| 84 } |
| 85 |
| 86 .inputview-active-level-0 .inputview-level-0, |
| 87 .inputview-active-level-1 .inputview-level-1, |
| 88 .inputview-active-level-2 .inputview-level-2, |
| 89 .inputview-active-level-3 .inputview-level-3, |
| 90 .inputview-active-level-4 .inputview-level-4, |
| 91 .inputview-active-level-5 .inputview-level-5, |
| 92 .inputview-active-level-6 .inputview-level-6, |
| 93 .inputview-active-level-7 .inputview-level-7 { |
| 94 display: block; |
| 95 } |
| 96 |
| 97 .vk-shift-icon { display: block; width: 25px; height: 22px; background: url("../
../../../ui/webui/resources/images/shift.svg") transparent; background-size: 25p
x 22px; background-repeat: no-repeat; position: absolute; top: 50%; left: 50%;
margin: -11px 0 0 -12px; } |
| 98 |
| 99 .vk-blueshift-icon { display: block; width: 25px; height: 22px; background: url(
"../../../../ui/webui/resources/images/blueshift.svg") transparent; background-s
ize: 25px 22px; background-repeat: no-repeat; position: absolute; top: 50%; lef
t: 50%; margin: -11px 0 0 -12px; } |
| 100 |
| 101 .vk-escape-icon { display: block; width: 32px; height: 32px; background: url("..
/../../../ui/webui/resources/images/hidekeyboard.svg") 0px 0px / 32px 32px no-re
peat transparent; position: absolute; top: 50%; left: 50%; margin: -16px 0 0 -1
6px; } |
| 102 |
| 103 .vk-backspace-icon { display: block; height: 24px; width: 24px; background: url(
"../../../../ui/webui/resources/images/backspace.svg") transparent; background-s
ize: 24px 24px; background-repeat: no-repeat; position: absolute; top: 50%; lef
t: 50%; margin: -12px 0 0 -12px; } |
| 104 |
| 105 .vk-enter-icon { display: block; width: 40px; height: 40px; background: url("../
../../../ui/webui/resources/images/enter.svg") transparent; background-size: 40p
x 40px; background-repeat: no-repeat; position: absolute; top: 50%; left: 50%;
margin: -20px 0 0 -20px; } |
| 106 |
| 107 .vk-space-icon { |
| 108 background-color: rgba(165, 161, 169, 0.34902); |
| 109 /* border-radius: 50px;*/ |
| 110 width: 100%; |
| 111 height: 100%; |
| 112 |
| 113 border-radius: 40px; |
| 114 } |
| 115 |
| 116 .inputview-code-Space:hover { |
| 117 background-color: rgba(165, 161, 169, 0.34902); |
| 118 border-radius: 40px; |
| 119 } |
| 120 .inputview-code-Space:active { |
| 121 background-color: rgb(90, 93, 95); |
| 122 } |
| 123 |
| OLD | NEW |