Blame view

assets/global/plugins/easyui/themes/default/spinner.css 1.28 KB
6eb38308   Andy   add
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
  .spinner-arrow {
    background-color: #E0ECFF;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin: 0;
    padding: 0;
    opacity: 1.0;
    filter: alpha(opacity=100);
    width: 18px;
  }
  .spinner-arrow-up,
  .spinner-arrow-down {
    opacity: 0.6;
    filter: alpha(opacity=60);
    display: block;
    font-size: 1px;
    width: 18px;
    height: 10px;
    width: 100%;
    height: 50%;
    color: #444;
    outline-style: none;
  }
  .spinner-arrow-hover {
    background-color: #eaf2ff;
    opacity: 1.0;
    filter: alpha(opacity=100);
  }
  .spinner-arrow-up:hover,
  .spinner-arrow-down:hover {
    opacity: 1.0;
    filter: alpha(opacity=100);
    background-color: #eaf2ff;
  }
  .textbox-icon-disabled .spinner-arrow-up:hover,
  .textbox-icon-disabled .spinner-arrow-down:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    background-color: #E0ECFF;
    cursor: default;
  }
  .spinner .textbox-icon-disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  .spinner-arrow-up {
    background: url('images/spinner_arrows.png') no-repeat 1px center;
  }
  .spinner-arrow-down {
    background: url('images/spinner_arrows.png') no-repeat -15px center;
  }
  .spinner-button-up {
    background: url('images/spinner_arrows.png') no-repeat -32px center;
  }
  .spinner-button-down {
    background: url('images/spinner_arrows.png') no-repeat -48px center;
  }