mirror of
https://github.com/mattermost/focalboard.git
synced 2025-04-11 11:19:56 +02:00
Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com> Co-authored-by: Rajat Dabade <rajat@Rajats-MacBook-Pro.local> Co-authored-by: Scott Bishel <scott.bishel@mattermost.com> Co-authored-by: Jesús Espino <jespinog@gmail.com> Co-authored-by: Paul Esch-Laurent <paul.esch-laurent@mattermost.com> Co-authored-by: Miguel de la Cruz <miguel@mcrx.me> Co-authored-by: kamre <eremchenko@gmail.com> Co-authored-by: Varghese Jose <varghese.jose@tutanota.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: jprusch <rs@schaeferbarthold.de>
163 lines
3.5 KiB
SCSS
163 lines
3.5 KiB
SCSS
.SidebarCategory {
|
|
.octo-sidebar-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-weight: 500;
|
|
padding: 0 16px 0 8px;
|
|
height: 36px;
|
|
align-items: center;
|
|
gap: 4px;
|
|
|
|
&.category {
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:hover {
|
|
display: flex;
|
|
|
|
.octo-sidebar-title {
|
|
color: rgba(var(--sidebar-text-rgb), 1);
|
|
}
|
|
}
|
|
|
|
&.subitem {
|
|
padding-left: 20px;
|
|
color: rgba(var(--sidebar-text-rgb), 0.64);
|
|
font-weight: 400;
|
|
}
|
|
|
|
&.active {
|
|
background: rgba(var(--sidebar-text-rgb), 0.1);
|
|
position: relative;
|
|
color: rgb(var(--sidebar-text-rgb));
|
|
|
|
&:not(.subitem) {
|
|
&::before {
|
|
content: '';
|
|
background: rgb(var(--sidebar-text-active-border-rgb));
|
|
width: 2px;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.no-views {
|
|
color: rgba(var(--sidebar-text-rgb), 0.4);
|
|
|
|
&:hover {
|
|
background-color: rgba(var(--sidebar-bg-rgb));
|
|
}
|
|
}
|
|
|
|
&:not(.no-views) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
> .Icon {
|
|
height: 18px;
|
|
width: 18px;
|
|
margin-right: 8px;
|
|
flex-shrink: 0;
|
|
|
|
&.GalleryIcon {
|
|
fill: rgba(var(--sidebar-text-rgb), 0.3);
|
|
stroke: unset;
|
|
}
|
|
}
|
|
|
|
> .IconButton {
|
|
background-color: var(--sidebar-bg-rgb);
|
|
color: rgb(var(--sidebar-text-rgb));
|
|
margin-left: 4px;
|
|
|
|
&:hover {
|
|
background-color: rgba(var(--sidebar-text-rgb), 0.1);
|
|
}
|
|
}
|
|
|
|
.Menu.left {
|
|
right: -11px;
|
|
}
|
|
|
|
&.expanded {
|
|
.DisclosureTriangleIcon {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
|
|
.DisclosureTriangleIcon {
|
|
transition: 200ms ease-in-out;
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
&.category {
|
|
.MenuWrapper {
|
|
display: none;
|
|
|
|
&.menuOpen {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.MenuWrapper {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.subitem {
|
|
.MenuWrapper {
|
|
display: none;
|
|
|
|
&.menuOpen {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.MenuWrapper {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.MenuWrapper {
|
|
&:hover {
|
|
background: rgba(var(--sidebar-text-rgb), 0.08);
|
|
}
|
|
}
|
|
|
|
.octo-sidebar-title {
|
|
font-weight: 600;
|
|
flex-grow: 1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: flex;
|
|
align-items: baseline;
|
|
color: rgba(var(--sidebar-text-rgb), 0.6);
|
|
|
|
.octo-icon {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.octo-sidebar-name {
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.Menu.noselect.left {
|
|
position: fixed;
|
|
right: calc(100% - 480px + 50px);
|
|
left: calc(240px - 50px);
|
|
}
|
|
}
|