Fix Froups not displaying correct time and other

This commit is contained in:
Michał Gdula 2022-10-20 15:17:24 +00:00
parent 436a49e3ed
commit 3b24876900
9 changed files with 100 additions and 15 deletions

View file

@ -49,11 +49,12 @@ nav {
justify-content: space-between;
margin: 0 auto 1rem;
padding: 0.5rem;
width: calc(100% - 1.4rem);
width: 100%;
height: auto;
background-color: rgba(21, 21, 21, 0.7333333333);
-webkit-backdrop-filter: blur(69px) saturate(100%) brightness(100%);
backdrop-filter: blur(69px) saturate(100%) brightness(100%);
box-sizing: border-box;
position: -webkit-sticky;
position: sticky;
z-index: 99;
@ -157,7 +158,8 @@ nav .btn {
.defaultSpacing {
margin-bottom: 1rem;
padding: 0.5rem 0.5rem 0 0.5rem;
width: calc(100% - 1.4rem);
width: 100%;
box-sizing: border-box;
}
.defaultSpacing > * {
margin-top: 0;
@ -814,6 +816,7 @@ nav .btn {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
.bans {
@ -868,6 +871,7 @@ nav .btn {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
.user-settings {
@ -925,6 +929,7 @@ nav .btn {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 2;
}
.btn-code {
@ -1057,9 +1062,13 @@ body * {
border-radius: 3px;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
outline: none;
z-index: 1;
filter: brightness(0.5) grayscale(0.3);
}
.btn:disabled img {
display: none;
}
a.btn {
@ -1212,4 +1221,26 @@ a.link:hover {
* {
transition: none !important;
}
}
.hr {
margin: 0.5rem 0;
border: none;
border-top: 0.2rem solid #E8E3E3;
}
.hr-full {
margin-left: -0.5rem;
margin-right: -0.5rem;
}
.hr-bad {
border-color: #B66467;
}
.hr-warning {
border-color: #D8A657;
}
.hr-good {
border-color: #8C977D;
}/*# sourceMappingURL=main.css.map */

View file

@ -115,9 +115,16 @@ body {
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
outline: none;
z-index: 1;
filter: brightness(0.5) grayscale(0.3);
img {
display: none;
}
}
}
@ -296,4 +303,26 @@ a.link {
* {
transition: none !important;
}
}
.hr {
margin: 0.5rem 0;
border: none;
border-top: $border-thickness solid $fg;
}
.hr-full {
margin-left: -0.5rem;
margin-right: -0.5rem;
}
.hr-bad {
border-color: $warning;
}
.hr-warning {
border-color: $alert;
}
.hr-good {
border-color: $page-accent;
}

View file

@ -823,6 +823,7 @@
background-color: $bg;
position: sticky;
top: 0;
z-index: 2;
}
.bans {
@ -885,6 +886,7 @@
background-color: $bg;
position: sticky;
top: 0;
z-index: 2;
}
.user-settings {
@ -951,6 +953,7 @@
background-color: $bg;
position: sticky;
top: 0;
z-index: 2;
}
.btn-code {

View file

@ -12,7 +12,9 @@
margin-bottom: 1rem;
padding: 0.5rem 0.5rem 0 0.5rem;
width: calc(100% - 1.4rem);
width: 100%;
box-sizing: border-box;
>* {
margin-top: 0;

View file

@ -10,12 +10,14 @@ nav {
margin: 0 auto 1rem;
padding: 0.5rem;
width: calc(100% - 1.4rem);
width: 100%;
height: auto;
background-color: $bg-alt;
backdrop-filter: blur(69px) saturate(100%) brightness(100%);
box-sizing: border-box;
position: sticky;
z-index: 99;
top: 1rem;