Merge pull request #5 from misteinb/bugfix/white-outline-for-primary-button

create a variable for primary button outline
This commit is contained in:
Michael Steinberg 2018-07-30 11:53:37 -07:00 коммит произвёл GitHub
Родитель 4f4ae44ebf c76da127d7
Коммит ce55767f51
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,10 @@
# CHANGELOG
## v3.0.2
### Fixed
- add color for primary button focus
- change license from ics to mit
## v3.0.1
### Fixed
- new green for success on light theme

Просмотреть файл

@ -1,8 +1,8 @@
{
"name": "@azure-iot/ux-fluent-css",
"description": "Azure IoT common styles library for CSS, Colors and Themes",
"version": "3.0.1",
"license": "ISC",
"version": "3.0.2",
"license": "MIT",
"engines": {
"node": "^8.0.0"
},

Просмотреть файл

@ -174,6 +174,7 @@ $theme-dark: map-merge((
color-bg-btn-primary-focus: $color-blue-200,
color-bg-btn-primary-pressed-selected: $color-blue-300,
color-bg-btn-primary-disabled: $color-grey-1000,
color-outline-btn-primary-focus: $color-white,
color-bg-btn-danger-rest: $color-red-400,
color-bg-btn-danger-hover: $color-red-500,

Просмотреть файл

@ -174,6 +174,7 @@ $theme-light: map-merge((
color-bg-btn-primary-focus: $color-blue-200,
color-bg-btn-primary-pressed-selected: $color-blue-300,
color-bg-btn-primary-disabled: $color-grey-200,
color-outline-btn-primary-focus: $color-white,
color-bg-btn-danger-rest: $color-red-400,
color-bg-btn-danger-hover: $color-red-500,
@ -192,6 +193,7 @@ $theme-light: map-merge((
color-border-btn-layout-rest: $color-blue-100,
color-border-btn-layout-hover: $color-grey-600,
color-border-btn-layout-focus: $color-grey-600,
color-border-btn-layout-pressed-selected: $color-grey-300,
color-border-btn-layout-disabled: $color-grey-200,
color-border-btn-layout-header-pressed-selected: $color-grey-1200,