Blame view

WebRoot/static/login/keypad/css/framework/form.css 2.65 KB
ad5081d3   孙向锦   初始化项目
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
  
  
  /*软键盘*/
  .keypad {
      background-color: #fff;
      background-image: url(../../images/formEle/keypad.gif) !important;
      background-repeat: no-repeat !important;
      background-position: 98% 50% !important;
      height: 20px;
  	line-height: 20px;
      width: 120px;
      border-color: #ccc;
      border-style: solid;
      border-width: 1px;
      /*font-size: 12px;*/
      color: #369;
  }
  button.keypad-trigger {
      width: 25px;
      padding: 0;
  }
  
  img.keypad-trigger {
      margin: 2px;
      vertical-align: middle;
  }#keypad-div {
      display: none;
      z-index: 9999999999999999;
      margin: 0;
      padding: 0;
      background-color: #fff;
      color: #000;
      border: 1px solid #888;
      border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
  }.keypad-keyentry {
      display: none;
  }.keypad-inline {
      background-color: #f4f4f4;
      border: 1px solid #888;
      border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
  }.keypad-disabled {
      position: absolute;
      z-index: 100;
      background-color: white;
      opacity: .5;
      filter: alpha( opacity = 50);
  }.keypad-rtl {
      direction: rtl;
  }.keypad-prompt {
      clear: both;
      width: 100%;
      text-align: center;
  }.keypad-row {
      clear: both;
      float: left;
      width: 100%;
  }.keypad-space {
      float: left;
      margin: 2px;
      width: 24px;
  } * html .keypad-space {
      margin: 0;
      width: 28px;
  }.keypad-half-space {
      float: left;
      margin: 1px;
      width: 12px;
  } * html .keypad-half-space {
      margin: 0;
      width: 14px;
  }.keypad-key {
      float: left;
  	border:solid 1px #9db0bc;
      margin: 2px;
      padding: 0;
      width: 32px;
  	height:25px;
      background-color: #f4f4f4;
      text-align: center;
  	background-image: url(../../images/formEle/keyBg.jpg);
  	background-repeat: repeat-x;
      cursor: pointer;
  }.keypad-key-down{
  	background-image: url(../../images/formEle/keyBg3.jpg)!important;
  	color:black!important;
  }.keypad-key-hover{
  	background-image: url(../../images/formEle/keyBg3.jpg)!important;
  	color:black!important;
  	border-color:#af923f!important;
  }
  .keypad-spacebar {
      width: 164px;
  }.keypad-enter {
      width: 52px;
  }.keypad-clear, .keypad-back, .keypad-close, .keypad-shift {
      width: 52px;
      color: #fff;
      font-weight: normal;
  	border:solid 1px #dc6b00!important;
  	background-image: url(../../images/formEle/keyBg2.jpg);
  	background-repeat: repeat-x;
  }.keypad-clear {
  }.keypad-back {
  }.keypad-close {
  }.keypad-shift {
  }.keypad-cover {
      display: none;
      display: block;
      position: absolute;
      z-index: -1;
      filter: mask();
  	top:-4px;
  	left:-4px;
  	width:125px;
  	height: 200px;
  }