File tree 2 files changed +41
-2
lines changed
2 files changed +41
-2
lines changed Original file line number Diff line number Diff line change @@ -276,6 +276,13 @@ $conversation-header-actions-margin: 0 0 0 0.5em;
276
276
// Colors
277
277
$conversation-list-color : $color-text !default ;
278
278
$conversation-list-bg-color : transparent !default ;
279
+ $conversation-list-loading-more-bg-color : transparent !default ;
280
+
281
+ // Sizes
282
+ $conversation-list-loading-more-height : 1.2em !default ;
283
+
284
+ // Spacing
285
+ $conversation-list-loading-more-padding : 2px 0 !default ;
279
286
280
287
// Expansion panel
281
288
//
@@ -650,7 +657,7 @@ $message-list-loading-more-height: 1.2em !default;
650
657
651
658
// Spacing
652
659
$message-list-scroll-wrapper-padding : 0 1.2em 0 0.8em !default ;
653
- $message-list-loading-more-padding : 2px 0 ;
660
+ $message-list-loading-more-padding : 2px 0 !default ;
654
661
$message-list-message-separator-margin-top : 1.2em !default ;
655
662
656
663
// Message separator
Original file line number Diff line number Diff line change 14
14
color : $conversation-list-color ;
15
15
background-color : $conversation-list-bg-color ;
16
16
17
- & > ul {
17
+ & > div > ul {
18
18
@include reset-list ;
19
19
}
20
+
21
+ & __loading-more {
22
+ box-sizing : content-box ;
23
+ @include flex-row ;
24
+ justify-content : center ;
25
+ position :absolute ;
26
+ background-color : $conversation-list-loading-more-bg-color ;
27
+ padding : $conversation-list-loading-more-padding ;
28
+ bottom :0 ;
29
+ left :0 ;
30
+ right :0 ;
31
+ height : $conversation-list-loading-more-height ;
32
+ z-index : 1 ;
33
+
34
+ .#{$prefix } -loader {
35
+ width :$conversation-list-loading-more-height ;
36
+ height :$conversation-list-loading-more-height ;
37
+ }
38
+ .#{$prefix } -loader ::before ,
39
+ .#{$prefix } -loader ::after
40
+ {
41
+ width :100% ;
42
+ height :100% ;
43
+ }
44
+
45
+ }
46
+
47
+ // Perfect scrollbar fix to hide loading more indicator
48
+ .ps__rail-y {
49
+ z-index :2 ;
50
+ }
51
+
20
52
}
You can’t perform that action at this time.
0 commit comments