1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 08:28:31 +00:00

Fix balloon popups for metadata.

This commit is contained in:
SirStendec 2017-12-13 20:45:22 -05:00
parent ac6663053f
commit ac35ee5fab
2 changed files with 33 additions and 24 deletions

View file

@ -32,8 +32,8 @@ body {
}
}
&[x-placement^="left"] > .tw-balloon__tail {
right: -3px;
&[x-placement^="right"] > .tw-balloon__tail {
left: -3px;
box-shadow: -1px 1px 0 #dad8de;
.tw-theme--dark & {
@ -45,8 +45,8 @@ body {
}
}
&[x-placement^="right"] > .tw-balloon__tail {
left: -3px;
&[x-placement^="left"] > .tw-balloon__tail {
right: -3px;
box-shadow: 1px -1px 0 #dad8de;
.tw-theme--dark & {
@ -108,16 +108,16 @@ body {
}
}
&[x-placement^="left"] {
&[x-placement^="right"] {
.ffz__tooltip--arrow {
right: -3px;
left: -3px;
border-radius: 0 2px 0 0;
}
}
&[x-placement^="right"] {
&[x-placement^="left"] {
.ffz__tooltip--arrow {
left: -3px;
right: -3px;
border-radius: 0 0 0 2px;
}
}