delete view
[qcg-portal.git] / filex / templates / filex / upload.css.html
1 <style>
2     #path {
3         font-size: 16px;
4     }
5
6     #elements {
7         position: absolute;
8         left: 0;
9         right: 0;
10         top: 90px;
11         bottom: 51px;
12         overflow-y: auto;
13         padding: 0 15px;
14     }
15
16     #elements:empty:before {
17         display: block;
18         content: "Upuść pliki tutaj";
19         position: absolute;
20         left: 0;
21         right: 0;
22         border: dashed 3px #bbb;
23         border-radius: 6px;
24         text-align: center;
25         font-size: 28px;
26         padding: 140px;
27         margin: 15px;
28         background: white;
29         overflow: hidden;
30         opacity: 0.5;
31     }
32
33     #drop-overlay {
34         display: none;
35         position: absolute;
36         left: 0;
37         right: 0;
38         top: 90px;
39         border: dashed 3px #bbb;
40         border-radius: 6px;
41         text-align: center;
42         font-size: 28px;
43         padding: 140px;
44         margin: 15px;
45         background: white;
46         overflow: hidden;
47         opacity: 0.5;
48     }
49
50     #drop-overlay.in {
51         display: block;
52     }
53
54     #elements .item .text {
55         margin: 10px 0;
56     }
57
58     #elements .item .status {
59         float: right;
60     }
61
62     #btn-open {
63         float: left;
64     }
65
66     #btn-close {
67         margin-right: 15px;
68     }
69
70     .modal-footer .checkbox {
71         margin-top: 7px;
72         margin-bottom: 7px;
73     }
74 </style>