io.github.palexdev.mfxresources.sass.components.tooltips._tooltips-base.scss Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
The newest version!
@use '../../abstracts/maps' as *;
@use '../../themes/theme' as *;
$base-styles: (
content: (
mfx-offset: '8 8'
),
) !default;
@mixin TooltipsBase($overrides: ()) {
/****************************************************************************************************
* Popups and Tooltips Shared Properties
****************************************************************************************************/
$styles: DeepMerge($base-styles, $overrides);
.mfx-popup .content,
.mfx-tooltip .content {
@include ApplyStyles($styles, content);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy