nodebb-theme-harmony 1.2.80 → 1.2.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scss/harmony.scss +0 -1
- package/scss/modules/bottom-sheet.scss +0 -52
package/package.json
CHANGED
package/scss/harmony.scss
CHANGED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
.bottom-sheet {
|
|
2
|
-
@include media-breakpoint-down(md) {
|
|
3
|
-
.dropdown-menu {
|
|
4
|
-
display: block;
|
|
5
|
-
visibility: hidden;
|
|
6
|
-
|
|
7
|
-
position: fixed!important;
|
|
8
|
-
inset: auto 0 0 0!important;
|
|
9
|
-
|
|
10
|
-
margin: 0 -1px -1px -1px;
|
|
11
|
-
padding: $spacer * 0.25 !important;
|
|
12
|
-
max-height: 60%;
|
|
13
|
-
|
|
14
|
-
box-shadow: 0 2px 6px rgba(0,0,0,0.35);
|
|
15
|
-
overflow: auto;
|
|
16
|
-
-webkit-overflow-scrolling: touch;
|
|
17
|
-
transform: translate3d(0, 350px, 0);
|
|
18
|
-
transition: transform 0.3s, visibility 0s 0.3s;
|
|
19
|
-
z-index: $zindex-popover;
|
|
20
|
-
padding: 5px 0 10px;
|
|
21
|
-
|
|
22
|
-
border-radius: 0;
|
|
23
|
-
border: 0px;
|
|
24
|
-
border-top: 1px solid $border-color;
|
|
25
|
-
|
|
26
|
-
> li {
|
|
27
|
-
> a, .dropdown-item {
|
|
28
|
-
padding: 10px 20px;
|
|
29
|
-
overflow: hidden;
|
|
30
|
-
text-overflow: ellipsis;
|
|
31
|
-
white-space: nowrap;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&.divider {
|
|
35
|
-
padding: 0;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.dropdown-menu.show {
|
|
41
|
-
transform: none!important;
|
|
42
|
-
visibility: visible;
|
|
43
|
-
transition-delay: 0s;
|
|
44
|
-
top: auto;
|
|
45
|
-
width: auto;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.dropdown-backdrop {
|
|
49
|
-
background-color: rgba(0, 0, 0, .3);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|