1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* (A) WRAPPER - POPUP MODE */
- .picker-wrap, .picker-wrap * { box-sizing: border-box; }
- .picker-wrap.popup {
- /* (A1) FULLSCREEN COVER */
- position: fixed;
- top: 0; left: 0; z-index: 99;
- width: 100vw; height: 100vh;
- /* (A2) BACKGROUND + HIDE BY DEFAULT */
- background: rgba(0, 0, 0, 0.5);
- opacity: 0; visibility: hidden;
- transition: opacity 0.2s;
- /* (A3) CENTER DATE PICKER */
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /* (A4) SHOW POPUP */
- .picker-wrap.show {
- opacity: 1;
- visibility: visible;
- }
- /* (B) CONTAINER */
- .picker {
- max-width: 300px;
- border: 1px solid #eee;
- background: #fafafa;
- padding:1.2em;
- border-radius: 0.4em;
- }
- /* (C) PERIOD SELECTOR */
- .picker-p {
- width: 100%;
- display: flex;
- background: #fff;
- }
- .picker-b, .picker-n {
- font-weight: 700;
- padding: 10px;
- background: #e7e7e7;
- cursor: pointer;
- }
- .picker-m:focus, .picker-y:focus { outline: none; }
- .picker-m, .picker-y {
- flex-grow: 1;
- padding: 10px;
- border: 0;
- background: none;
- }
- /* (D) DAYS IN MONTH */
- /* (D1) GRID LAYOUT */
- .picker-d {
- display: grid;
- grid-template-columns: repeat(7, minmax(0, 1fr));
- }
- .picker-d div { padding: 5px; }
- /* (D2) HEADER - DAY NAMES */
- .picker-d-h { font-weight: 700; }
- /* (D3) BLANK DATES */
- .picker-d-b { background: #e7e7e7; }
- /* (D4) TODAY */
- .picker-d-td { background: #ffe5e5; }
- /* (D5) PICKABLE DATES */
- .picker-d-d:hover {
- cursor: pointer;
- background: #2d68c4;
- color: #fff;
- }
- /* (D6) UNPICKABLE DATES */
- .picker-d-dd {
- color: #aaa;
- background: #ddd;
- }
|