Files
pms/hotel_calendar_channel_connector/static/src/css/view.css
QS5ELkMu 8b53b6b624 Calendar Improvements (#89)
* [IMP] Allow change adults resizing reservation on calendar

* [IMP] Board Services

* [WIP] Board Service

* [IMP] Calendar Buttons & Default Options

* [WIP] Availability

* [WIP] Availability

* [WIP] Availability

* [IMP] Calendar buttons
2019-01-30 12:42:36 +01:00

44 lines
776 B
CSS

/*
* Hotel Calendar JS v0.0.1a - 2017
* GNU Public License
* Aloxa Solucions S.L. <info@aloxa.eu>
* Alexandre Díaz <alex@aloxa.eu>
*/
/** ANIMATIONS **/
@keyframes channel-manager-changes {
0% {
color: red;
}
5% {
transform: rotate(10deg);
}
10% {
transform: rotate(0deg);
}
15% {
transform: rotate(-10deg);
}
20% {
transform: rotate(0deg);
}
100% {
color: yellow;
}
}
@keyframes channel-manager-changes-text {
from {
color: white;
}
to {
color: black;
}
}
#pms-menu #btn_channel_manager_request.incoming i {
animation-name: channel-manager-changes;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
}