blob: ee5fcfe35a770c99b80330c1e7da9e8fe3181981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
/* Onscreen Keyboard http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-keyboard-with-css-and-jquery/ */
/*rtl:ignore*/
.pos .keyboard_frame{
display: none;
position:absolute;
left: 0;
bottom: 0px;
margin: 0;
padding: 0;
padding-top: 15px;
width: 100%;
height: 0px; /* 235px, animated via jquery */
background-color: #BBB;
overflow:hidden;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
z-index:10000;
}
.pos .keyboard_frame .close_button{
height:40px;
width:60px;
text-align:center;
background-color: #DDD;
font-size: 12px;
line-height:40px;
-webkit-border-radius: 5px;
position:absolute;
top:0;
right:15px;
cursor: pointer;
}
/*rtl:ignore*/
.pos .keyboard li {
float: left;
text-align: center;
background-color: #fff;
border: 1px solid #f0f0f0;
top:0;
cursor: pointer;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-transition-property: top, background-color;
-webkit-transition-duration: 0.2s;
-webkit-transition-timing-function: linear;
}
/*rtl:ignore*/
.pos .keyboard li:active{
position: relative;
top: 2px;
left: 0px;
border-color: #ddd;
background-color:#e5e5e5;
cursor: pointer;
-webkit-transition-property: top, background-color;
-webkit-transition-duration: 0.1s;
-webkit-transition-timing-function: ease-out;
}
.pos .uppercase {
text-transform: uppercase;
}
.pos .on {
display: none;
}
/*rtl:ignore*/
.pos .firstitem{
clear: left;
}
/*rtl:ignore*/
.pos .keyboard .lastitem {
margin-right: 0 !important;
}
/* ---- full sized keyboard ---- */
.pos .full_keyboard {
list-style: none;
font-size: 14px;
width: 685px;
height: 100%;
margin-left: auto !important;
margin-right: auto !important;
}
/*rtl:ignore*/
.pos .full_keyboard li{
margin: 0 5px 5px 0 !important;
width: 40px;
height: 40px;
line-height: 40px;
}
.pos .full_keyboard .tab, .pos .full_keyboard .delete {
width: 70px;
}
.pos .full_keyboard .capslock {
width: 80px;
}
.pos .full_keyboard .return {
width: 77px;
}
.pos .full_keyboard .left-shift {
width: 95px;
}
.pos .full_keyboard .right-shift {
width: 109px;
}
/*rtl:ignore*/
.pos .full_keyboard .space {
clear: left;
width: 673px;
}
/* ---- simplified keyboard ---- */
.pos .simple_keyboard {
list-style: none;
font-size: 16px;
width: 555px;
height: 220px;
margin-left: auto !important;
margin-right: auto !important;
}
/*rtl:ignore*/
.pos .simple_keyboard li{
margin: 0 5px 5px 0 !important;
width: 49px;
height: 49px;
line-height: 49px;
}
/*rtl:ignore*/
.pos .simple_keyboard .firstitem.row_asdf{
margin-left:25px !important;
}
/*rtl:ignore*/
.pos .simple_keyboard .firstitem.row_zxcv{
margin-left:55px !important;
}
.pos .simple_keyboard .delete{
width: 103px;
}
.pos .simple_keyboard .return{
width: 103px;
}
.pos .simple_keyboard .space{
width:273px;
}
.pos .simple_keyboard .numlock{
width:103px;
}
|