From 8d4d9d6aedd844b84550f584aca2a354779fa9bb Mon Sep 17 00:00:00 2001 From: Ryan Keairns Date: Thu, 6 Dec 2018 11:38:19 -0600 Subject: [PATCH] make selection border 1px (#26739) --- .../border_connection/border_connection.scss | 7 ++----- .../components/rotation_handle/rotation_handle.scss | 11 ++++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/x-pack/plugins/canvas/public/components/border_connection/border_connection.scss b/x-pack/plugins/canvas/public/components/border_connection/border_connection.scss index aa5d9ad1e0f4..ba09edd1090d 100644 --- a/x-pack/plugins/canvas/public/components/border_connection/border_connection.scss +++ b/x-pack/plugins/canvas/public/components/border_connection/border_connection.scss @@ -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; } diff --git a/x-pack/plugins/canvas/public/components/rotation_handle/rotation_handle.scss b/x-pack/plugins/canvas/public/components/rotation_handle/rotation_handle.scss index cd52e29e4f41..820107ff47a5 100644 --- a/x-pack/plugins/canvas/public/components/rotation_handle/rotation_handle.scss +++ b/x-pack/plugins/canvas/public/components/rotation_handle/rotation_handle.scss @@ -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; }