59c37c67d74ccc104c916fd3d0bf29ed497c434d
[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     margin-left: 10px;
18 }
19
20 .roo-document-manager-preview.wide {
21     width: 50%;
22 }
23
24 .roo-document-manager-thumb,
25 .roo-document-manager-upload-btn {
26     width : 100%;
27     height: 100px;
28     line-height: 100px;
29     max-height: 100px;
30     border: 1px solid @gray-lighter;
31     -webkit-box-shadow: 1px 0px 5px 0px fade(@gray-light, 75%);
32     -moz-box-shadow: 1px 0px 5px 0px fade(@gray-light, 75%);
33     box-shadow: 1px 0px 5px 0px fade(@gray-light, 75%);
34 }
35
36 .roo-document-manager-thumb > i.fa,
37 .roo-document-manager-upload-btn > i.fa {
38     width: 100%;
39     line-height: 98px;
40     text-align: center;
41     vertical-align: middle;
42     color: @gray-light;
43     font-size: 2.5em;
44 }
45
46 .roo-document-manager-thumb > i.fa {
47     font-size: 2.5em;
48 }
49
50 .roo-document-manager-thumb > img {
51     width: 100%;
52     max-height: 100%;
53     text-align: center;
54     vertical-align: middle;
55 }
56
57 .roo-document-manager-preview > .close {
58     position: absolute;
59     top: 0px;
60     right: 3px;
61     font-size: 20px;
62     opacity: 1;
63 }
64
65 .roo-document-manager-preview > .close:hover {
66     color: @gray-dark;
67 }
68
69 .roo-document-manager-preview.disabled > .roo-document-manager-thumb > img {
70     -webkit-filter: grayscale(100%);
71        -moz-filter: grayscale(100%);
72          -o-filter: grayscale(100%);
73         -ms-filter: grayscale(100%);
74             filter: grayscale(100%); 
75 }
76
77 .roo-document-manager-preview.disabled > .close {
78     display: none !important;
79 }
80
81 .roo-document-manager-preview > .roo-document-manager-thumb > .fa {
82     position: absolute;
83     left: -5px;
84     top: -5px;
85     width: 25px;
86     height: 25px;
87     -webkit-border-radius: 50%;
88     -moz-border-radius: 50%;
89     border-radius: 50%;
90     line-height: 25px;
91     text-align: center;
92     background-color: @body-bg;
93     /*border: inherit;*/
94     font-size: 1.8em;
95 }
96
97 .roo-document-manager-preview > .roo-document-manager-thumb.bottom > .fa {
98     top: inherit;
99     bottom: -5px;
100 }
101
102 .roo-document-manager-preview > .roo-document-manager-thumb.primary > .fa {
103     color : @brand-primary
104 }
105
106 .roo-document-manager-preview > .roo-document-manager-thumb.border {
107     border: 3px solid @brand-primary;
108 }
109
110
111 /*
112 * sm
113 */
114
115 @media (min-width: 768px) { 
116     .roo-document-manager-uploader,
117     .roo-document-manager-loading,
118     .roo-document-manager-preview {
119         height: 200px;
120         max-height: 200px;
121     }
122     
123     .roo-document-manager-thumb,
124     .roo-document-manager-upload-btn {
125         line-height: 200px;
126         height: 200px;
127         max-height: 200px;
128     }
129
130     .roo-document-manager-thumb > i.fa,
131     .roo-document-manager-upload-btn > i.fa {
132         line-height: 198px;
133     }
134     
135 }
136
137 /*
138 * md
139 */
140
141 @media (min-width: 992px) { 
142     .roo-document-manager-uploader,
143     .roo-document-manager-loading,
144     .roo-document-manager-preview {
145         width: 8.33333333%;
146         height: 80px;
147         max-height: 80px;
148     }
149     
150     .roo-document-manager-preview.wide {
151         width: 16.66666666%;
152     }
153     
154     .roo-document-manager-thumb,
155     .roo-document-manager-upload-btn {
156         line-height: 80px;
157         height: 80px;
158         max-height: 80px;
159     }
160
161     .roo-document-manager-thumb > i.fa,
162     .roo-document-manager-upload-btn > i.fa {
163         line-height: 78px;
164     }
165     
166 }
167
168
169 /*
170 * lg
171 */
172
173 @media (min-width: 1200px) {
174     .roo-document-manager-uploader,
175     .roo-document-manager-loading,
176     .roo-document-manager-preview {
177         width: 8.33333333%;
178         height: 100px;
179         max-height: 100px;
180     }
181     
182     .roo-document-manager-preview.wide {
183         width: 16.66666666%;
184     }
185     
186     .roo-document-manager-thumb,
187     .roo-document-manager-upload-btn {
188         line-height: 100px;
189         height: 100px;
190         max-height: 100px;
191     }
192
193     .roo-document-manager-thumb > i.fa,
194     .roo-document-manager-upload-btn > i.fa {
195         line-height: 98px;
196     }
197     
198 }