Skip to content

Commit

Permalink
Merge pull request #515 from LuccaSA/4.0.3
Browse files Browse the repository at this point in the history
4.0.3
  • Loading branch information
jefBinomed authored Mar 5, 2018
2 parents 4bc69c6 + 834ec22 commit 49278b2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
### Breaking Changes
### Changes (non-breaking)
### Bug fixes
The SASS build was breaking when `$prefix` was empty.

## 4.0.3 - [release](https://github.com/LuccaSA/lucca-ui/releases/tag/4.0.3)
### Bug fixes
- The SASS build was breaking when `$prefix` was empty.
- Remove browser input clear that was previously removed by `normalize.css`

## 4.0.2 - [release](https://github.com/LuccaSA/lucca-ui/releases/tag/4.0.2)
### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion dist/lucca-ui.global.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lucca-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lucca-ui",
"version": "4.0.2",
"version": "4.0.3",
"description": "less and js framework by lucca",
"main": "Gruntfile.js",
"dependencies": {
Expand Down
11 changes: 11 additions & 0 deletions scss/core/elements/input/_input.common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,17 @@
&:-moz-placeholder { color: luiTheme(element, field, input, placeholder-color); }
}

// removes webkit search clear button
&[type="search"]::-webkit-search-cancel-button, &[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
// removes IE/Edge clear button
&[type="search"]::-ms-clear
input[type="search"]::-ms-clear {
display: none;
}

// Textarea specifics
// ====
textarea {
Expand Down

0 comments on commit 49278b2

Please sign in to comment.