From 0c0d0989b2b716c909379629a9280a0c928cb09b Mon Sep 17 00:00:00 2001 From: Francisco Salas Date: Thu, 26 Jan 2023 10:34:18 +0100 Subject: [PATCH] replace gray(' for $gray- --- .../feature-list-container.component.scss | 4 ++-- .../feature-list-cropfield.component.scss | 6 +++--- .../feature-list-croppingscheme.component.scss | 6 +++--- .../components/feature-list/feature-list.component.scss | 4 ++-- .../fm-map/components/item-list/item-list.component.scss | 4 ++-- .../item-widget-list/item-widget-list.component.scss | 4 ++-- .../selected-item-container.component.scss | 4 ++-- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.scss b/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.scss index c14a57a..68bded7 100644 --- a/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.scss +++ b/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.scss @@ -3,12 +3,12 @@ .row { - border-bottom: 1px solid gray('500'); + border-bottom: 1px solid $gray-500; user-select: none; } .row.selected { - background-color: gray('100'); + background-color: $gray-100; } @media screen and (min-width: 44rem) { diff --git a/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.scss b/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.scss index 091b8bb..0c480cc 100644 --- a/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.scss +++ b/projects/common-map/src/fm-map/components/feature-list-cropfield/feature-list-cropfield.component.scss @@ -6,17 +6,17 @@ fm-map-feature-list-feature-container { } .row { - border-bottom: 1px solid gray('500'); + border-bottom: 1px solid $gray-500; user-select: none; padding-left:1.5rem; } .row.selected { - background-color: gray('100'); + background-color: $gray-100; } .cropfields { - border-top: 1px solid gray('500'); + border-top: 1px solid $gray-500; margin-left: -1.25rem; margin-right: -1.25rem; } diff --git a/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.scss b/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.scss index 2bcf68b..79ea26a 100644 --- a/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.scss +++ b/projects/common-map/src/fm-map/components/feature-list-croppingscheme/feature-list-croppingscheme.component.scss @@ -6,17 +6,17 @@ fm-map-feature-list-feature-container { } .row { - border-bottom: 1px solid gray('500'); + border-bottom: 1px solid $gray-500; user-select: none; padding-left:1.5rem; } .row.selected { - background-color: gray('100'); + background-color: $gray-100; } .farms { - border-top: 1px solid gray('500'); + border-top: 1px solid $gray-500; margin-left: -1.25rem; margin-right: -1.25rem; } diff --git a/projects/common-map/src/fm-map/components/feature-list/feature-list.component.scss b/projects/common-map/src/fm-map/components/feature-list/feature-list.component.scss index 6a0803d..7e8b6e5 100644 --- a/projects/common-map/src/fm-map/components/feature-list/feature-list.component.scss +++ b/projects/common-map/src/fm-map/components/feature-list/feature-list.component.scss @@ -6,10 +6,10 @@ fm-map-feature-list-feature-container { } .row { - border-bottom: 1px solid gray('500'); + border-bottom: 1px solid $gray-500; user-select: none; } .row.selected { - background-color: gray('100'); + background-color: $gray-100; } diff --git a/projects/common-map/src/fm-map/components/item-list/item-list.component.scss b/projects/common-map/src/fm-map/components/item-list/item-list.component.scss index 16982ec..36a067f 100644 --- a/projects/common-map/src/fm-map/components/item-list/item-list.component.scss +++ b/projects/common-map/src/fm-map/components/item-list/item-list.component.scss @@ -7,7 +7,7 @@ .widget { position:relative; - border: 1px solid gray('500'); + border: 1px solid $gray-500; user-select: none; display:inline-block; width:50%; @@ -28,7 +28,7 @@ } .widget:hover { - background-color: gray('100'); + background-color: $gray-100; } .widget-container { diff --git a/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.scss b/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.scss index 622a821..92bc338 100644 --- a/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.scss +++ b/projects/common-map/src/fm-map/components/item-widget-list/item-widget-list.component.scss @@ -7,7 +7,7 @@ .widget { position:relative; - border: 1px solid gray('500'); + border: 1px solid $gray-500; user-select: none; display:inline-block; width:50%; @@ -28,7 +28,7 @@ } .widget:hover { - background-color: gray('100'); + background-color: $gray-100; } .widget-container { diff --git a/projects/common-map/src/fm-map/components/selected-item-container/selected-item-container.component.scss b/projects/common-map/src/fm-map/components/selected-item-container/selected-item-container.component.scss index 8bd6f0a..34636d4 100644 --- a/projects/common-map/src/fm-map/components/selected-item-container/selected-item-container.component.scss +++ b/projects/common-map/src/fm-map/components/selected-item-container/selected-item-container.component.scss @@ -3,11 +3,11 @@ .row { - border-bottom: 1px solid gray('500'); + border-bottom: 1px solid $gray-500; user-select: none; } .row:hover { - background-color: gray('100'); + background-color: $gray-100; }