Added -webkit- support for transform transitions

pull/556/head^2
Abdullah Almsaeed 2015-02-15 21:48:14 -05:00
parent 2370bd873e
commit afc7053354
4 changed files with 9 additions and 8 deletions

View File

@ -31,7 +31,7 @@
} }
.direct-chat-messages, .direct-chat-messages,
.direct-chat-contacts { .direct-chat-contacts {
.transition(transform .5s ease-in-out); .transition-transform(.5s ease-in-out);
} }
.direct-chat-text { .direct-chat-text {
.border-radius(5px); .border-radius(5px);

View File

@ -64,7 +64,7 @@
margin-right: 5px; margin-right: 5px;
line-height: 30px; line-height: 30px;
.fa { .fa {
.transition(transform linear .3s); .transition-transform(linear .3s);
&:hover { &:hover {
.rotate(30deg); .rotate(30deg);
} }
@ -74,7 +74,6 @@
#add-new-event { #add-new-event {
.transition(all linear .3s); .transition(all linear .3s);
} }
.external-event { .external-event {
padding: 5px 10px; padding: 5px 10px;
font-weight: bold; font-weight: bold;

10
dist/css/AdminLTE.css vendored
View File

@ -2272,8 +2272,9 @@ table.text-center th {
} }
.direct-chat-messages, .direct-chat-messages,
.direct-chat-contacts { .direct-chat-contacts {
-webkit-transition: transform 0.5s ease-in-out; -webkit-transition: -webkit-transform 0.5s ease-in-out;
-o-transition: transform 0.5s ease-in-out; -moz-transition: -moz-transform 0.5s ease-in-out;
-o-transition: -o-transform 0.5s ease-in-out;
transition: transform 0.5s ease-in-out; transition: transform 0.5s ease-in-out;
} }
.direct-chat-text { .direct-chat-text {
@ -3571,8 +3572,9 @@ fieldset[disabled] .btn-vk.active {
line-height: 30px; line-height: 30px;
} }
.fc-color-picker > li .fa { .fc-color-picker > li .fa {
-webkit-transition: transform linear 0.3s; -webkit-transition: -webkit-transform linear 0.3s;
-o-transition: transform linear 0.3s; -moz-transition: -moz-transform linear 0.3s;
-o-transition: -o-transform linear 0.3s;
transition: transform linear 0.3s; transition: transform linear 0.3s;
} }
.fc-color-picker > li .fa:hover { .fc-color-picker > li .fa:hover {

File diff suppressed because one or more lines are too long