forked from desolat/DokuWiki-Pagemove-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 20
/
style.less
134 lines (114 loc) · 2.5 KB
/
style.less
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
/**
* Tree Manager
*/
#plugin_move__tree {
display: none; // will be enabled via JavaScript
.tree_pages,
.tree_media {
width: 49%;
float: left;
overflow-wrap: break-word;
overflow: hidden;
}
.controls {
clear: left;
display: block;
}
ul.tree_list {
.moved > div, .created > div {
border: 1px dashed lighten(@ini_text, 30%);
border-radius: 3px;
margin-left: -3px;
padding-left: 3px;
margin-top: 1px;
}
li {
cursor: move;
img {
float: right;
cursor: pointer;
display: none;
}
}
li div:hover {
background-color: @ini_background_alt;
img {
display: block;
}
}
li.closed {
ul {
display: none;
}
}
}
}
#plugin_move__treelink {
display: none; // will be enabled via JavaScript
}
/**
* The progress page
*/
#plugin_move__progress {
.hide {
display: none;
}
#plugin_move__preview {
span {
cursor: pointer;
color: @ini_link;
}
ul {
li.page {
list-style-image: url(images/page.png);
}
li.media {
list-style-image: url(images/disk.png);
}
li.affected {
list-style-image: url(images/page_link.png);
}
}
}
}
/**
* The admin form
*/
.dokuwiki .plugin_move_form {
label.block {
text-align: left;
}
label.indent {
padding-left: 15px;
select,
input {
float: right;
}
}
}
/**
* Pagetool icon
*/
#dokuwiki__pagetools ul li.plugin_move_page a {
background-position: right 0;
}
#dokuwiki__pagetools ul li.plugin_move_page a:before {
content: url(images/sprite.png);
margin-top: 0;
}
#dokuwiki__pagetools:hover ul li.plugin_move_page a,
#dokuwiki__pagetools ul li.plugin_move_page a:focus,
#dokuwiki__pagetools ul li.plugin_move_page a:active {
background-image: url(images/sprite.png);
}
#dokuwiki__pagetools ul li.plugin_move_page a:hover,
#dokuwiki__pagetools ul li.plugin_move_page a:active,
#dokuwiki__pagetools ul li.plugin_move_page a:focus {
background-position: right -45px;
}
/**
* page rename link
*/
.plugin_move_page {
display: none; // will be shown by JavaScript
}