-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
58 lines (48 loc) · 1.22 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
.plugin_button:hover {
background-color: __background_neu__;
color: __text__;
}
.plugin_button {
border-radius:6px;
border:1px solid __border__;
background-color: __background_alt__;
box-shadow:inset 0px 1px 0px 0px #ffffff;
padding:0.5em;
margin: 0.2em;
text-decoration:none;
display: inline-table;
text-align:center;
}
.plugin_button_text {
display: table-cell;
width: 99%;
text-align: center;
vertical-align: middle;
text-shadow:1px 1px 0px #ffffff;
}
.plugin_button_text.mediafile {
background-position:left center;
}
.plugin_button_image {
display: table-cell;
vertical-align: middle;
white-space: nowrap;
padding-right: 1em;
}
/* 2014-07-28 : fix bizarre chrome behaviour */
.plugin_button_image img {
max-width: none;
}
/*
Note :
- template style won't apply to the links because it is not a <a> link.
- if I forced a link here (beside some problems in layout), it will override css given
If you want standard CSS here, just copy it below, and add a space between 'a' and the class
(example below for external links)
*/
.dokuwiki a .urlextern {
background-image: url(../../images/external-link.png);
background-repeat: no-repeat;
background-position: 0 center;
padding: 0 0 0 18px;
}