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 .roo-document-manager-preview.disabled > .close {
77     display: none !important;
78 }
79
80 .roo-document-manager-preview > .roo-document-manager-thumb > .fa {
81     position: absolute;
82     left: 10px;
83     top: 5px;
84     width: 25px;
85     height: 25px;
86     -webkit-border-radius: 50%;
87     -moz-border-radius: 50%;
88     border-radius: 50%;
89     line-height: 25px;
90     text-align: center;
91     background: inherit;
92     border: inherit;
93     font-size: 1.8em;
94 }
95
96 /*
97 * sm
98 */
99
100 @media (min-width: 768px) { 
101     .roo-document-manager-uploader,
102     .roo-document-manager-loading,
103     .roo-document-manager-preview {
104         height: 200px;
105         max-height: 200px;
106     }
107     
108     .roo-document-manager-thumb,
109     .roo-document-manager-upload-btn {
110         line-height: 200px;
111         height: 200px;
112         max-height: 200px;
113     }
114
115     .roo-document-manager-thumb > i.fa,
116     .roo-document-manager-upload-btn > i.fa {
117         line-height: 198px;
118     }
119     
120 }
121
122 /*
123 * md
124 */
125
126 @media (min-width: 992px) { 
127     .roo-document-manager-uploader,
128     .roo-document-manager-loading,
129     .roo-document-manager-preview {
130         width: 8.33333333%;
131         height: 80px;
132         max-height: 80px;
133     }
134     
135     .roo-document-manager-preview.wide {
136         width: 16.66666666%;
137     }
138     
139     .roo-document-manager-thumb,
140     .roo-document-manager-upload-btn {
141         line-height: 80px;
142         height: 80px;
143         max-height: 80px;
144     }
145
146     .roo-document-manager-thumb > i.fa,
147     .roo-document-manager-upload-btn > i.fa {
148         line-height: 78px;
149     }
150     
151 }
152
153
154 /*
155 * lg
156 */
157
158 @media (min-width: 1200px) {
159     .roo-document-manager-uploader,
160     .roo-document-manager-loading,
161     .roo-document-manager-preview {
162         width: 8.33333333%;
163         height: 100px;
164         max-height: 100px;
165     }
166     
167     .roo-document-manager-preview.wide {
168         width: 16.66666666%;
169     }
170     
171     .roo-document-manager-thumb,
172     .roo-document-manager-upload-btn {
173         line-height: 100px;
174         height: 100px;
175         max-height: 100px;
176     }
177
178     .roo-document-manager-thumb > i.fa,
179     .roo-document-manager-upload-btn > i.fa {
180         line-height: 98px;
181     }
182     
183 }