Newer
Older
@import '../../css/vars.scss';
.bg-head-content {
flex-direction: column;
}
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
.dragPreview {
text-align: center;
border-radius: 5px;
background: white;
padding: 10px;
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
color: $primary;
}
.banner-opened {
display: flex;
flex-direction: column;
margin: 10px;
border-radius: 20px;
border: solid 1px #ccc;
position: relative;
padding: 20px;
background: lighten($primary, 10%);
width: 100%;
.title {
white-space: pre;
overflow: hidden;
max-width: 85%;
text-overflow: ellipsis;
z-index: 1;
font-size: 20px;
font-weight: bold;
letter-spacing: 2px;
position: absolute;
top: -18px;
left: 20px;
padding: 0px;
margin: 0px;
color: white;
&-divider {
position: absolute;
width: 99%;
z-index: -1;
top: 17px;
background: lighten($primary, 10%);
height: 1px;
.content {
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
115
116
117
118
display: flex;
font-size: 16px;
&-item {
flex: 1;
padding-left: 20px;
padding-right: 20px;
}
.private {
font-style: italic;
display: flex;
justify-content: flex-end;
align-items: center;
}
}
}
.banner-closed {
display: flex;
flex-direction: column;
margin: 10px;
position: relative;
width: 100%;
.title {
white-space: pre;
overflow: hidden;
max-width: 85%;
text-overflow: ellipsis;
z-index: 1;
font-size: 20px;
font-weight: bold;
letter-spacing: 2px;
position: absolute;
top: -18px;
left: 20px;
padding: 0px;
margin: 0px;
color: white;
}
}
.followIcon {
color: $secondary;
}
.folder-info {
padding-left: 20px;
padding-right: 20px;
}
.badge-folder {
cursor: pointer;
background: $secondary;
margin: 5px;
font-size: 12px;
border-radius: 3px;
opacity: 0.8;
max-width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.filterBadges {
width: 100%;
}
.filterBadges>.badge-eraser {
margin: 5px;
background: none;
cursor: pointer;
color: white;
font-size: 20px;
}
.filterBadges>.label {
white-space: inherit;
}
.filterBadges>.badge-search {
margin: 5px;
background: white;
color: $primary;
cursor: pointer;
}