sgj
2026-03-17 74a25082f68c00a797a7eca8672cde8edb0dc95f
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
/*
 * This file is part of Dorado 7.x (http://dorado7.bsdn.org).
 * 
 * Copyright (c) 2002-2012 BSTEK Corp. All rights reserved.
 * 
 * This file is dual-licensed under the AGPLv3 (http://www.gnu.org/licenses/agpl-3.0.html) 
 * and BSDN commercial (http://www.bsdn.org/licenses) licenses.
 * 
 * If you are unsure which license is appropriate for your use, please contact the sales department
 * at http://www.bstek.com/contact.
 */
.d-list-scrolling-indicator {
  position: absolute;
  width: 100px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #333333;
  background-color: #f7f7f7;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.d-list-dragging-item {
  white-space: nowrap;
  padding: 2px 4px;
  background: #ffffff;
}
.d-list-dragging-insert-indicator {
  position: absolute;
  height: 1px;
  background: #ff8040;
}
.d-list-loading .mask {
  opacity: 0.1;
  filter: alpha(opacity=10);
  background: #000000;
}
.d-list-loading .tip {
  width: 200px;
  height: 36px;
  line-height: 36px;
  color: #333333;
  background: #ffffff;
  padding: 4px 8px;
}
.d-list-loading .icon {
  float: left;
  margin: 6px;
}
.d-list-loading .icon > .spinner {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #f5f5f5;
  border-left-color: #f5f5f5;
  border-radius: 50%;
  -webkit-animation: loading-icon 400ms linear infinite;
  -moz-animation: loading-icon 400ms linear infinite;
  -ms-animation: loading-icon 400ms linear infinite;
  -o-animation: loading-icon 400ms linear infinite;
}
.d-list-loading .label {
  text-align: left;
  margin-left: 42px;
  height: 36px;
}
.d-list-box {
  position: relative;
}
.d-list-box .data-table {
  width: 100%;
}
.d-list-box .data-table .row td {
  white-space: nowrap;
  padding-left: 2px;
  padding-right: 2px;
}
.d-list-box .data-table .highlighting-row td {
  background: none;
}
.d-list-box .preparing-area {
  background-color: #efefef;
}
.d-list-box {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #f7f7f7;
  color: #333333;
}
.d-list-box .data-table .row {
  background: #ffffff;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background-color, border-color, color, -webkit-box-shadow, -webkit-transform;
  -moz-transition-property: background-color, border-color, color, -moz-box-shadow, -moz-transform;
  -ms-transition-property: background-color, border-color, color, -ms-box-shadow, -ms-transform;
  -o-transition-property: background-color, border-color, color, -o-box-shadow, -o-transform;
  transition-property: background-color, border-color, color, box-shadow, transform;
}
.d-list-box .data-table .odd-row {
  background: #ffffff;
}
.d-list-box .data-table .hover-row {
  background: #f5f5f5;
}
.d-list-box .data-table .hover-row td {
  border-top-color: rgba(0, 0, 0, 0);
}
.d-list-box .data-table .selected-row {
  color: #333333;
  background: #ffffff;
}
.d-list-box .data-table .current-row {
  color: #333333;
  background-color: #f5f5f5;
}
.d-list-box .data-table .drag-over-row {
  background: #f5f5f5;
}
.d-list-box .data-table .drag-over-row td {
  border-top-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
}