mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
* [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
44 lines
776 B
CSS
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;
|
|
}
|