@lidorsystems/integralui-web
Version:
IntegralUI Web - Advanced UI Components for Angular
46 lines (44 loc) • 1.08 kB
CSS
.iui-button
{
background: #e2e2e2;
border-color: #e2e2e2;
}
.iui-button-enter {
animation-name: iui-button-animate-enter;
animation-delay: 0s;
animation-direction: normal;
animation-duration: 0.25s;
animation-fill-mode: forwards;
animation-iteration-count: 1;
animation-play-state: running;
animation-timing-function: linear;
}
@keyframes iui-button-animate-enter {
0% { box-shadow: 0 0 0 transparent; }
100% { box-shadow: 2px 3px 3px #e5e5e5; }
}
.iui-button-leave {
animation-name: iui-button-animate-leave;
animation-delay: 0s;
animation-direction: normal;
animation-duration: 0.25s;
animation-fill-mode: forwards;
animation-iteration-count: 1;
animation-play-state: running;
animation-timing-function: linear;
}
@keyframes iui-button-animate-leave {
0% { box-shadow: 2px 3px 3px #e5e5e5; }
100% { box-shadow: 0 0 0 transparent; }
}
.iui-button-hovered
{
background: #a5d3fa;
border-color: #a5d3fa;
}
.iui-button-selected
{
background: #0a64ad;
border-color: #0a64ad;
color: white;
}