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     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     padding-bottom: 5px;
56 }
57
58 .roo-document-manager-preview > .close {
59     position: absolute;
60     top: 0px;
61     right: 3px;
62     font-size: 20px;
63     opacity: 1;
64 }
65
66 .roo-document-manager-preview > .close:hover {
67     color: @gray-dark;
68 }
69
70 .roo-document-manager-preview.disabled > .roo-document-manager-thumb > img {
71     -webkit-filter: grayscale(100%);
72        -moz-filter: grayscale(100%);
73          -o-filter: grayscale(100%);
74         -ms-filter: grayscale(100%);
75             filter: grayscale(100%); 
76 }
77
78 .roo-document-manager-preview.disabled > .close {
79     display: none !important;
80 }
81
82 .roo-document-manager-preview > .roo-document-manager-thumb > .fa {
83     position: absolute;
84     left: -5px;
85     top: -5px;
86     width: 25px;
87     height: 25px;
88     -webkit-border-radius: 50%;
89     -moz-border-radius: 50%;
90     border-radius: 50%;
91     line-height: 25px;
92     text-align: center;
93     background-color: @body-bg;
94     /*border: inherit;*/
95     font-size: 1.8em;
96 }
97
98 .roo-document-manager-preview > .roo-document-manager-thumb.bottom > .fa {
99     top: inherit;
100     bottom: -5px;
101 }
102
103 .roo-document-manager-preview > .roo-document-manager-thumb.primary > .fa {
104     color : @brand-primary
105 }
106
107 .roo-document-manager-preview > .roo-document-manager-thumb.border-primary {
108     border: 3px solid @brand-primary;
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 }