You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/Components/Page/Sidebar/PageSidebarItem.css

51 lines
664 B

.item {
border-left: 3px solid transparent;
color: $sidebarColor;
transition: border-left 0.3s ease-in-out;
}
.isActiveItem {
border-left: 3px solid $themeBlue;
}
.link {
display: block;
padding: 12px 24px;
color: $sidebarColor;
&:hover,
&:focus {
color: $themeBlue;
text-decoration: none;
}
}
.childLink {
composes: link;
padding: 10px 24px;
}
.isActiveLink {
color: $themeBlue;
}
.isActiveParentLink {
background-color: $sidebarActiveBackgroundColor;
}
.iconContainer {
display: inline-block;
margin-right: 7px;
width: 18px;
text-align: center;
}
.noIcon {
margin-left: 25px;
}
.status {
float: right;
}