make selection border 1px (#26739)

This commit is contained in:
Ryan Keairns 2018-12-06 11:38:19 -06:00 committed by GitHub
parent 84f9638b87
commit 8d4d9d6aed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 10 deletions

View file

@ -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;
}

View file

@ -7,7 +7,8 @@
width: 0;
margin-left: -1px;
margin-top: -12px;
border: 1px dashed #d9d9d9;
border-top: 1px dashed $euiColorLightShade;
border-left: 1px dashed $euiColorLightShade;
}
.canvasRotationHandle--handle {
@ -15,10 +16,10 @@
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;
}