mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add css for changes in user's profile
This commit is contained in:
parent
ae6a59e782
commit
b240ae3b44
1 changed files with 46 additions and 0 deletions
46
resources/assets/sass/custom.scss
vendored
46
resources/assets/sass/custom.scss
vendored
|
@ -105,3 +105,49 @@ body, button, input, textarea {
|
|||
.notification-page .list-group-item:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.nav-topbar {
|
||||
border-top: 1px solid $gray-300;
|
||||
}
|
||||
.nav-topbar .nav-item {
|
||||
margin: -1px 1.5rem 0;
|
||||
}
|
||||
.nav-topbar .nav-link {
|
||||
border: 1px solid transparent;
|
||||
color: $gray-300;
|
||||
padding: 0.75rem 0;
|
||||
}
|
||||
.nav-topbar .nav-link:focus, .nav-topbar .nav-link:hover {
|
||||
border-top-color: $gray-300;
|
||||
}
|
||||
.nav-topbar .nav-link.disabled {
|
||||
color: $gray-300;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
}
|
||||
.nav-topbar .nav-item.show .nav-link, .nav-topbar .nav-link.active {
|
||||
color: $gray-600;
|
||||
border-top-color: $gray-600;
|
||||
}
|
||||
.nav-topbar .dropdown-menu {
|
||||
margin-top:-1px;
|
||||
}
|
||||
|
||||
.info-overlay {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.info-overlay .info-overlay-text {
|
||||
display: none;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.info-overlay:hover .info-overlay-text {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.info-overlay-text {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue