// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.
/* Styles for Tooltip */
// Styles applied to the Popper component.
.ZuTooltip-popper {
}
// Styles applied to the Popper component unless disableInteractive={true}.
.ZuTooltip-popperInteractive {
}
// Styles applied to the Popper component if arrow={true}.
.ZuTooltip-popperArrow {
}
// Styles applied to the Popper component unless the tooltip is open.
.ZuTooltip-popperClose {
}
// Styles applied to the tooltip (label wrapper) element.
.ZuTooltip-tooltip {
}
// Styles applied to the tooltip (label wrapper) element if arrow={true}.
.ZuTooltip-tooltipArrow {
}
// Styles applied to the arrow element.
.ZuTooltip-arrow {
}
// Styles applied to the tooltip (label wrapper) element if the tooltip is opened by touch.
.ZuTooltip-touch {
}
// Styles applied to the tooltip (label wrapper) element if placement contains "left".
.ZuTooltip-tooltipPlacementLeft {
}
// Styles applied to the tooltip (label wrapper) element if placement contains "right".
.ZuTooltip-tooltipPlacementRight {
}
// Styles applied to the tooltip (label wrapper) element if placement contains "top".
.ZuTooltip-tooltipPlacementTop {
}
// Styles applied to the tooltip (label wrapper) element if placement contains "bottom".
.ZuTooltip-tooltipPlacementBottom {
}