integralui-web-grid
Version:
IntegralUI Web - Grid is a native Web Component that displays tabular data sets
35 lines (32 loc) • 1.13 kB
JavaScript
import { c as css } from '../../external/lit-element.js';
const iuiOfficeStyle = css`
.iui-header-enter {
animation-name: iui-combobox-header-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-combobox-header-animate-enter {
0% { box-shadow: 0 0 0 transparent; }
100% { box-shadow: 2px 3px 3px #e5e5e5; }
}
.iui-header-leave {
animation-name: iui-combobox-header-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-combobox-header-animate-leave {
0% { box-shadow: 2px 3px 3px #e5e5e5; }
100% { box-shadow: 0 0 0 transparent; }
}
`;
export { iuiOfficeStyle };