added vendor prefixes

This commit is contained in:
FezVrasta 2014-09-30 10:20:06 +02:00
parent 176022b793
commit 8767b5425a
3 changed files with 176 additions and 606 deletions

View File

@ -14,20 +14,6 @@
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes input-highlight {
0% {
left: 20%;
width: 20%;
}
99% {
width: 0;
left: 0;
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes input-highlight { @keyframes input-highlight {
0% { 0% {
left: 20%; left: 20%;
@ -415,6 +401,7 @@ body .jumbotron-material-lightgrey,
text-transform: uppercase; text-transform: uppercase;
text-decoration: none; text-decoration: none;
color: rgba(255, 255, 255, 0.84); color: rgba(255, 255, 255, 0.84);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
outline: none !important; outline: none !important;
} }
@ -513,6 +500,7 @@ body .jumbotron-material-lightgrey,
} }
.btn-raised { .btn-raised {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
} }
.btn-raised:active:not(.btn-link) { .btn-raised:active:not(.btn-link) {
@ -600,6 +588,7 @@ body .jumbotron-material-lightgrey,
border-radius: 4px; border-radius: 4px;
margin: 10px 1px; margin: 10px 1px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
} }
.btn-group:active:not(.btn-link), .btn-group:active:not(.btn-link),
@ -613,6 +602,7 @@ body .jumbotron-material-lightgrey,
.btn-group.btn-group-raised, .btn-group.btn-group-raised,
.btn-group-vertical.btn-group-raised { .btn-group-vertical.btn-group-raised {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
} }
.btn-group.btn-group-raised:active:not(.btn-link), .btn-group.btn-group-raised:active:not(.btn-link),
@ -750,6 +740,8 @@ body .jumbotron-material-lightgrey,
padding-top: 15px; padding-top: 15px;
} }
.checkbox { .checkbox {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); transform: rotate(0deg);
} }
.checkbox label { .checkbox label {
@ -761,6 +753,7 @@ body .jumbotron-material-lightgrey,
display: block; display: block;
position: absolute; position: absolute;
left: 0px; left: 0px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s; transition-duration: 0.2s;
} }
.checkbox label .check:after { .checkbox label .check:after {
@ -784,9 +777,6 @@ body .jumbotron-material-lightgrey,
height: 20px; height: 20px;
width: 20px; width: 20px;
-webkit-transition-delay: 0.2s; -webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-ms-transition-delay: 0.2s;
transition-delay: 0.2s; transition-delay: 0.2s;
} }
.checkbox .check, .checkbox .check,
@ -871,9 +861,7 @@ body .jumbotron-material-lightgrey,
border: solid 2px; border: solid 2px;
border-color: #5a5a5a; border-color: #5a5a5a;
-webkit-animation: uncheck 300ms ease-out forwards; -webkit-animation: uncheck 300ms ease-out forwards;
-moz-animation: uncheck 300ms ease-out forwards;
-ms-animation: uncheck 300ms ease-out forwards; -ms-animation: uncheck 300ms ease-out forwards;
-o-animation: uncheck 300ms ease-out forwards;
animation: uncheck 300ms ease-out forwards; animation: uncheck 300ms ease-out forwards;
} }
.checkbox input[type=checkbox]:focus ~ .check:after { .checkbox input[type=checkbox]:focus ~ .check:after {
@ -881,23 +869,17 @@ body .jumbotron-material-lightgrey,
} }
.checkbox input[type=checkbox]:checked ~ .check:before { .checkbox input[type=checkbox]:checked ~ .check:before {
-webkit-animation: check 300ms ease-out forwards; -webkit-animation: check 300ms ease-out forwards;
-moz-animation: check 300ms ease-out forwards;
-ms-animation: check 300ms ease-out forwards; -ms-animation: check 300ms ease-out forwards;
-o-animation: check 300ms ease-out forwards;
animation: check 300ms ease-out forwards; animation: check 300ms ease-out forwards;
} }
.checkbox input[type=checkbox]:not(:checked) ~ .check:after { .checkbox input[type=checkbox]:not(:checked) ~ .check:after {
-webkit-animation: rippleOff 500ms; -webkit-animation: rippleOff 500ms;
-moz-animation: rippleOff 500ms;
-ms-animation: rippleOff 500ms; -ms-animation: rippleOff 500ms;
-o-animation: rippleOff 500ms;
animation: rippleOff 500ms; animation: rippleOff 500ms;
} }
.checkbox input[type=checkbox]:checked ~ .check:after { .checkbox input[type=checkbox]:checked ~ .check:after {
-webkit-animation: rippleOn 500ms; -webkit-animation: rippleOn 500ms;
-moz-animation: rippleOn 500ms;
-ms-animation: rippleOn 500ms; -ms-animation: rippleOn 500ms;
-o-animation: rippleOn 500ms;
animation: rippleOn 500ms; animation: rippleOn 500ms;
} }
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .check:before { .checkbox input[type=checkbox][disabled]:not(:checked) ~ .check:before {
@ -905,6 +887,8 @@ body .jumbotron-material-lightgrey,
} }
.checkbox input[type=checkbox][disabled] ~ .check:after { .checkbox input[type=checkbox][disabled] ~ .check:after {
background-color: rgba(0, 0, 0, 0.84); background-color: rgba(0, 0, 0, 0.84);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg); transform: rotate(-45deg);
} }
.checkbox input[type=checkbox]:checked ~ .check:after, .checkbox input[type=checkbox]:checked ~ .check:after,
@ -986,6 +970,7 @@ body .jumbotron-material-lightgrey,
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
border-top-color: transparent; border-top-color: transparent;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
} }
50% { 50% {
@ -993,6 +978,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1008,6 +994,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1020,6 +1007,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 10px; width: 10px;
height: 21px; height: 21px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1034,6 +1022,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1044,42 +1033,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
transform: rotate(0deg); -webkit-transform: rotate(0deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
}
@-moz-keyframes check {
100% {
top: -3px;
left: 17px;
width: 10px;
height: 21px;
transform: rotate(45deg);
border-color: #0f9d58;
border-left-color: transparent;
border-top-color: transparent;
}
51% {
border-left: transparent;
border-top-color: transparent;
}
50% {
top: 14px;
left: 17px;
width: 4px;
height: 4px;
transform: rotate(45deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
0% {
top: 1px;
left: 12px;
width: 18px;
height: 18px;
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1092,6 +1046,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 10px; width: 10px;
height: 21px; height: 21px;
-ms-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1106,6 +1061,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-ms-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1116,42 +1072,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
transform: rotate(0deg); -ms-transform: rotate(0deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
}
@-o-keyframes check {
100% {
top: -3px;
left: 17px;
width: 10px;
height: 21px;
transform: rotate(45deg);
border-color: #0f9d58;
border-left-color: transparent;
border-top-color: transparent;
}
51% {
border-left: transparent;
border-top-color: transparent;
}
50% {
top: 14px;
left: 17px;
width: 4px;
height: 4px;
transform: rotate(45deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
0% {
top: 1px;
left: 12px;
width: 18px;
height: 18px;
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1164,6 +1085,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 10px; width: 10px;
height: 21px; height: 21px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1178,6 +1100,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1188,6 +1111,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1214,26 +1138,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1254,26 +1158,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOn { @keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1314,26 +1198,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1354,26 +1218,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOff { @keyframes rippleOff {
0% { 0% {
opacity: 0; opacity: 0;
@ -1407,6 +1251,7 @@ body .jumbotron-material-lightgrey,
position: absolute; position: absolute;
left: 10px; left: 10px;
top: 2px; top: 2px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s; transition-duration: 0.2s;
} }
.radio label .circle { .radio label .circle {
@ -1420,6 +1265,8 @@ body .jumbotron-material-lightgrey,
width: 15px; width: 15px;
border-radius: 100%; border-radius: 100%;
background-color: rgba(0, 0, 0, 0.84); background-color: rgba(0, 0, 0, 0.84);
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0); transform: scale(0);
} }
.radio label .check:after { .radio label .check:after {
@ -1435,20 +1282,18 @@ body .jumbotron-material-lightgrey,
z-index: 1; z-index: 1;
opacity: 0; opacity: 0;
margin: 0; margin: 0;
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5); transform: scale(1.5);
} }
.radio label input[type=radio]:not(:checked) ~ .check:after { .radio label input[type=radio]:not(:checked) ~ .check:after {
-webkit-animation: rippleOff 500ms; -webkit-animation: rippleOff 500ms;
-moz-animation: rippleOff 500ms;
-ms-animation: rippleOff 500ms; -ms-animation: rippleOff 500ms;
-o-animation: rippleOff 500ms;
animation: rippleOff 500ms; animation: rippleOff 500ms;
} }
.radio label input[type=radio]:checked ~ .check:after { .radio label input[type=radio]:checked ~ .check:after {
-webkit-animation: rippleOn 500ms; -webkit-animation: rippleOn 500ms;
-moz-animation: rippleOn 500ms;
-ms-animation: rippleOn 500ms; -ms-animation: rippleOn 500ms;
-o-animation: rippleOn 500ms;
animation: rippleOn 500ms; animation: rippleOn 500ms;
} }
.radio input[type=radio]:checked ~ .check, .radio input[type=radio]:checked ~ .check,
@ -1599,6 +1444,8 @@ body .jumbotron-material-lightgrey,
display: none; display: none;
} }
.radio input[type=radio]:checked ~ .check { .radio input[type=radio]:checked ~ .check {
-webkit-transform: scale(0.55);
-ms-transform: scale(0.55);
transform: scale(0.55); transform: scale(0.55);
} }
.radio input[type=radio][disabled] ~ .circle { .radio input[type=radio][disabled] ~ .circle {
@ -1627,26 +1474,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1667,26 +1494,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOn { @keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1727,26 +1534,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1767,26 +1554,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOff { @keyframes rippleOff {
0% { 0% {
opacity: 0; opacity: 0;
@ -1869,6 +1636,7 @@ select[multiple].form-control.focus {
pointer-events: none; pointer-events: none;
left: 0px; left: 0px;
top: 5px; top: 5px;
-webkit-transition: 0.2s ease all;
transition: 0.2s ease all; transition: 0.2s ease all;
opacity: 0; opacity: 0;
} }
@ -1902,12 +1670,18 @@ select[multiple].form-control.focus {
height: 2px; height: 2px;
background-color: #5264ae; background-color: #5264ae;
bottom: -1px; bottom: -1px;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0); transform: scaleX(0);
-webkit-transition: -webkit-transform 0s;
transition: transform 0s; transition: transform 0s;
} }
.form-control-wrapper .form-control:focus ~ .material-input:before, .form-control-wrapper .form-control:focus ~ .material-input:before,
.form-control-wrapper .form-control.focus ~ .material-input:before { .form-control-wrapper .form-control.focus ~ .material-input:before {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1); transform: scaleX(1);
-webkit-transition: -webkit-transform 0.2s ease-out;
transition: transform 0.2s ease-out; transition: transform 0.2s ease-out;
} }
.form-control-wrapper .material-input:after { .form-control-wrapper .material-input:after {
@ -1920,6 +1694,8 @@ select[multiple].form-control.focus {
left: 0; left: 0;
pointer-events: none; pointer-events: none;
opacity: 0.9; opacity: 0.9;
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left; transform-origin: left;
} }
.form-control-wrapper .input-lg ~ .material-input:after { .form-control-wrapper .input-lg ~ .material-input:after {
@ -2356,9 +2132,11 @@ select.form-control.focus {
@keyframes input-highlight { @keyframes input-highlight {
0% { 0% {
left: 20%; left: 20%;
-webkit-transform: scaleX(20%);
transform: scaleX(20%); transform: scaleX(20%);
} }
99% { 99% {
-webkit-transform: scaleX(0);
transform: scaleX(0); transform: scaleX(0);
left: 0; left: 0;
opacity: 1; opacity: 1;
@ -2448,6 +2226,7 @@ legend {
} }
.list-group .list-group-item .row-content { .list-group .list-group-item .row-content {
display: inline-block; display: inline-block;
width: -webkit-calc(100% - 92px);
width: calc(100% - 92px); width: calc(100% - 92px);
min-height: 66px; min-height: 66px;
} }
@ -2462,6 +2241,7 @@ legend {
cursor: pointer; cursor: pointer;
} }
.list-group .list-group-item .row-content .action-secondary ~ * { .list-group .list-group-item .row-content .action-secondary ~ * {
max-width: -webkit-calc(100% - 30px);
max-width: calc(100% - 30px); max-width: calc(100% - 30px);
} }
.list-group .list-group-item .row-content .least-content { .list-group .list-group-item .row-content .least-content {
@ -2484,6 +2264,7 @@ legend {
} }
.list-group .list-group-separator:before { .list-group .list-group-separator:before {
content: ""; content: "";
width: -webkit-calc(100% - 90px);
width: calc(100% - 90px); width: calc(100% - 90px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(0, 0, 0, 0.1);
float: right; float: right;
@ -3062,22 +2843,20 @@ fieldset[disabled] .navbar .btn-link:focus {
border-radius: 2px; border-radius: 2px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
height: 0; height: 0;
-moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s; -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
-moz-transform: translateY(200%);
-webkit-transform: translateY(200%); -webkit-transform: translateY(200%);
-ms-transform: translateY(200%);
transform: translateY(200%); transform: translateY(200%);
} }
.snackbar.snackbar-opened { .snackbar.snackbar-opened {
padding: 14px 15px; padding: 14px 15px;
margin-bottom: 20px; margin-bottom: 20px;
height: auto; height: auto;
-moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s;
-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s; -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s;
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, height 0 linear 0.2s; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, height 0 linear 0.2s;
-moz-transform: none;
-webkit-transform: none; -webkit-transform: none;
-ms-transform: none;
transform: none; transform: none;
} }
.snackbar.toast { .snackbar.toast {
@ -3108,6 +2887,7 @@ fieldset[disabled] .navbar .btn-link:focus {
.noUi-handle { .noUi-handle {
position: relative; position: relative;
z-index: 1; z-index: 1;
-moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
} }
@ -3128,6 +2908,7 @@ fieldset[disabled] .navbar .btn-link:focus {
height: 10px; height: 10px;
} }
.noUi-horizontal .noUi-handle { .noUi-horizontal .noUi-handle {
-moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
width: 12px; width: 12px;
height: 12px; height: 12px;
@ -3163,6 +2944,7 @@ fieldset[disabled] .navbar .btn-link:focus {
.noUi-handle { .noUi-handle {
border-radius: 100%; border-radius: 100%;
cursor: default; cursor: default;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out; transition: all 0.2s ease-out;
border: 1px solid; border: 1px solid;
} }
@ -3171,6 +2953,8 @@ fieldset[disabled] .navbar .btn-link:focus {
margin: 15px 0; margin: 15px 0;
} }
.noUi-horizontal .noUi-handle.noUi-active { .noUi-horizontal .noUi-handle.noUi-active {
-webkit-transform: scale(2.5);
-ms-transform: scale(2.5);
transform: scale(2.5); transform: scale(2.5);
} }
[disabled].noUi-slider { [disabled].noUi-slider {

View File

@ -13,20 +13,6 @@
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes input-highlight {
0% {
left: 20%;
width: 20%;
}
99% {
width: 0;
left: 0;
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes input-highlight { @keyframes input-highlight {
0% { 0% {
left: 20%; left: 20%;
@ -414,6 +400,7 @@ body .jumbotron-material-lightgrey,
text-transform: uppercase; text-transform: uppercase;
text-decoration: none; text-decoration: none;
color: rgba(255, 255, 255, 0.84); color: rgba(255, 255, 255, 0.84);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
outline: none !important; outline: none !important;
} }
@ -512,6 +499,7 @@ body .jumbotron-material-lightgrey,
} }
.btn-raised { .btn-raised {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
} }
.btn-raised:active:not(.btn-link) { .btn-raised:active:not(.btn-link) {
@ -599,6 +587,7 @@ body .jumbotron-material-lightgrey,
border-radius: 4px; border-radius: 4px;
margin: 10px 1px; margin: 10px 1px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
} }
.btn-group:active:not(.btn-link), .btn-group:active:not(.btn-link),
@ -612,6 +601,7 @@ body .jumbotron-material-lightgrey,
.btn-group.btn-group-raised, .btn-group.btn-group-raised,
.btn-group-vertical.btn-group-raised { .btn-group-vertical.btn-group-raised {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
} }
.btn-group.btn-group-raised:active:not(.btn-link), .btn-group.btn-group-raised:active:not(.btn-link),
@ -749,6 +739,8 @@ body .jumbotron-material-lightgrey,
padding-top: 15px; padding-top: 15px;
} }
.checkbox { .checkbox {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); transform: rotate(0deg);
} }
.checkbox label { .checkbox label {
@ -760,6 +752,7 @@ body .jumbotron-material-lightgrey,
display: block; display: block;
position: absolute; position: absolute;
left: 0px; left: 0px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s; transition-duration: 0.2s;
} }
.checkbox label .check:after { .checkbox label .check:after {
@ -783,9 +776,6 @@ body .jumbotron-material-lightgrey,
height: 20px; height: 20px;
width: 20px; width: 20px;
-webkit-transition-delay: 0.2s; -webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-ms-transition-delay: 0.2s;
transition-delay: 0.2s; transition-delay: 0.2s;
} }
.checkbox .check, .checkbox .check,
@ -870,9 +860,7 @@ body .jumbotron-material-lightgrey,
border: solid 2px; border: solid 2px;
border-color: #5a5a5a; border-color: #5a5a5a;
-webkit-animation: uncheck 300ms ease-out forwards; -webkit-animation: uncheck 300ms ease-out forwards;
-moz-animation: uncheck 300ms ease-out forwards;
-ms-animation: uncheck 300ms ease-out forwards; -ms-animation: uncheck 300ms ease-out forwards;
-o-animation: uncheck 300ms ease-out forwards;
animation: uncheck 300ms ease-out forwards; animation: uncheck 300ms ease-out forwards;
} }
.checkbox input[type=checkbox]:focus ~ .check:after { .checkbox input[type=checkbox]:focus ~ .check:after {
@ -880,23 +868,17 @@ body .jumbotron-material-lightgrey,
} }
.checkbox input[type=checkbox]:checked ~ .check:before { .checkbox input[type=checkbox]:checked ~ .check:before {
-webkit-animation: check 300ms ease-out forwards; -webkit-animation: check 300ms ease-out forwards;
-moz-animation: check 300ms ease-out forwards;
-ms-animation: check 300ms ease-out forwards; -ms-animation: check 300ms ease-out forwards;
-o-animation: check 300ms ease-out forwards;
animation: check 300ms ease-out forwards; animation: check 300ms ease-out forwards;
} }
.checkbox input[type=checkbox]:not(:checked) ~ .check:after { .checkbox input[type=checkbox]:not(:checked) ~ .check:after {
-webkit-animation: rippleOff 500ms; -webkit-animation: rippleOff 500ms;
-moz-animation: rippleOff 500ms;
-ms-animation: rippleOff 500ms; -ms-animation: rippleOff 500ms;
-o-animation: rippleOff 500ms;
animation: rippleOff 500ms; animation: rippleOff 500ms;
} }
.checkbox input[type=checkbox]:checked ~ .check:after { .checkbox input[type=checkbox]:checked ~ .check:after {
-webkit-animation: rippleOn 500ms; -webkit-animation: rippleOn 500ms;
-moz-animation: rippleOn 500ms;
-ms-animation: rippleOn 500ms; -ms-animation: rippleOn 500ms;
-o-animation: rippleOn 500ms;
animation: rippleOn 500ms; animation: rippleOn 500ms;
} }
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .check:before { .checkbox input[type=checkbox][disabled]:not(:checked) ~ .check:before {
@ -904,6 +886,8 @@ body .jumbotron-material-lightgrey,
} }
.checkbox input[type=checkbox][disabled] ~ .check:after { .checkbox input[type=checkbox][disabled] ~ .check:after {
background-color: rgba(0, 0, 0, 0.84); background-color: rgba(0, 0, 0, 0.84);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg); transform: rotate(-45deg);
} }
.checkbox input[type=checkbox]:checked ~ .check:after, .checkbox input[type=checkbox]:checked ~ .check:after,
@ -985,6 +969,7 @@ body .jumbotron-material-lightgrey,
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
border-top-color: transparent; border-top-color: transparent;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
} }
50% { 50% {
@ -992,6 +977,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1007,6 +993,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1019,6 +1006,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 10px; width: 10px;
height: 21px; height: 21px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1033,6 +1021,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1043,42 +1032,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
transform: rotate(0deg); -webkit-transform: rotate(0deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
}
@-moz-keyframes check {
100% {
top: -3px;
left: 17px;
width: 10px;
height: 21px;
transform: rotate(45deg);
border-color: #0f9d58;
border-left-color: transparent;
border-top-color: transparent;
}
51% {
border-left: transparent;
border-top-color: transparent;
}
50% {
top: 14px;
left: 17px;
width: 4px;
height: 4px;
transform: rotate(45deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
0% {
top: 1px;
left: 12px;
width: 18px;
height: 18px;
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1091,6 +1045,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 10px; width: 10px;
height: 21px; height: 21px;
-ms-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1105,6 +1060,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-ms-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1115,42 +1071,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
transform: rotate(0deg); -ms-transform: rotate(0deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
}
@-o-keyframes check {
100% {
top: -3px;
left: 17px;
width: 10px;
height: 21px;
transform: rotate(45deg);
border-color: #0f9d58;
border-left-color: transparent;
border-top-color: transparent;
}
51% {
border-left: transparent;
border-top-color: transparent;
}
50% {
top: 14px;
left: 17px;
width: 4px;
height: 4px;
transform: rotate(45deg);
border-color: #5a5a5a;
border-left-color: #5a5a5a;
border-top-color: #5a5a5a;
}
0% {
top: 1px;
left: 12px;
width: 18px;
height: 18px;
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1163,6 +1084,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 10px; width: 10px;
height: 21px; height: 21px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #0f9d58; border-color: #0f9d58;
border-left-color: transparent; border-left-color: transparent;
@ -1177,6 +1099,7 @@ body .jumbotron-material-lightgrey,
left: 17px; left: 17px;
width: 4px; width: 4px;
height: 4px; height: 4px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1187,6 +1110,7 @@ body .jumbotron-material-lightgrey,
left: 12px; left: 12px;
width: 18px; width: 18px;
height: 18px; height: 18px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg); transform: rotate(0deg);
border-color: #5a5a5a; border-color: #5a5a5a;
border-left-color: #5a5a5a; border-left-color: #5a5a5a;
@ -1213,26 +1137,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1253,26 +1157,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOn { @keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1313,26 +1197,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1353,26 +1217,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOff { @keyframes rippleOff {
0% { 0% {
opacity: 0; opacity: 0;
@ -1406,6 +1250,7 @@ body .jumbotron-material-lightgrey,
position: absolute; position: absolute;
left: 10px; left: 10px;
top: 2px; top: 2px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s; transition-duration: 0.2s;
} }
.radio label .circle { .radio label .circle {
@ -1419,6 +1264,8 @@ body .jumbotron-material-lightgrey,
width: 15px; width: 15px;
border-radius: 100%; border-radius: 100%;
background-color: rgba(0, 0, 0, 0.84); background-color: rgba(0, 0, 0, 0.84);
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0); transform: scale(0);
} }
.radio label .check:after { .radio label .check:after {
@ -1434,20 +1281,18 @@ body .jumbotron-material-lightgrey,
z-index: 1; z-index: 1;
opacity: 0; opacity: 0;
margin: 0; margin: 0;
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5); transform: scale(1.5);
} }
.radio label input[type=radio]:not(:checked) ~ .check:after { .radio label input[type=radio]:not(:checked) ~ .check:after {
-webkit-animation: rippleOff 500ms; -webkit-animation: rippleOff 500ms;
-moz-animation: rippleOff 500ms;
-ms-animation: rippleOff 500ms; -ms-animation: rippleOff 500ms;
-o-animation: rippleOff 500ms;
animation: rippleOff 500ms; animation: rippleOff 500ms;
} }
.radio label input[type=radio]:checked ~ .check:after { .radio label input[type=radio]:checked ~ .check:after {
-webkit-animation: rippleOn 500ms; -webkit-animation: rippleOn 500ms;
-moz-animation: rippleOn 500ms;
-ms-animation: rippleOn 500ms; -ms-animation: rippleOn 500ms;
-o-animation: rippleOn 500ms;
animation: rippleOn 500ms; animation: rippleOn 500ms;
} }
.radio input[type=radio]:checked ~ .check, .radio input[type=radio]:checked ~ .check,
@ -1598,6 +1443,8 @@ body .jumbotron-material-lightgrey,
display: none; display: none;
} }
.radio input[type=radio]:checked ~ .check { .radio input[type=radio]:checked ~ .check {
-webkit-transform: scale(0.55);
-ms-transform: scale(0.55);
transform: scale(0.55); transform: scale(0.55);
} }
.radio input[type=radio][disabled] ~ .circle { .radio input[type=radio][disabled] ~ .circle {
@ -1626,26 +1473,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1666,26 +1493,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOn {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOn { @keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1726,26 +1533,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-moz-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@-ms-keyframes rippleOn { @-ms-keyframes rippleOn {
0% { 0% {
opacity: 0; opacity: 0;
@ -1766,26 +1553,6 @@ body .jumbotron-material-lightgrey,
opacity: 0; opacity: 0;
} }
} }
@-o-keyframes rippleOff {
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
0% {
opacity: 0;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0;
}
}
@keyframes rippleOff { @keyframes rippleOff {
0% { 0% {
opacity: 0; opacity: 0;
@ -1868,6 +1635,7 @@ select[multiple].form-control.focus {
pointer-events: none; pointer-events: none;
left: 0px; left: 0px;
top: 5px; top: 5px;
-webkit-transition: 0.2s ease all;
transition: 0.2s ease all; transition: 0.2s ease all;
opacity: 0; opacity: 0;
} }
@ -1901,12 +1669,18 @@ select[multiple].form-control.focus {
height: 2px; height: 2px;
background-color: #5264ae; background-color: #5264ae;
bottom: -1px; bottom: -1px;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0); transform: scaleX(0);
-webkit-transition: -webkit-transform 0s;
transition: transform 0s; transition: transform 0s;
} }
.form-control-wrapper .form-control:focus ~ .material-input:before, .form-control-wrapper .form-control:focus ~ .material-input:before,
.form-control-wrapper .form-control.focus ~ .material-input:before { .form-control-wrapper .form-control.focus ~ .material-input:before {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1); transform: scaleX(1);
-webkit-transition: -webkit-transform 0.2s ease-out;
transition: transform 0.2s ease-out; transition: transform 0.2s ease-out;
} }
.form-control-wrapper .material-input:after { .form-control-wrapper .material-input:after {
@ -1919,6 +1693,8 @@ select[multiple].form-control.focus {
left: 0; left: 0;
pointer-events: none; pointer-events: none;
opacity: 0.9; opacity: 0.9;
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left; transform-origin: left;
} }
.form-control-wrapper .input-lg ~ .material-input:after { .form-control-wrapper .input-lg ~ .material-input:after {
@ -2355,9 +2131,11 @@ select.form-control.focus {
@keyframes input-highlight { @keyframes input-highlight {
0% { 0% {
left: 20%; left: 20%;
-webkit-transform: scaleX(20%);
transform: scaleX(20%); transform: scaleX(20%);
} }
99% { 99% {
-webkit-transform: scaleX(0);
transform: scaleX(0); transform: scaleX(0);
left: 0; left: 0;
opacity: 1; opacity: 1;
@ -2447,6 +2225,7 @@ legend {
} }
.list-group .list-group-item .row-content { .list-group .list-group-item .row-content {
display: inline-block; display: inline-block;
width: -webkit-calc(100% - 92px);
width: calc(100% - 92px); width: calc(100% - 92px);
min-height: 66px; min-height: 66px;
} }
@ -2461,6 +2240,7 @@ legend {
cursor: pointer; cursor: pointer;
} }
.list-group .list-group-item .row-content .action-secondary ~ * { .list-group .list-group-item .row-content .action-secondary ~ * {
max-width: -webkit-calc(100% - 30px);
max-width: calc(100% - 30px); max-width: calc(100% - 30px);
} }
.list-group .list-group-item .row-content .least-content { .list-group .list-group-item .row-content .least-content {
@ -2483,6 +2263,7 @@ legend {
} }
.list-group .list-group-separator:before { .list-group .list-group-separator:before {
content: ""; content: "";
width: -webkit-calc(100% - 90px);
width: calc(100% - 90px); width: calc(100% - 90px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(0, 0, 0, 0.1);
float: right; float: right;
@ -3061,22 +2842,20 @@ fieldset[disabled] .navbar .btn-link:focus {
border-radius: 2px; border-radius: 2px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
height: 0; height: 0;
-moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s; -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, padding 0 linear 0.2s, height 0 linear 0.2s;
-moz-transform: translateY(200%);
-webkit-transform: translateY(200%); -webkit-transform: translateY(200%);
-ms-transform: translateY(200%);
transform: translateY(200%); transform: translateY(200%);
} }
.snackbar.snackbar-opened { .snackbar.snackbar-opened {
padding: 14px 15px; padding: 14px 15px;
margin-bottom: 20px; margin-bottom: 20px;
height: auto; height: auto;
-moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s;
-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s; -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s;
transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, height 0 linear 0.2s; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0 linear 0.2s, height 0 linear 0.2s;
-moz-transform: none;
-webkit-transform: none; -webkit-transform: none;
-ms-transform: none;
transform: none; transform: none;
} }
.snackbar.toast { .snackbar.toast {
@ -3107,6 +2886,7 @@ fieldset[disabled] .navbar .btn-link:focus {
.noUi-handle { .noUi-handle {
position: relative; position: relative;
z-index: 1; z-index: 1;
-moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
} }
@ -3127,6 +2907,7 @@ fieldset[disabled] .navbar .btn-link:focus {
height: 10px; height: 10px;
} }
.noUi-horizontal .noUi-handle { .noUi-horizontal .noUi-handle {
-moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
width: 12px; width: 12px;
height: 12px; height: 12px;
@ -3162,6 +2943,7 @@ fieldset[disabled] .navbar .btn-link:focus {
.noUi-handle { .noUi-handle {
border-radius: 100%; border-radius: 100%;
cursor: default; cursor: default;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out; transition: all 0.2s ease-out;
border: 1px solid; border: 1px solid;
} }
@ -3170,6 +2952,8 @@ fieldset[disabled] .navbar .btn-link:focus {
margin: 15px 0; margin: 15px 0;
} }
.noUi-horizontal .noUi-handle.noUi-active { .noUi-horizontal .noUi-handle.noUi-active {
-webkit-transform: scale(2.5);
-ms-transform: scale(2.5);
transform: scale(2.5); transform: scale(2.5);
} }
[disabled].noUi-slider { [disabled].noUi-slider {

View File

@ -21,8 +21,10 @@
border-radius: 100%; border-radius: 100%;
background-color: rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.05);
-webkit-transform: scale(1); -webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); transform: scale(1);
-webkit-transform-origin: 50%; -webkit-transform-origin: 50%;
-ms-transform-origin: 50%;
transform-origin: 50%; transform-origin: 50%;
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;