app/assets/stylesheets/semantic-ui/elements/_input.scss in semantic-ui-sass-2.2.12.1 vs app/assets/stylesheets/semantic-ui/elements/_input.scss in semantic-ui-sass-2.2.14
- old
+ new
@@ -1,7 +1,7 @@
/*!
- * # Semantic UI 2.2.12 - Input
+ * # Semantic UI 2.2.14 - Input
* http://github.com/semantic-org/semantic-ui/
*
*
* Released under the MIT license
* http://opensource.org/licenses/MIT
@@ -41,13 +41,16 @@
padding: 0.67857143em 1em;
background: #FFFFFF;
border: 1px solid rgba(34, 36, 38, 0.15);
color: rgba(0, 0, 0, 0.87);
border-radius: 0.28571429rem;
- -webkit-transition: box-shadow 0.1s ease, border-color 0.1s ease;
+ -webkit-transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
+ transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
transition: box-shadow 0.1s ease, border-color 0.1s ease;
- box-shadow: none;
+ transition: box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
+ -webkit-box-shadow: none;
+ box-shadow: none;
}
/*--------------------
Placeholder
---------------------*/
@@ -90,11 +93,12 @@
.ui.input input:active,
.ui.input.down input {
border-color: rgba(0, 0, 0, 0.3);
background: #FAFAFA;
color: rgba(0, 0, 0, 0.87);
- box-shadow: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
}
/*--------------------
Loading
---------------------*/
@@ -124,11 +128,12 @@
animation-iteration-count: infinite;
border-radius: 500rem;
border-color: #767676 transparent transparent;
border-style: solid;
border-width: 0.2em;
- box-shadow: 0px 0px 0px 1px transparent;
+ -webkit-box-shadow: 0px 0px 0px 1px transparent;
+ box-shadow: 0px 0px 0px 1px transparent;
}
/*--------------------
Focus
---------------------*/
@@ -136,11 +141,12 @@
.ui.input.focus input,
.ui.input input:focus {
border-color: #85B7D9;
background: #FFFFFF;
color: rgba(0, 0, 0, 0.8);
- box-shadow: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
}
.ui.input.focus input::-webkit-input-placeholder,
.ui.input input:focus::-webkit-input-placeholder {
color: rgba(115, 115, 115, 0.87);
}
@@ -159,11 +165,12 @@
.ui.input.error input {
background-color: #FFF6F6;
border-color: #E0B4B4;
color: #9F3A38;
- box-shadow: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
}
/* Error Placeholder */
.ui.input.error input::-webkit-input-placeholder {
color: #e7bdbc;
@@ -198,10 +205,11 @@
.ui.transparent.input input {
border-color: transparent !important;
background-color: transparent !important;
padding: 0em !important;
- box-shadow: none !important;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important;
border-radius: 0px !important;
}
/* Transparent Icon */
.ui.transparent.icon.input > i.icon {