aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/logs/logs.component.scss
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-10-20 13:49:34 +0200
committerChocobozzz <me@florianbigard.com>2021-10-20 13:52:56 +0200
commit1243729899082a71b3a3efb759df1478d9ea5c83 (patch)
treeb8d588fd767237736bb4cc724a1529e780eb46f2 /client/src/app/+admin/system/logs/logs.component.scss
parentd94b8ecf7dddb82b84302854c5fb761f90a82e39 (diff)
downloadPeerTube-1243729899082a71b3a3efb759df1478d9ea5c83.tar.gz
PeerTube-1243729899082a71b3a3efb759df1478d9ea5c83.tar.zst
PeerTube-1243729899082a71b3a3efb759df1478d9ea5c83.zip
Refactor log level choice
Diffstat (limited to 'client/src/app/+admin/system/logs/logs.component.scss')
-rw-r--r--client/src/app/+admin/system/logs/logs.component.scss45
1 files changed, 23 insertions, 22 deletions
diff --git a/client/src/app/+admin/system/logs/logs.component.scss b/client/src/app/+admin/system/logs/logs.component.scss
index b78f4c47f..fefa7efc2 100644
--- a/client/src/app/+admin/system/logs/logs.component.scss
+++ b/client/src/app/+admin/system/logs/logs.component.scss
@@ -59,7 +59,29 @@
59 } 59 }
60} 60}
61 61
62@media screen and (max-width: $small-view) { 62.level-choice {
63 font-size: 80%;
64 vertical-align: text-top;
65
66 &.debug {
67 color: rgb(197, 197, 197);
68 }
69
70 &.info {
71 color: rgb(136, 204, 247);
72 }
73
74 &.warn {
75 color: rgb(252, 166, 7);
76 }
77
78 &.error {
79 color: rgb(250, 5, 5);
80 }
81
82}
83
84@include on-small-main-col {
63 .header { 85 .header {
64 flex-direction: column; 86 flex-direction: column;
65 87
@@ -77,24 +99,3 @@
77 } 99 }
78 } 100 }
79} 101}
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,
87 ng-select,
88 my-button {
89 @include margin-left(0 !important);
90
91 width: 100% !important;
92 margin-bottom: 10px !important;
93 }
94
95 my-button {
96 text-align: center;
97 }
98 }
99 }
100}