Add sign-up button to logged-out web UI (#19250)

This commit is contained in:
Eugen Rochko
2022-09-29 06:21:51 +02:00
committed by GitHub
parent 43b5d5e38d
commit e623c302d5
8 changed files with 43 additions and 4 deletions

View File

@ -134,6 +134,26 @@
}
}
&.button-tertiary {
background: transparent;
padding: 6px 17px;
color: $highlight-text-color;
border: 1px solid $highlight-text-color;
&:active,
&:focus,
&:hover {
background: $ui-highlight-color;
color: $primary-text-color;
border: 0;
padding: 7px 18px;
}
&:disabled {
opacity: 0.5;
}
}
&.button--block {
display: block;
width: 100%;
@ -708,6 +728,10 @@
color: $darker-text-color;
margin-bottom: 20px;
}
.button {
margin-bottom: 10px;
}
}
.emojione {
@ -3671,6 +3695,11 @@ a.status-card.compact:hover {
background: lighten($ui-base-color, 8%);
}
}
&:disabled {
color: $dark-text-color;
cursor: default;
}
}
.column-header__collapsible {