diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-02-25 07:35:54 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-03-07 10:45:47 +0100 |
commit | e6ab850aacd256dd475482b69f9a6237e4cdcf28 (patch) | |
tree | 30230e5909d6be00a3064a24d6a42799986e818c /core/css | |
parent | b2be083c5e84a3b031994b0a26646df9d7b51d66 (diff) | |
download | nextcloud-server-e6ab850aacd256dd475482b69f9a6237e4cdcf28.tar.gz nextcloud-server-e6ab850aacd256dd475482b69f9a6237e4cdcf28.zip |
Fix tooltip styling for bootstrap 4.3
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/tooltip.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index a23f5d3c34d..ca08e5808c4 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -36,6 +36,7 @@ padding: 10px 0; filter: drop-shadow(0 1px 10px var(--color-box-shadow)); &.in, + &.show, &.tooltip[aria-hidden='false'] { visibility: visible; opacity: 1; @@ -80,7 +81,7 @@ &.top-left, &[x-placement^='top'], &.top-right { - .tooltip-arrow { + .tooltip-arrow, .arrow { bottom: 0; border-width: 10px 10px 0; border-top-color: var(--color-main-background); @@ -99,7 +100,7 @@ &[x-placement^='bottom'], &.bottom-left, &.bottom-right { - .tooltip-arrow { + .tooltip-arrow, .arrow { top: 0; border-width: 0 10px 10px; border-bottom-color: var(--color-main-background); @@ -129,7 +130,7 @@ border-radius: var(--border-radius); } -.tooltip-arrow { +.tooltip-arrow, .tooltip .arrow { position: absolute; width: 0; height: 0; |