1div.dokuwiki table {
2  font-size: 100%;
3}
4
5/* inline tables */
6div.dokuwiki table.inline {
7  background-color: __background__;
8  border-spacing: 0px;
9  border-collapse: collapse;
10}
11
12div.dokuwiki table.inline th {
13  padding: 3px;
14  border: 1px solid __border__;
15  background-color: __background_alt__;
16}
17
18div.dokuwiki table.inline th input {
19        font-weight: bold;
20}
21
22div.dokuwiki table.inline td {
23  padding: 3px;
24  border: 1px solid __border__;
25}
26
27/**
28 * Edit button; keep this synced to css/plugin_data.css
29 **/
30
31div.dokuwiki div.editbutton_table form button:hover {
32    color: __mediumgray__;
33}
34
35div.dokuwiki div.editbutton_table form button,
36div.dokuwiki div.editbutton_table form button:hover {
37    border: 1px solid __border__;
38    background:transparent url(images/icons/stift_klein.png) no-repeat scroll right top;
39    border-top: none;
40    cursor:pointer;
41    display:inline;
42    font-size:10px;
43    margin:0;
44    padding: 0px 25px 2px 3px;
45    text-decoration:none;
46    vertical-align:middle;
47    -moz-border-radius: 0;
48    -opera-border-radius: 0;
49    -webkit-border-radius: 0;
50    border-radius: 0;
51    -moz-border-radius-bottomleft: 0.5em;
52    -opera-border-bottom-left-radius: 0.5em;
53    -webkit-border-bottom-left-radius: 0.5em;
54    border-bottom-left-radius: 0.5em;
55    -moz-border-radius-bottomright:0.5em;
56    -opera-border-bottom-right-radius: 0.5em;
57    -webkit-border-bottom-right-radius: 0.5em;
58    border-bottom-right-radius: 0.5em;
59    margin-left: 2.1em;
60    text-indent: 0px;
61}
62
63div.dokuwiki div.editbutton_table {
64    margin-top: -1.2em; /* depends on the table margin (*1.2) */
65    margin-bottom: 1.2em;
66}
67
68*:first-child+html div.dokuwiki div.editbutton_table form button {
69    width: auto;
70    font-size: 10px;
71    line-height: 1.2em;
72}
73
74*:first-child+html div.dokuwiki div.editbutton_table form button:hover {
75    font-size: 10px;
76    line-height: 1.2em;
77}
78