less/roojs-bootstrap/document-manager.less
[roojs1] / less / roojs-bootstrap / document-manager.less
1
2 .roo-document-manager-selector { // it must use visibility, display is not working on old safari...
3     visibility: hidden;
4     height: 0px;
5 }
6
7 .roo-document-manager-uploader,
8 .roo-document-manager-loading,
9 .roo-document-manager-preview {
10     position: relative;
11     float: left;
12     width: 25%;
13     padding-left: 5px;
14     height: 100px;
15     max-height: 100px;
16     margin-top: 10px;
17 }
18
19 .roo-document-manager-preview.wide {
20     width: 50%;
21 }
22
23 .roo-document-manager-thumb,
24 .roo-document-manager-upload-btn {
25     width : 100%;
26     height: 100px;
27     line-height: 100px;
28     max-height: 100px;
29     border: 1px solid @gray-lighter;
30     -webkit-box-shadow: 1px 0px 5px 0px fade(@gray-light, 75%);
31     -moz-box-shadow: 1px 0px 5px 0px fade(@gray-light, 75%);
32     box-shadow: 1px 0px 5px 0px fade(@gray-light, 75%);
33 }
34
35 .roo-document-manager-thumb > i.fa,
36 .roo-document-manager-upload-btn > i.fa {
37     width: 100%;
38     line-height: 98px;
39     text-align: center;
40     vertical-align: middle;
41     color: @gray-light;
42     font-size: 2.5em;
43 }
44
45 .roo-document-manager-thumb > i.fa {
46     font-size: 2.5em;
47 }
48
49 .roo-document-manager-thumb > img {
50     width: 100%;
51     max-height: 100%;
52     text-align: center;
53     vertical-align: middle;
54 }
55
56 .roo-document-manager-preview > .close {
57     position: absolute;
58     top: 0px;
59     right: 3px;
60     font-size: 20px;
61     opacity: 1;
62 }
63
64 .roo-document-manager-preview > .close:hover {
65     color: @gray-dark;
66 }
67
68 .roo-document-manager-preview.disabled > .roo-document-manager-thumb > img {
69     -webkit-filter: grayscale(100%);
70        -moz-filter: grayscale(100%);
71          -o-filter: grayscale(100%);
72         -ms-filter: grayscale(100%);
73             filter: grayscale(100%); 
74 }
75
76 /*
77 * sm
78 */
79
80 @media (min-width: 768px) { 
81     .roo-document-manager-uploader,
82     .roo-document-manager-loading,
83     .roo-document-manager-preview {
84         height: 200px;
85         max-height: 200px;
86     }
87     
88     .roo-document-manager-thumb,
89     .roo-document-manager-upload-btn {
90         line-height: 200px;
91         height: 200px;
92         max-height: 200px;
93     }
94
95     .roo-document-manager-thumb > i.fa,
96     .roo-document-manager-upload-btn > i.fa {
97         line-height: 198px;
98     }
99     
100 }
101
102 /*
103 * md
104 */
105
106 @media (min-width: 992px) { 
107     .roo-document-manager-uploader,
108     .roo-document-manager-loading,
109     .roo-document-manager-preview {
110         width: 8.33333333%;
111         height: 80px;
112         max-height: 80px;
113     }
114     
115     .roo-document-manager-preview.wide {
116         width: 16.66666666%;
117     }
118     
119     .roo-document-manager-thumb,
120     .roo-document-manager-upload-btn {
121         line-height: 80px;
122         height: 80px;
123         max-height: 80px;
124     }
125
126     .roo-document-manager-thumb > i.fa,
127     .roo-document-manager-upload-btn > i.fa {
128         line-height: 78px;
129     }
130     
131 }
132
133
134 /*
135 * lg
136 */
137
138 @media (min-width: 1200px) {
139     .roo-document-manager-uploader,
140     .roo-document-manager-loading,
141     .roo-document-manager-preview {
142         width: 8.33333333%;
143         height: 100px;
144         max-height: 100px;
145     }
146     
147     .roo-document-manager-preview.wide {
148         width: 16.66666666%;
149     }
150     
151     .roo-document-manager-thumb,
152     .roo-document-manager-upload-btn {
153         line-height: 100px;
154         height: 100px;
155         max-height: 100px;
156     }
157
158     .roo-document-manager-thumb > i.fa,
159     .roo-document-manager-upload-btn > i.fa {
160         line-height: 98px;
161     }
162     
163 }