Remove css prefixes in twenty-seventeen.scss
This commit is contained in:
parent
ef9361999b
commit
ade652310a
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -34,7 +34,7 @@
|
|||
*/
|
||||
@mixin link() {
|
||||
box-shadow: 0 1px 0 rgba(15, 15, 15, 1);
|
||||
@include transition( box-shadow ease-in-out 130ms );
|
||||
transition: box-shadow ease-in-out 130ms;
|
||||
|
||||
&:hover {
|
||||
box-shadow: 0 3px 0 rgba(15, 15, 15, 1);
|
||||
|
@ -44,7 +44,7 @@
|
|||
@mixin link_white() {
|
||||
color: #fff;
|
||||
box-shadow: 0 1px 0 rgba(#fff, 1) !important;
|
||||
@include transition( box-shadow ease-in-out 130ms );
|
||||
transition: box-shadow ease-in-out 130ms;
|
||||
|
||||
&:hover {
|
||||
color: #fff !important;
|
||||
|
@ -90,7 +90,7 @@
|
|||
float: none;
|
||||
line-height: 1.5;
|
||||
border-radius: 2px;
|
||||
@include transition( background-color ease-in-out .3s );
|
||||
transition: background-color ease-in-out .3s;
|
||||
}
|
||||
|
||||
span.page-numbers {
|
||||
|
@ -272,7 +272,6 @@ a.remove {
|
|||
text-align: center;
|
||||
border-radius: 100%;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
border: 1px solid #000;
|
||||
|
||||
&:hover {
|
||||
|
@ -818,11 +817,9 @@ button.pswp__button--zoom:hover {
|
|||
text-align: center;
|
||||
font-weight: 800;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
|
||||
&:hover {
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
|
@ -852,7 +849,7 @@ button.pswp__button--zoom:hover {
|
|||
background: #bbb;
|
||||
border-radius: 13em;
|
||||
box-sizing: content-box;
|
||||
@include transition(all,ease-in-out,.3s);
|
||||
transition: all ease-in-out .3s;
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 0;
|
||||
|
@ -868,7 +865,7 @@ button.pswp__button--zoom:hover {
|
|||
top: 7px;
|
||||
right: 17px;
|
||||
border-radius: 13em;
|
||||
@include transition(all,ease-in-out,.3s);
|
||||
transition: all ease-in-out .3s;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -897,7 +894,6 @@ button.pswp__button--zoom:hover {
|
|||
.select2-choice,
|
||||
.select2-choice:hover {
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
}
|
||||
|
||||
.select2-choice {
|
||||
|
@ -979,7 +975,7 @@ button.pswp__button--zoom:hover {
|
|||
margin-left: 4px;
|
||||
margin-right: .5em;
|
||||
border-radius: 100%;
|
||||
@include transform(translateY(2px));
|
||||
transform: translateY(2px);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue