Re-enable listing of forks when logged out (#14992)

* Re-enable listing of forks when logged out

* Further improvements on repo button logic
This commit is contained in:
Mike L 2021-03-14 15:48:28 +01:00 committed by GitHub
parent f5aaa74b90
commit 9566c9f0c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 6 deletions

View file

@ -1585,6 +1585,7 @@ a.ui.label:hover {
border-left: none;
}
.ui.labeled.button.disabled > .button,
.ui.basic.buttons .button,
.ui.basic.button {
color: var(--color-text-light);

View file

@ -2856,14 +2856,25 @@ tbody.commit-list {
align-items: center;
}
.repo-buttons button[disabled],
.repo-buttons button[disabled] ~ .label {
opacity: var(--opacity-disabled);
}
.repo-buttons .ui.labeled.button > .label {
border-left: 0 !important;
margin: 0 !important;
.repo-buttons .ui.labeled.button {
cursor: initial;
> .label {
border-left: 0 !important;
margin: 0 !important;
}
&.disabled {
pointer-events: inherit !important;
> .button {
pointer-events: none !important;
}
}
}
.tag-code {