czt
2026-02-02 124e7de0dc6dd727677fc04c53774c415e8783db
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
/*
 * 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-block-view .block {
  z-index: 100;
}
.d-block-view .block-decorator {
  position: absolute;
}
.d-block-view .block-decorator-hover {
  z-index: 0;
}
.d-block-view .block-decorator-current {
  z-index: 1;
}
.d-block-view .block-decorator {
  display: none;
}
.d-block-view-dragging-item {
  background: #f7f7f7;
}
.d-block-view-dragging-insert-indicator-v {
  position: absolute;
  width: 2px;
  background: #ff8040;
}
.d-block-view-dragging-insert-indicator-h {
  position: absolute;
  height: 2px;
  background: #ff8040;
}
.d-block-view {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.d-block-view .block {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #f7f7f7;
  -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-block-view .block-hover {
  border: 0;
  background-color: #f5f5f5;
}
.d-block-view .block-current {
  border: 0;
  color: #333333;
  background-color: #f5f5f5;
}
.d-block-view .block-drag-over {
  border: 0;
  background-color: #f5f5f5;
}