Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #96 from ckeditor/t/95
Browse files Browse the repository at this point in the history
Other: The `.ck-balloon-panel` arrow styles need an update after recent `BalloonPanelView` refactoring. Closes #95.

BREAKING CHANGE: The (`.ck-balloon-panel_arrow_nw`–`.ck-balloon-panel_arrow_ne`) and (`.ck-balloon-panel_arrow_sw`–`.ck-balloon-panel_arrow_se`) class pairs have been swapped to reflect the actual placement of the arrow with respect to the balloon.
  • Loading branch information
szymonkups committed May 30, 2017
2 parents b263d5f + d5b7e33 commit f95af00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions theme/components/panel/balloonpanel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ $ck-balloon-arrow-half-width: 10px;
}
}

&_ne {
&_nw {
&:before,
&:after {
left: 2 * $ck-balloon-arrow-half-width;
top: -$ck-balloon-arrow-height;
}
}

&_nw {
&_ne {
&:before,
&:after {
right: 2 * $ck-balloon-arrow-half-width;
Expand All @@ -94,15 +94,15 @@ $ck-balloon-arrow-half-width: 10px;
}
}

&_se {
&_sw {
&:before,
&:after {
left: 2 * $ck-balloon-arrow-half-width;
bottom: -$ck-balloon-arrow-height;
}
}

&_sw {
&_se {
&:before,
&:after {
right: 2 * $ck-balloon-arrow-half-width;
Expand Down

0 comments on commit f95af00

Please sign in to comment.