forked from splitbrain/dokuwiki-plugin-upgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (85 loc) · 1.66 KB
/
style.css
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
#plugin__upgrade {
margin: 0 auto;
height: 20em;
overflow: auto;
}
#plugin__upgrade_form {
display: block;
overflow: auto;
margin: 1em;
font-size: 120%;
}
#plugin__upgrade_careful {
float: right;
text-align: right;
margin-right: 1em;
color: red;
}
#plugin__upgrade_form {
clear: right;
}
#plugin__upgrade_form button {
float: right;
margin-left: 0.5em;
}
#plugin__upgrade_form button.careful {
opacity: 0.5;
}
/* based on http://cssdeck.com/labs/progress-bar */
#plugin__upgrade_meter {
height: 20px;
position: relative;
margin: 3em 1em 1em 1em;
}
#plugin__upgrade_meter ol {
margin: 0;
padding: 0;
display: block;
height: 100%;
border-radius: 10px;
background-color: #ddd;
position: relative;
list-style: none;
}
#plugin__upgrade_meter ol li {
float: left;
margin: 0;
padding: 0;
text-align: right;
width: 19%;
position: relative;
border-radius: 10px;
}
#plugin__upgrade_meter ol li span{
right:-0.5em;
display: block;
text-align: center;
}
#plugin__upgrade_meter ol li .step {
top: -0.4em;
padding: .2em 0;
border: 3px solid #ddd;
z-index: 99;
font-size: 1.25em;
color: #ddd;
width: 1.5em;
font-weight: 700;
position: absolute;
background-color: #fff;
border-radius: 50%;
}
#plugin__upgrade_meter ol li .stage {
color: #fff;
font-weight: 700;
}
#plugin__upgrade_meter ol li.active {
height: 20px;
background: #aaa;
}
#plugin__upgrade_meter ol li.active span.stage {
color: #000;
}
#plugin__upgrade_meter ol li.active span.step{
color: #000;
border: 3px solid __link__;
}