Files
test/web_studio/static/src/client_action/navbar/navbar.scss
2023-04-14 17:42:23 +08:00

58 lines
1.1 KiB
SCSS

.o_studio_navbar {
background: $o-web-studio-bg-dark;
border-color: $o-web-studio-bg-dark;
&.o_main_navbar {
grid-template-areas: "apps brand sections studiomenu systray";
grid-template-columns:
minmax($o-navbar-height, max-content)
max-content
minmax($o-navbar-height, max-content)
minmax(max-content, 1fr)
fit-content(100%)
}
.o_menu_sections {
color: lightgrey;
height: $o-web-studio-menu-height - 1;
}
.o-studio--menu {
grid-area: studiomenu;
display: flex;
}
.o_web_edit_menu,
.o_web_create_new_model {
color: $o-web-studio-text-inactive;
margin-left: 15px;
padding: 2px 10px 2px 10px;
font-size: 12px;
}
.o_studio_buttons {
grid-area: systray;
display: flex;
.o_web_studio_notes,
.o_web_studio_leave {
height: 100%;
display: table;
margin: 0 20px;
> a {
color: $o-web-studio-bg-light;
display: table-cell;
vertical-align: middle;
}
}
.o_web_studio_leave {
margin: 0;
> a {
font-weight: bold;
}
}
}
}