Skip to content

Commit

Permalink
make selection border 1px (#26739) (#26775)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Keairns authored Dec 6, 2018
1 parent b51987b commit 712dea7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
width: 100%;
height: 100%;
pointer-events: none;
//box-shadow: inset 0 0 1px 2px $euiColorPrimary;
border-top: $euiBorderThin;
border-left: $euiBorderThin;
border-style: dashed;
border-color: #d9d9d9;
border-top: 1px dashed $euiColorLightShade;
border-left: 1px dashed $euiColorLightShade;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,19 @@
width: 0;
margin-left: -1px;
margin-top: -12px;
border: 1px dashed #d9d9d9;
border-top: 1px dashed $euiColorLightShade;
border-left: 1px dashed $euiColorLightShade;
}

.canvasRotationHandle--handle {
transform-origin: center center; /* the default, only for clarity */
transform-style: preserve-3d;
display: block;
position: absolute;
height: 8px;
width: 8px;
margin-left: -4px;
height: 9px;
width: 9px;
margin-left: -5px;
margin-top: -3px;
border-radius: 50%;
background-color: #999;
background-color: $euiColorMediumShade;
}

0 comments on commit 712dea7

Please sign in to comment.