-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathDropzone.scss
More file actions
114 lines (101 loc) · 2.24 KB
/
Dropzone.scss
File metadata and controls
114 lines (101 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.fui-dropzone-root {
width: 100%;
min-width: 150px;
min-height: 180px;
position: relative;
// DISPLAY
display: flex;
//flex-wrap: wrap;
flex-direction: column;
gap: 0 8px;
//justify-content: center;
//align-items: center;
//padding: 23px 0px;
/// label
//color: #646c7f;
text-rendering: optimizeLegibility;
font-size: 1.5em;
//font-family: inherit;
font-family: "Poppins", sans-serif;
text-align: center;
font-weight: 400;
letter-spacing: 0.02857em;
box-sizing: border-box;
@media (max-width: 600px) {
font-size: 1.3em;
}
word-break: normal;
&.clickable {
cursor: pointer;
}
//BORDER
/* &.fui-dropzone-border {
box-sizing: border-box;
border: 1px dashed #0c2358;
border-radius: 10px;
&.fui-hide-border {
border: none;
}
} */
}
.files-ui-header {
min-height: 23px;
//-color: brown;
//box-sizing: border-box;
/* height: 22px;
position: absolute;
top: 0;
*/
cursor: text;
display: flex;
//width: calc(100% - 10px);
width: 100%;
flex-direction: row;
align-items: center;
justify-content: flex-end;
//font-family: "Poppins", sans-serif;
font-family: inherit;
//padding-right: 10px;
font-size: 1rem;
//background-color: rgba(0, 128, 128, 0.249);
@media (max-width: 960px) {
//width: calc(100% - 1px);
//padding-right: 1px;
font-size: 0.8rem;
}
}
.files-ui-footer {
/* border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px; */
box-sizing: border-box;
cursor: text;
/* height: 23px;
position: absolute;
bottom: 0;
left: 0; */
// width: calc(100% - 10px);
width: 100%;
/* display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center; */
//border-top: 1px dotted grey;
//background-color: rgba(128, 128, 128, 0.129);
font-family: inherit;
padding-left: 10px;
font-size: 1rem;
////3 dots break in 1 lines
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1; /* number of lines to show */
line-clamp: 1;
-webkit-box-orient: vertical;
text-align: left;
//background-color: rgba(0, 128, 128, 0.249);
@media (max-width: 960px) {
//width: calc(100% - 1px);
padding-left: 1px;
font-size: 0.9rem;
}
}