Browse Source

Build patch 1.4.1

pull/1533/head
jlukic 10 years ago
parent
commit
f751dfb68c
7 changed files with 14 additions and 5 deletions
  1. 6
      RELEASE-NOTES.md
  2. 2
      dist/components/button.css
  3. 2
      dist/components/button.min.css
  4. 2
      dist/semantic.css
  5. 2
      dist/semantic.min.css
  6. 2
      package.json
  7. 3
      src/themes/default/elements/button.variables

6
RELEASE-NOTES.md

@ -1,5 +1,11 @@
## RELEASE NOTES
### Version 1.4.1 - December 23, 2014
**Bugs**
- **Button** - Fixes issue with ``will-change`` property added to ``ui button`` causing layout z-indexing issues (dropdown button)
### Version 1.4.0 - December 22, 2014
[Browse Issues for 1.4.0](https://github.com/Semantic-Org/Semantic-UI/issues?q=milestone%3A1.4.0)

2
dist/components/button.css

@ -43,7 +43,7 @@
user-select: none;
-webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
will-change: box-shadow, transform, opacity, color, background;
will-change: '';
-webkit-tap-highlight-color: transparent;
}

2
dist/components/button.min.css
File diff suppressed because it is too large
View File

2
dist/semantic.css

@ -442,7 +442,7 @@
user-select: none;
-webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
will-change: box-shadow, transform, opacity, color, background;
will-change: '';
-webkit-tap-highlight-color: transparent;
}

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

2
package.json

@ -1,6 +1,6 @@
{
"name": "semantic-ui",
"version": "1.4.0",
"version": "1.4.1",
"title": "Semantic UI",
"description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.",
"homepage": "http://www.semantic-ui.com",

3
src/themes/default/elements/button.variables

@ -63,7 +63,10 @@
box-shadow 0.1s @transitionEasing,
background 0.1s @transitionEasing
;
/*
@willChange: box-shadow, transform, opacity, color, background;
*/
@willChange: '';
/*-------------------
Group

Loading…
Cancel
Save