Skip to content

Commit

Permalink
Updated distribution to version 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Sep 3, 2015
1 parent 29de4b2 commit 5c88d4a
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 20 deletions.
17 changes: 10 additions & 7 deletions definitions/collections/form.less
Original file line number Diff line number Diff line change
Expand Up @@ -212,17 +212,26 @@
---------------------*/

/* Block */
.ui.form .field .ui.input,
.ui.form .fields .field .ui.input,
.ui.form .wide.field .ui.input {
width: 100%;
}

/* Inline */
.ui.form .inline.fields .field:not(.wide) .ui.input,
.ui.form .inline.field:not(.wide) .ui.input {
width: auto;
vertical-align: middle;
}

/* Auto Input */
.ui.form .fields .field .ui.input input,
.ui.form .field .ui.input input {
width: auto;
}

/* Full Width */
/* Full Width Input */
.ui.form .ten.fields .ui.input input,
.ui.form .nine.fields .ui.input input,
.ui.form .eight.fields .ui.input input,
Expand All @@ -237,12 +246,6 @@
width: 0px;
}

/* Inline */
.ui.form .inline.fields .field:not(.wide) .ui.input,
.ui.form .inline.field:not(.wide) .ui.input {
width: 100%;
}

/*--------------------
Dividers
---------------------*/
Expand Down
25 changes: 18 additions & 7 deletions definitions/elements/input.less
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@
box-shadow: @focusBoxShadow;
}
.ui.input.focus input::-webkit-input-placeholder,
.ui.input input:focus input::-webkit-input-placeholder {
.ui.input input:focus::-webkit-input-placeholder {
color: @placeholderFocusColor;
}
.ui.input.focus input::-moz-placeholder,
.ui.input input:focus input::-moz-placeholder {
.ui.input input:focus::-moz-placeholder {
color: @placeholderFocusColor;
}
.ui.input.focus input::-ms-input-placeholder,
.ui.input input:focus input::-ms-input-placeholder {
.ui.input input:focus::-ms-input-placeholder {
color: @placeholderFocusColor;
}

Expand Down Expand Up @@ -344,17 +344,17 @@

/* Regular Label on Right */
.ui[class*="right labeled"].input input {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-right-color: transparent;
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
border-right-color: transparent !important;
}
.ui[class*="right labeled"].input input + .label {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}

.ui[class*="right labeled"].input input:focus {
border-right-color: @focusBorderColor;
border-right-color: @focusBorderColor !important;
}

/* Corner Label */
Expand Down Expand Up @@ -419,6 +419,7 @@
.ui.action.input:not([class*="left action"]) > input {
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
border-right-color: transparent !important;
}
.ui.action.input:not([class*="left action"]) > .dropdown,
.ui.action.input:not([class*="left action"]) > .button,
Expand All @@ -431,10 +432,16 @@
border-radius: 0px @borderRadius @borderRadius 0px;
}

/* Input Focus */
.ui.action.input:not([class*="left action"]) input:focus {
border-right-color: @focusBorderColor !important;
}

/* Button on Left */
.ui[class*="left action"].input > input {
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
border-left-color: transparent !important;
}
.ui[class*="left action"].input > .dropdown,
.ui[class*="left action"].input > .button,
Expand All @@ -446,6 +453,10 @@
.ui[class*="left action"].input > .buttons:first-child > .button {
border-radius: @borderRadius 0px 0px @borderRadius;
}
/* Input Focus */
.ui[class*="left action"].input > input:focus {
border-left-color: @focusBorderColor !important;
}

/*--------------------
Inverted
Expand Down
6 changes: 3 additions & 3 deletions definitions/modules/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -3305,9 +3305,9 @@ $.fn.dropdown.settings = {

// property names for remote query
fields: {
values : 'values',
name : 'name',
value : 'value'
values : 'values', // grouping for all dropdown values
name : 'name', // displayed dropdown text
value : 'value' // actual dropdown value
},

selector : {
Expand Down
2 changes: 1 addition & 1 deletion definitions/modules/embed.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ $.fn.embed.settings = {
templates: {
iframe : function(url, parameters) {
return ''
+ '<iframe src="' + url + '?=' + parameters + '"'
+ '<iframe src="' + url + '?' + parameters + '"'
+ ' width="100%" height="100%"'
+ ' frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'
;
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var
Package.describe({
name : 'semantic:ui',
summary : 'Semantic UI - LESS Release of Semantic UI',
version : '2.1.2',
version : '2.1.3',
git : 'git://github.com/Semantic-Org/Semantic-UI-LESS.git',
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-less",
"version": "2.1.2",
"version": "2.1.3",
"title": "Semantic UI",
"description": "LESS Only distribution of Semantic UI",
"homepage": "http://www.semantic-ui.com",
Expand Down

0 comments on commit 5c88d4a

Please sign in to comment.