_social.scss
1.02 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
@import "../material.variables";
@import "../mixins/bi-app/bi-app-ltr";
@import "../app.variables";
@import "../mixins";
:host {
mat-list.profile-list mat-list-item .mat-list-item-content {
padding: 0!important;
font-size: 13px!important;
}
.profile-post {
textarea {
border: 0;
width: 100%;
padding: 8px;
outline: 0;
border-radius: $border-radius-base $border-radius-base 0 0 ;
font-size: $font-size-base;
}
}
.activity-stream {
position: relative;
&::before {
content: '';
position: absolute;
top: 42px;
bottom: 0;
left: 42px;
width: 1px;
background-color: mat-color($foreground, divider);
}
.mat-card {
background-color: transparent;
}
.mat-card-content {
padding-top: 0;
padding-left: 78px;
}
}
}
[dir="rtl"] :host {
.activity-stream {
&::before {
left: auto;
right: 42px;
}
.mat-card-content {
padding-left: o;
padding-right: 78px;
}
}
}