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 /*
81 * sm
82 */
83
84 @media (min-width: 768px) { 
85     .roo-document-manager-uploader,
86     .roo-document-manager-loading,
87     .roo-document-manager-preview {
88         height: 200px;
89         max-height: 200px;
90     }
91     
92     .roo-document-manager-thumb,
93     .roo-document-manager-upload-btn {
94         line-height: 200px;
95         height: 200px;
96         max-height: 200px;
97     }
98
99     .roo-document-manager-thumb > i.fa,
100     .roo-document-manager-upload-btn > i.fa {
101         line-height: 198px;
102     }
103     
104 }
105
106 /*
107 * md
108 */
109
110 @media (min-width: 992px) { 
111     .roo-document-manager-uploader,
112     .roo-document-manager-loading,
113     .roo-document-manager-preview {
114         width: 8.33333333%;
115         height: 80px;
116         max-height: 80px;
117     }
118     
119     .roo-document-manager-preview.wide {
120         width: 16.66666666%;
121     }
122     
123     .roo-document-manager-thumb,
124     .roo-document-manager-upload-btn {
125         line-height: 80px;
126         height: 80px;
127         max-height: 80px;
128     }
129
130     .roo-document-manager-thumb > i.fa,
131     .roo-document-manager-upload-btn > i.fa {
132         line-height: 78px;
133     }
134     
135 }
136
137
138 /*
139 * lg
140 */
141
142 @media (min-width: 1200px) {
143     .roo-document-manager-uploader,
144     .roo-document-manager-loading,
145     .roo-document-manager-preview {
146         width: 8.33333333%;
147         height: 100px;
148         max-height: 100px;
149     }
150     
151     .roo-document-manager-preview.wide {
152         width: 16.66666666%;
153     }
154     
155     .roo-document-manager-thumb,
156     .roo-document-manager-upload-btn {
157         line-height: 100px;
158         height: 100px;
159         max-height: 100px;
160     }
161
162     .roo-document-manager-thumb > i.fa,
163     .roo-document-manager-upload-btn > i.fa {
164         line-height: 98px;
165     }
166     
167 }