blob: 232a35cd7a7f52219ebde13d5fd5fb0bee8c68fd (
plain)
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
|
.g-organize {
font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.g-organize div.thumb {
padding: 8px;
margin: 8px;
width: 144px;
height: 149px;
vertical-align: middle;
text-align: center;
float: left;
}
.g-organize div.selected {
background: #C9D8EB;
}
.g-organize div.thumb img {
border: 4px solid white;
margin: 0px;
}
.g-organize div.thumb:hover {
border: 2px solid #eee;
margin: 6px;
cursor: pointer;
}
.g-organize div.thumb div.icon {
position: relative;
padding: 0px;
margin: 0px;
visibility: hidden;
width: 16px;
height: 16px;
top: -16px;
margin-bottom: -16px;
padding-bottom: -16px;
}
.g-organize div.thumb-album div.icon {
visibility: visible;
}
.g-organize div.drag-ghost {
width: 300px;
height: 180px;
}
.g-organize div.drag-ghost div {
width: 72px;
height: 72px;
vertical-align: baseline;
float: left;
}
.g-organize div.drop-target {
background: #eee;
}
.g-organize div.active-left {
border-left: 4px solid #C9D8EB;
margin-left: 4px;
}
.g-organize div.active-right {
border-right: 4px solid #C9D8EB;
margin-right: 4px;
}
.g-organize .x-tree-node-el {
font-size: 12px;
line-height: 20px;
}
.g-organize .x-tree-node-leaf .x-tree-node-icon{
background-image:url(../vendor/ext/images/default/tree/folder.gif);
}
.loading div {
font-size: 1.1em;
padding-left: 24px;
background-color: white;
background-image: url(../vendor/ext/images/default/tree/loading.gif);
background-position: 4px 8px;
background-repeat: no-repeat;
}
|