UNPKG

@lidorsystems/integralui-web

Version:

IntegralUI Web - Advanced UI Components for Angular

87 lines (84 loc) 1.84 kB
.iui-datepicker { background: white; border: thin solid #cecece; cursor: default; margin: 0; padding: 2px; overflow: hidden; position: relative; white-space: nowrap; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .iui-datepicker-enter { animation-name: iui-datepicker-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-datepicker-animate-enter { 0% { box-shadow: 0 0 0 transparent; } 100% { box-shadow: 2px 3px 3px #e5e5e5; } } .iui-datepicker-leave { animation-name: iui-datepicker-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-datepicker-animate-leave { 0% { box-shadow: 2px 3px 3px #e5e5e5; } 100% { box-shadow: 0 0 0 transparent; } } .iui-datepicker-header { margin:0 2px 0 0; } .iui-datepicker-header-title { } .iui-datepicker-header-button { display: inline-block; opacity: 0.6; } .iui-datepicker-header-button:hover { opacity: 1; } .iui-datepicker-header-button span { display: block; padding: 0; margin: 0; width: 24px; height: 24px; vertical-align: middle; } .iui-datepicker-header-button-down { float: right; } .iui-datepicker-header-button-down span { background-image: url(../../icons/down-24.png); } /* Disabled State */ .iui-datepicker-disabled { opacity: 0.75; pointer-events: none; }