Blame view

assets/pages/scripts/otherSetting/whiteList/whitelist.css 3.27 KB
10646c94   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
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
154
155
156
  
  /*//新样式*/
  .whitelist-parking-l{
      width: 70px;
  }
  
  
  
  /*弹窗新样式*/
  /*---------------详情弹窗------------------*/
  .whitelist-chooseDivread{
      width: 670px;
      height: 34px;
      line-height: 34px;
  }
  .whitelist-width70{
      float: left;
      margin-left: 20px;
      width: 550px;
      height: 34px;
      line-height: 34px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
  
  /*---------------新增弹窗------------------*/
  .whitelist-findPark {
      position: absolute;
      top: 0;
      right: 0;
      height: 34px;
      width: 34px;
      background: url(../img/find_icon.png) no-repeat;
      background-size: 17px 17px;
      background-position: 6px 8px;
      cursor: pointer;
  }
  .whitelist-group{
      width: 315px;
      height: 390px;
      margin-left: 12px;
      background-color: #f5f7f8;
      margin-bottom: 24px;
  }
  .whitelist-form-group-ul {
      height: 220px;
      margin-left: 13px;
      width: 300px;
      padding-top: 15px;
  }
  .whitelist-line1 {
      width: 280px;
      height: 1px;
      background-color: #c2cad8;
      margin-left: 17px;
  }
  .whitelist-form-grup-checked{
      padding-top: 5px;
      height: 165px;
      width: 310px;
      overflow-y: auto;
  }
  
  .treeview-checkable_org {
      height: 205px;
      margin-left: 30px;
      width: 250px;
      overflow-y: auto;
      overflow-x: auto;
      float: left;
  }
  .whitelist-parkCheck, .whitelist-editParkCheck {
      height: 28px;
      width: 142px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      line-height: 28px;
      padding: 0 24px 0 12px;
      display: inline-block;
      border-radius: 4px !important;
      background-color: #fff;
      position: relative;
      border: 1px solid #d8e2e5;
      margin-left: 8px;
  }
  .closex, .editclosex {
      position: absolute;
      top: 8px;
      right: 9px;
      height: 9px;
      width: 9px;
      background: url(../img/parkclose_icon.png) no-repeat;
      background-size: 9px 9px;
      cursor: pointer;
  }
  .whitelist-padtop8{
      padding-top: 8px !important;
  }
  
  
  /*单选复选美化*/
  input[type=checkbox],
  input[type=radio ]{
      width   : 28px;
      height  : 24px;
      margin  : 0;
      padding : 0;
      opacity : 0;
      filter: "alpha(opacity=0)"; /* IE 8 */
  }
  
  input[type=checkbox]+ label{
      display      : inline-block;
      margin-left  : -28px;
      padding-left : 28px;
      background   : url('../img/input-checkexActive.png') no-repeat  0 center;
      line-height  : 24px;
      opacity : 1;
  
  }
  input[type=checkbox]:hover + label{
      background: url('../img/input-checkexActive.png') no-repeat 0 center;
  
  }
  input[type=checkbox]:checked + label{
      background: url('../img/input-checkbox.png') no-repeat 0 center;
  
  }
  
  input[type=checkbox]:checked:hover + label{
      background: url('../img/input-checkbox.png') no-repeat 0 center;
  
  }
  
  input[type=radio] + label{
      /*margin-right: 14px;*/
      display      : inline-block;
      margin-left  : -28px;
      padding-left : 20px;
      background   : url('../img/input-radio.png') no-repeat 0 center ;
      line-height  : 24px;
  
  }
  input[type=radio]:hover + label{
      background: url('../img/input-radio.png') no-repeat 0 center;
  }
  input[type=radio]:checked + label{
      background   : url('../img/input-radio-active.png') no-repeat 0 center;
  
  }
  input[type=radio]:checked:hover + label{
      background: url('../img/input-radio-active.png') no-repeat 0 center;
  
  }