1
2
3.plugin_button:hover {
4	background-color: __background_neu__;
5	color: __text__;
6}
7
8.plugin_button {
9	border-radius:6px;
10	border:1px solid __border__;
11	background-color: __background_alt__;
12	box-shadow:inset 0px 1px 0px 0px #ffffff;
13	padding:0.5em;
14	margin: 0.2em;
15	text-decoration:none;
16	display: inline-table;
17	text-align:center;
18	text-shadow:1px 1px 0px #ffffff;
19	vertical-align: middle;
20}
21
22/* 2020-05-11 : moved maximum CSS up a level to allow override on a per-button basis
23 - text-shallow : simply moved
24 - vertical-align : force inherit to get the one from upper level
25*/
26
27.plugin_button_text {
28	display: table-cell;
29	width: 99%;
30	vertical-align: inherit;
31}
32
33.plugin_button_text.mediafile {
34	background-position:left center;
35}
36
37.plugin_button_image {
38	display: table-cell;
39	vertical-align: inherit;
40	white-space: nowrap;
41	padding-right: 1em;
42}
43
44/*  2014-07-28 : fix bizarre chrome behaviour */
45#content .plugin_button_image img , .plugin_button_image img {
46	max-width: none;
47}
48
49/*
50Note :
51- template style won't apply to the links because it is not a <a> link.
52- if I forced a link here (beside some problems in layout), it will override css given
53
54If you want standard CSS here, just copy it below, and add a space between 'a' and the class
55(example below for external links)
56*/
57
58.dokuwiki a .urlextern {
59    background-image: url(../../images/external-link.png);
60    background-repeat: no-repeat;
61    background-position: 0 center;
62    padding: 0 0 0 18px;
63}
64