Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #20 from misteinb/bugfix/primary-button-outline
Browse files Browse the repository at this point in the history
add primary button outline
  • Loading branch information
misteinb authored Jul 30, 2018
2 parents af78780 + 34b0ec3 commit 331d169
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## v2.0.3
### Fixed
- add outline for primary button
- upgrade fluent css version

## v2.0.2
migrating to private package registry and changing package scope.
update references to fluent css

## v2.0.1
### Fixed
- alert close button hover colors didn't work across themes. updated to newer version of fluent-colors
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio
## Docs
1. npm run docs:build
2. npm run docs
3. You can now view style guide in the browser:
3. You can now view style guide in the browser:

- `On Local:` http://localhost:6060/
- `On your network:` http://10.0.75.1:6060/

- `On your network:` http://{machine ip address}:6060/

## Bug/ Issue

Expand Down
3 changes: 2 additions & 1 deletion lib/components/Button/Button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ $outline-focus-border-width: 1px;
&:focus:not(:disabled) {
color: themed('color-text-white');
background-color: themed('color-bg-btn-primary-focus');
outline: $outline-focus-border-width dashed themed('color-border-focus');
outline: $outline-focus-border-width dashed themed('color-outline-btn-primary-focus');
outline-offset: -2px;
}

&:active:not(:disabled) {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure-iot/ux-fluent-controls",
"version": "2.0.2",
"version": "2.0.3",
"description": "Azure IoT Fluent React Controls",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand All @@ -26,7 +26,7 @@
"node": ">=8"
},
"devDependencies": {
"@azure-iot/ux-fluent-css": "^3.0.0",
"@azure-iot/ux-fluent-css": "^3.0.2",
"@types/chai": "^4.0.4",
"@types/classnames": "^2.2.3",
"@types/enzyme": "^2.8.9",
Expand Down Expand Up @@ -81,7 +81,7 @@
"webpack-dev-server": "^2.9.4"
},
"peerDependencies": {
"@azure-iot/ux-fluent-css": "^3.0.0",
"@azure-iot/ux-fluent-css": "^3.0.2",
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": "16.x",
Expand Down

0 comments on commit 331d169

Please sign in to comment.