/*! * Copyright (C) 2013-2020 Combodo SARL * * This file is part of iTop. * * iTop is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * iTop is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License */ /* SCSS variables (can be overloaded) */ $ibo-top-bar--height: 54px !default; $ibo-top-bar--padding-left: 16px !default; /* Should be align with the page content padding-left */ $ibo-top-bar--padding-right: 16px !default; $ibo-top-bar--padding-y: 0px !default; $ibo-top-bar--background-color: $ibo-color-white-100 !default; $ibo-top-bar--elements-spacing: 32px !default; $ibo-top-bar--quick-actions--margin-right: $ibo-top-bar--elements-spacing !default; /* CSS variables (can be changed directly from the browser) */ :root{ --ibo-top-bar--height: #{$ibo-top-bar--height}; --ibo-top-bar--padding-left: #{$ibo-top-bar--padding-left}; --ibo-top-bar--padding-right: #{$ibo-top-bar--padding-right}; --ibo-top-bar--padding-y: #{$ibo-top-bar--padding-y}; --ibo-top-bar--background-color: #{$ibo-top-bar--background-color}; --ibo-top-bar--elements-spacing: #{$ibo-top-bar--elements-spacing}; --ibo-top-bar--quick-actions--margin-right: #{$ibo-top-bar--quick-actions--margin-right}; } .ibo-top-bar{ @extend %ibo-vertically-centered-content; height: var(--ibo-top-bar--height); padding: var(--ibo-top-bar--padding-y) var(--ibo-top-bar--padding-right) var(--ibo-top-bar--padding-y) var(--ibo-top-bar--padding-left); background-color: var(--ibo-top-bar--background-color); @extend %ibo-elevation-100; .ibo-breadcrumbs{ flex-grow: 1; /* Occupy as much width as possible */ overflow-x: hidden; /* Avoid glitches when too many items */ } } .ibo-top-bar--quick-actions{ @extend %ibo-vertically-centered-content; margin-right: var(--ibo-top-bar--quick-actions--margin-right); .ibo-global-search{ } }