Subversion Repositories wimsdev

Rev

Rev 3548 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1013 bpr 1
#keyboardInputMaster {
2
  position:absolute;
3
  border-top:2px solid #eeeeee;
4
  border-right:2px solid #6e6e6e;
5
  border-bottom:2px solid #6e6e6e;
6
  border-left:2px solid #eeeeee;
7
  color:#000000;
8
  background-color:#dddddd;
9
  text-align:left;
10
  z-index:1000000;
11
  width:auto;
12
  margin:0px;
13
  font:normal 11px Arial,sans-serif;
14
  line-height:1;
15
}
16
#keyboardInputMaster * {
17
  color:#000000;
18
  background:transparent;
19
  font:normal 11px Arial,sans-serif;
20
  margin:0px;
21
  padding:0px;
22
  border:0px none;
23
  outline:0px;
24
  vertical-align:baseline;
25
}
26
 
27
#keyboardInputMaster thead tr th {
28
  text-align:left;
29
  padding:3px 5px 2px 4px;
30
  background-color:inherit;
31
}
32
#keyboardInputMaster thead tr th select {
33
  margin-right:5px;
34
  border:1px inset #888888;
35
  background-color:#f6f6f6;
36
}
37
#keyboardInputMaster thead tr th label input {
38
  width:12px;
39
  height:12px;
40
  margin-right:5px;
41
  vertical-align:middle;
42
}
43
#keyboardInputMaster thead tr td {
44
  text-align:right;
45
  vertical-align:middle;
46
  padding:3px 4px 2px 5px;
47
}
48
#keyboardInputMaster thead tr td span {
49
  padding:1px 4px;
50
  font-weight:bold;
51
  border-top:1px solid #e5e5e5;
52
  border-right:1px solid #5d5d5d;
53
  border-bottom:1px solid #5d5d5d;
54
  border-left:1px solid #e5e5e5;
55
  background-color:#cccccc;
56
  cursor:pointer;
57
}
58
 
59
#keyboardInputMaster tbody tr td {
60
  text-align:left;
61
  padding:0px 4px 3px 4px;
62
}
63
#keyboardInputMaster tbody tr td div {
64
  text-align:center;
65
  position:relative;
66
  height:0px;
67
}
68
#keyboardInputMaster tbody tr td div#keyboardInputLayout {
69
  height:auto;
70
}
71
#keyboardInputMaster tbody tr td div#keyboardInputLayout table {
72
  height:20px;
73
  white-space:nowrap;
74
  width:100%;
75
  border-collapse:separate;
76
  border-spacing:0px;
77
}
78
#keyboardInputMaster tbody tr td div#keyboardInputLayout table.keyboardInputCenter {
79
  width:auto;
80
  margin:0px auto;
81
}
82
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td {
83
  vertical-align:middle;
84
  padding:0px 5px;
85
  white-space:pre;
86
  font-family:'Lucida Console',monospace;
87
  border-top:1px solid #e5e5e5;
88
  border-right:1px solid #5d5d5d;
89
  border-bottom:1px solid #5d5d5d;
90
  border-left:1px solid #e5e5e5;
91
  background-color:#eeeeee;
92
  cursor:default;
93
  min-width:0.75em;
94
}
95
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.last {
96
  width:99%;
97
}
98
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.space {
99
  padding:0px 45px;
100
}
101
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.alive {
102
  background-color:#ccccdd;
103
}
104
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.target {
105
  background-color:#ddddcc;
106
}
107
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.hover {
108
  border-top:1px solid #d5d5d5;
109
  border-right:1px solid #555555;
110
  border-bottom:1px solid #555555;
111
  border-left:1px solid #d5d5d5;
112
  background-color:#cccccc;
113
}
114
#keyboardInputMaster thead tr td span.pressed,
115
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.pressed,
116
#keyboardInputMaster tbody tr td div#keyboardInputLayout table tbody tr td.dead {
117
  border-top:1px solid #555555;
118
  border-right:1px solid #d5d5d5;
119
  border-bottom:1px solid #d5d5d5;
120
  border-left:1px solid #555555;
121
  background-color:#cccccc;
122
}
123
 
124
#keyboardInputMaster tbody tr td div var {
125
  position:absolute;
126
  bottom:0px;
127
  right:0px;
128
  font-weight:bold;
129
  font-style:italic;
130
  color:#444444;
131
}
132
 
133
.keyboardInputInitiator {
134
  margin-left:3px;
135
  vertical-align:middle;
136
  cursor:pointer;
137
}