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 .roo-document-manager-preview.disabled > .roo-document-manager-thumb.primary > .fa {
112     color : @gray
113 }
114
115 .roo-document-manager-preview.disabled > .roo-document-manager-thumb.border-primary {
116     border: 3px solid @gray;
117 }
118
119 /*
120 * sm
121 */
122
123 @media (min-width: 768px) { 
124     .roo-document-manager-uploader,
125     .roo-document-manager-loading,
126     .roo-document-manager-preview {
127         height: 200px;
128         max-height: 200px;
129     }
130     
131     .roo-document-manager-thumb,
132     .roo-document-manager-upload-btn {
133         line-height: 200px;
134         height: 200px;
135         max-height: 200px;
136     }
137
138     .roo-document-manager-thumb > i.fa,
139     .roo-document-manager-upload-btn > i.fa {
140         line-height: 198px;
141     }
142     
143 }
144
145 /*
146 * md
147 */
148
149 @media (min-width: 992px) { 
150     .roo-document-manager-uploader,
151     .roo-document-manager-loading,
152     .roo-document-manager-preview {
153         width: 8.33333333%;
154         height: 80px;
155         max-height: 80px;
156     }
157     
158     .roo-document-manager-preview.wide {
159         width: 16.66666666%;
160     }
161     
162     .roo-document-manager-thumb,
163     .roo-document-manager-upload-btn {
164         line-height: 80px;
165         height: 80px;
166         max-height: 80px;
167     }
168
169     .roo-document-manager-thumb > i.fa,
170     .roo-document-manager-upload-btn > i.fa {
171         line-height: 78px;
172     }
173     
174 }
175
176
177 /*
178 * lg
179 */
180
181 @media (min-width: 1200px) {
182     .roo-document-manager-uploader,
183     .roo-document-manager-loading,
184     .roo-document-manager-preview {
185         width: 8.33333333%;
186         height: 100px;
187         max-height: 100px;
188     }
189     
190     .roo-document-manager-preview.wide {
191         width: 16.66666666%;
192     }
193     
194     .roo-document-manager-thumb,
195     .roo-document-manager-upload-btn {
196         line-height: 100px;
197         height: 100px;
198         max-height: 100px;
199     }
200
201     .roo-document-manager-thumb > i.fa,
202     .roo-document-manager-upload-btn > i.fa {
203         line-height: 98px;
204     }
205     
206 }