]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/system/logs/logs.component.scss
Add video-playlist-element.created hook (#4196)
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / system / logs / logs.component.scss
CommitLineData
2c22613c
C
1@import '_variables';
2@import '_mixins';
3
4.logs {
5 font-family: monospace;
6 font-size: 13px;
7 max-height: 500px;
8 overflow-y: auto;
9 background: rgba(0, 0, 0, 0.03);
10 padding: 20px;
11
12 .log-row {
13 margin-top: 1px;
28e0e40d 14 word-break: break-word;
2c22613c
C
15
16 &:hover {
17 background: rgba(0, 0, 0, 0.07);
18 }
19 }
20
21 .log-level {
27bc9586
C
22 @include margin-right(5px);
23
2c22613c 24 font-weight: $font-semibold;
2c22613c
C
25 }
26
566c125d
C
27 .log-by {
28 margin: 0 5px;
29 }
30
2c22613c 31 .warn {
e66883b3 32 color: pvar(--mainColor);
2c22613c
C
33 }
34
35 .error {
36 color: $red;
37 }
566c125d
C
38
39 pre {
40 margin-bottom: 5px;
41 white-space: pre-wrap;
42 word-wrap: break-word;
43 }
2c22613c
C
44}
45
46.header {
47 display: flex;
48 justify-content: flex-end;
49 margin-bottom: 10px;
50
51 .peertube-select-container {
52 @include peertube-select-container(150px);
53 }
54
55 my-button,
7f0d8561
RK
56 .peertube-select-container,
57 ng-select {
27bc9586 58 @include margin-left(10px);
2c22613c
C
59 }
60}
61
7a03209d
K
62@media screen and (max-width: $small-view) {
63 .header {
64 flex-direction: column;
65
66 .peertube-select-container,
7f0d8561 67 ng-select,
7a03209d 68 my-button {
27bc9586
C
69 @include margin-left(0 !important);
70
7a03209d 71 width: 100% !important;
7a03209d
K
72 margin-bottom: 10px !important;
73 }
74
75 my-button {
76 text-align: center;
77 }
78 }
79}
80
81@media screen and (max-width: #{$small-view + $menu-width}) {
82 :host-context(.main-col:not(.expanded)) {
83 .header {
84 flex-direction: column;
85
86 .peertube-select-container,
7f0d8561 87 ng-select,
7a03209d 88 my-button {
27bc9586
C
89 @include margin-left(0 !important);
90
7a03209d 91 width: 100% !important;
7a03209d
K
92 margin-bottom: 10px !important;
93 }
94
95 my-button {
96 text-align: center;
97 }
98 }
99 }
100}