Skip to content

Commit

Permalink
Repackages files and version uptick to 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Dec 12, 2013
1 parent 86cbe45 commit 8714d7b
Show file tree
Hide file tree
Showing 117 changed files with 435 additions and 253 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ docs/
node_modules
node/server.json
test/coverage/
coverage/

# Numerous always-ignore extensions
*.diff
Expand Down
17 changes: 17 additions & 0 deletions RELEASE NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
## RELEASE NOTES

### Version 0.10.2 - Dec 13, 2013

**New**
- **Button** - Adds VK button
- **Input** - Action inputs now support button groups

**Updates**

**Fixes**
- **Rating** - Fixes vertical alignment with text
- **Dropdown** - Fixes missing easing equations for dropdown javascript animations. Would cause an error when no css transitions were included and jquery easing was not available.

### Version 0.10.1 - Dec 06, 2013

**Fixes**
- **Modal** - Fixes issue with modal animation regression in 0.10.0

### Version 0.10.0 - Dec 05, 2013

**New**
Expand Down
21 changes: 19 additions & 2 deletions build/less/elements/button.less
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
font-style: normal;
text-align: center;
text-decoration: none;
background-image: -webkit-gradient(linear, top left, bottom left, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
border-radius: 0.25em;
Expand Down Expand Up @@ -82,7 +82,7 @@
---------------*/

.ui.button:hover {
background-image: -webkit-gradient(linear, top left, bottom left, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.08)));
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.08)));
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
color: rgba(0, 0, 0, 0.7);
Expand Down Expand Up @@ -454,6 +454,23 @@
color: #FFFFFF;
}

/* vk.com */

.ui.vk.button {
background-color: #4D7198;
color: #FFFFFF;
}

.ui.vk.button:hover {
background-color: #537AA5;
color: #FFFFFF;
}

.ui.vk.button:active {
background-color: #405E7E;
color: #FFFFFF;
}

/*--------------
Icon
---------------*/
Expand Down
7 changes: 5 additions & 2 deletions build/less/elements/input.less
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,17 @@
border-right: none;
}

.ui.action.input > .button {
.ui.action.input > .button,
.ui.action.input > .buttons,
{
display: table-cell;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
white-space: nowrap;
}

.ui.action.input > .button > .icon {
.ui.action.input > .button > .icon,
.ui.action.input > .buttons > .button > .icon {
display: inline;
vertical-align: top;
}
Expand Down
4 changes: 2 additions & 2 deletions build/less/elements/segment.less
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@
background-color: #555555;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
background-image: -webkit-gradient(linear, top left, bottom left, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
background-image: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
color: #FAFAFA;
}
Expand All @@ -413,7 +413,7 @@
background-color: #555555;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
background-image: -webkit-gradient(linear, top left, bottom left, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
background-image: linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
color: #EEEEEE;
}
Expand Down
8 changes: 8 additions & 0 deletions build/less/modules/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -836,4 +836,12 @@ $.fn.dropdown.settings = {

};

// Adds easing
$.extend( $.easing, {
easeOutQuad: function (x, t, b, c, d) {
return -c *(t/=d)*(t-2) + b;
},
});


})( jQuery, window , document );
2 changes: 1 addition & 1 deletion build/less/modules/dropdown.less
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@

.ui.pointing.dropdown .menu .active.item:first-child {
background: transparent -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.03));
background: transparent-webkit-gradient(linear, top left, bottom left, from(transparent), to(rgba(0, 0, 0, 0.03)));
background: transparent-webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.03)));
background: transparent linear-gradient(transparent, rgba(0, 0, 0, 0.03));
}

Expand Down
2 changes: 1 addition & 1 deletion build/less/modules/rating.less
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
.ui.rating {
display: inline-block;
font-size: 0em;
vertical-align: baseline;
vertical-align: middle;
margin: 0em 0.5rem 0em 0em;
}

Expand Down
4 changes: 2 additions & 2 deletions build/minified/collections/breadcrumb.min.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
* # Semantic UI
* Version: 0.10.1
* Version: 0.10.2
* http://github.com/jlukic/semantic-ui
*
*
* Copyright 2013 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 12/06/2013
* Released: 12/12/2013
*/

.ui.breadcrumb{margin:1em 0;display:inline-block;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.5;margin:0 .15em;font-size:1em;color:rgba(0,0,0,.3)}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.5em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.small.breadcrumb{font-size:.75em}.ui.large.breadcrumb{font-size:1.1em}.ui.huge.breadcrumb{font-size:1.3em}
4 changes: 2 additions & 2 deletions build/minified/collections/form.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8714d7b

Please sign in to comment.