/*! * 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 */ $ibo-popover-menu--item--padding-y: 12px !default; $ibo-popover-menu--item--padding-right: 24px !default; $ibo-popover-menu--item--padding-left: 16px !default; $ibo-popover-menu--item--text-color: $ibo-color-grey-900 !default; $ibo-popover-menu--item--hyperlink-color: $ibo-popover-menu--item--text-color !default; $ibo-popover-menu--item--hover-background-color: $ibo-color-grey-200 !default; $ibo-popover-menu--separator--padding: 0 !default; $ibo-popover-menu--separator--margin: 0 !default; $ibo-popover-menu--separator--background-color: $ibo-color-grey-200 !default; .ibo-popover-menu--item{ padding: $ibo-popover-menu--item--padding-y $ibo-popover-menu--item--padding-right $ibo-popover-menu--item--padding-y $ibo-popover-menu--item--padding-left; color: $ibo-popover-menu--item--text-color; @extend %ibo-font-ral-nor-150; a { color: $ibo-popover-menu--item--text-color; } &:hover{ background-color: $ibo-popover-menu--item--hover-background-color; color: inherit; } &.ibo-popover-menu--separator{ padding: $ibo-popover-menu--separator--padding; margin: $ibo-popover-menu--separator--margin; background-color: $ibo-popover-menu--separator--background-color } }