xref: /template/wikiweko/static/3rd/dokuwiki/_fileuploader.css (revision 1a35eb18c58429f396883e8bd656de7a06ebcc75)
1/* ATTENTION: This file was edited for the "vector template for DokuWiki".
2   - All url(images/[...]) rules where changed.
3   See 00_starter-tmpl-notes.txt for details. */
4
5
6/**
7 * This file provides the styles for the file uploader
8 * used in the media manager (both fullscreen and popup).
9 */
10
11.qq-uploader {
12    position: relative;
13    width: 100%;
14}
15
16.qq-uploader .error {
17    color: #f00;
18    background-color: #fff;
19}
20
21/* select file button */
22
23.qq-upload-button {
24    display: inline-block;
25    border: 1px solid __border__;
26    color: __text__;
27    background:  __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom;
28    text-decoration: none;
29    font-size: 100%;
30    cursor: pointer;
31    margin: 1px 1px 5px;
32    padding: 0.125em 0.4em;
33}
34
35* html .qq-upload-button,
36*+html .qq-upload-button {
37    display: inline;
38}
39
40.qq-upload-button-focus {
41    outline: 1px dotted;
42}
43
44/* drop area */
45
46.qq-upload-drop-area {
47    position: absolute;
48    top: 0;
49    left: 0;
50    width: 100%;
51    height: 100%;
52    min-height: 70px;
53    z-index: 2;
54    background: __background_neu__;
55    color: __text__;
56    text-align: center;
57}
58
59.qq-upload-drop-area span {
60    display: block;
61    position: absolute;
62    top: 50%;
63    width: 100%;
64    margin-top: -8px;
65    font-size: 120%;
66}
67
68.qq-upload-drop-area-active {
69    background: __background_alt__;
70}
71
72/* list of files to upload */
73
74div.qq-uploader ul {
75    margin: 0;
76    padding: 0;
77    list-style: none;
78}
79
80.qq-uploader li {
81    margin: 0 0 5px;
82    color: __text__;
83}
84
85.qq-uploader li span,
86.qq-uploader li input,
87.qq-uploader li a {
88    margin-right: 5px;
89}
90
91.qq-upload-file {
92    display: block;
93    font-weight: bold;
94}
95
96.qq-upload-spinner {
97    display: inline-block;
98    background: url("../../images/throbber.gif");
99    width: 15px;
100    height: 15px;
101    vertical-align: text-bottom;
102}
103
104.qq-upload-size,
105.qq-upload-cancel {
106    font-size: 85%;
107}
108
109.qq-upload-failed-text {
110    display: none;
111}
112.qq-upload-fail .qq-upload-failed-text {
113    display: inline;
114}
115
116.qq-action-container * {
117    vertical-align: middle;
118}
119.qq-overwrite-check input {
120    margin-left: 10px;
121}
122