Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit f77f287

Browse files
committed
Merge branch 'hotfix/undefined_variable_component_active'
2 parents 4dc49bd + 38a7f8c commit f77f287

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## 0.3.1 - 2020-06-17
9+
10+
## Fixed
11+
12+
- Undefined variables in theme ([#40](https://github.com/alvarosaburido/vue-dynamic-forms/issues/40))
13+
814
## 0.3.0 - 2020-06-17
915

1016
## Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@asigloo/vue-dynamic-forms",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Easy way to dynamically create reactive forms in vue based on varying business object model",
55
"author": "Alvaro Saburido <[email protected]>",
66
"license": "MIT",

src/styles/themes/default.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ $input-padding-y: 0.375rem !default;
1111
$input-padding-x: 0.75rem !default;
1212
$input-border-width: 1px !default;
1313
$input-border-color: #e9ecef !default;
14+
$input-color: #495057 !default;
1415
$input-bg: #fff !default;
1516
$input-disabled-bg: #e9ecef;
1617
$input-border-radius: 0.25rem !default;
@@ -24,10 +25,10 @@ $input-height: calc(
2425
);
2526

2627
$input-focus-bg: $input-bg !default;
27-
$input-focus-border-color: lighten($component-active-bg, 25%) !default;
28+
$input-focus-border-color: lighten(#719ece, 25%) !default;
2829
$input-focus-color: $input-color !default;
29-
$input-focus-width: $input-btn-focus-width !default;
30-
$input-focus-box-shadow: $input-btn-focus-box-shadow !default;
30+
$input-focus-width: 2px !default;
31+
$input-focus-box-shadow: $input-box-shadow !default;
3132

3233
$enable-shadows: true !default;
3334

@@ -73,6 +74,7 @@ $input-error-color: #dc3545 !default;
7374
display: block;
7475
width: 100%;
7576
background-color: $input-bg;
77+
color: $input-color;
7678
padding: $input-padding-y $input-padding-x;
7779
font-family: $input-font-family;
7880
font-size: $input-font-size;

0 commit comments

Comments
 (0)