mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-14 04:17:21 +01:00
63 lines
1.3 KiB
SCSS
63 lines
1.3 KiB
SCSS
.component_ide .component_menubar{
|
|
background: var(--color);
|
|
background: linear-gradient(#585b5d 94%, var(--dark));
|
|
}
|
|
|
|
.component_menubar{
|
|
background: var(--dark);
|
|
color: #f1f1f1;
|
|
position: relative;
|
|
box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
|
|
z-index: 4;
|
|
|
|
.component_container{
|
|
padding: 0;
|
|
color: var(--bg-color);
|
|
font-size: 0.9em;
|
|
> span{ display: flex; }
|
|
}
|
|
|
|
.titlebar{
|
|
flex: 1; padding: 8px 0;
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.action-item{
|
|
.specific{ padding-right: 10px; }
|
|
.component_icon{
|
|
height: 19px;
|
|
width: 19px;
|
|
cursor: pointer;
|
|
padding: 7px 7px 5px 7px
|
|
}
|
|
.download-button .component_icon{
|
|
padding-right: 1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.touch-yes .component_menubar .action-item{
|
|
.component_icon{
|
|
height: 21px;
|
|
width: 21px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.menubar-appear{
|
|
display: inline-block;
|
|
opacity: 0;
|
|
transform: translateY(2px);
|
|
}
|
|
.menubar-appear.menubar-appear-active{
|
|
opacity: 1;
|
|
transform: translateY(0px);
|
|
transition: all 0.25s ease-out;
|
|
transition-delay: 0.30s;
|
|
}
|