mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-28 01:53:25 +00:00
Move values to variables
I didn't end up using these, but it's probably worth keeping for consistency.
This commit is contained in:
@@ -82,7 +82,8 @@ $color-sel-bg: $lighter-grey !default;
|
||||
$color-sel-hover-bg: $lighter-grey !default;
|
||||
|
||||
// Text inputs styles
|
||||
$color-txt-brd: $color-border !default;
|
||||
$color-txt-bg: $lighter-grey !default;
|
||||
$color-txt-brd: $lighter-grey !default;
|
||||
$color-txt-text: $near-black !default;
|
||||
$color-txt-hover-brd: $teal !default;
|
||||
$color-txt-disabled-text: $medium-grey !default;
|
||||
|
||||
@@ -16,9 +16,9 @@ input[type="number"],
|
||||
textarea {
|
||||
@include border-radius($border-radius);
|
||||
padding: ($vpadding-txt - 1px) ($hpadding-txt - 1px); // Minus 1px for border
|
||||
border: 1px solid $lighter-grey;
|
||||
border: 1px solid $color-txt-brd;
|
||||
color: $color-txt-text;
|
||||
background-color: $lighter-grey;
|
||||
background-color: $color-txt-bg;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user