1/* =Admin (Backend)
2----------------------------------------------- */
3
4.dokuwiki fieldset {
5    width: auto;
6}
7
8.dokuwiki #edit__summary {
9    width: auto;
10}
11
12#config__manager {
13    fieldset {
14        margin: 0 0 20px;
15    }
16    fieldset td.value,
17    .selectiondefault {
18        width: auto;
19    }
20    .selectiondefault input {
21        margin: 0 3px;
22    }
23    tr.default div.input:has(select),
24    tr div.input:has(select),
25    tr div.input:has(textarea),
26    tr div.input:has(input[type="color"]),
27    tr div.input:has(input[type="date"]),
28    tr div.input:has(input[type="datetime-local"]),
29    tr div.input:has(input[type="email"]),
30    tr div.input:has(input[type="file"]),
31    tr div.input:has(input[type="image"]),
32    tr div.input:has(input[type="month"]),
33    tr div.input:has(input[type="number"]),
34    tr div.input:has(input[type="password"]),
35    tr div.input:has(input[type="tel"]),
36    tr div.input:has(input[type="text"]),
37    tr div.input:has(input[type="time"]),
38    tr div.input:has(input[type="url"]),
39    tr div.input:has(input[type="week"]) {
40        // Fix a background color would sometimes applied to the div.input
41        background-color: transparent;
42    }
43    fieldset td.value div.input {
44        // Fix overflowing width of some input types
45        width: 100%;
46    }
47    // Fix Dokuwiki's backlink showing on top of dropdowns
48    td.label span.outkey {
49        z-index: auto;
50    }
51}
52
53#media__popup_content label {
54    display: block;
55}
56div.toolbar {
57    margin-top: 8px;
58}
59div.toolbar,div.picker {
60    border-radius: 8px;
61    background-color: @ini_background_neu;
62    padding: 4px;
63    border: 3px solid @ini_theme_color;
64    background-position: center center;
65
66    button,button.toolbutton,button.pickerbutton {
67        padding: 4px 8px;
68        border-radius: 0px;
69        background-color: transparent;
70        transition: all 0.25s ease-in-out;
71        border-radius: 4px;
72        color: @ini_text_neu;
73        vertical-align: middle;
74        text-align: center;
75    }
76
77    button:hover,button.toolbutton:hover,button.pickerbutton:hover {
78        background-color: @ini_background_alt;
79    }
80}
81
82/* undo "clever" styling from fileuploader.js */
83.qq-upload-button {
84    cursor: inherit !important;
85    direction: inherit !important;
86}
87.qq-upload-button input {
88    font-family: inherit !important;
89    font-size: 1em !important;
90    margin: inherit !important;
91    opacity: 1 !important;
92    padding: inherit !important;
93    position: static !important;
94}
95
96#plugin__styling.ispopup {
97    margin-top: -40px;
98    padding: 10px;
99    background-color: @ini_background;
100}
101