gridtracker/package.nw/lib/dp-dark.css

75 wiersze
1.1 KiB
CSS
Czysty Zwykły widok Historia

2020-08-26 02:38:51 +00:00
/* [POPUP] */
.picker-wrap {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
2020-08-26 02:38:51 +00:00
opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
}
.picker-wrap.show {
opacity: 1;
visibility: visible;
}
.picker-wrap .picker {
2020-08-26 02:38:51 +00:00
margin: 50vh auto 0 auto;
transform: translateY(-50%);
2020-08-26 02:38:51 +00:00
}
/* [CONTAINER] */
.picker {
2020-08-30 05:38:38 +00:00
max-width: 200px;
border: 1px solid #444;
-webkit-border-radius: 6px;
2020-08-26 02:38:51 +00:00
background: #444;
border-style: outset;
2020-08-30 05:38:38 +00:00
padding: 5px;
}
.picker:hover {
border: 1px solid #888;
2020-08-26 02:38:51 +00:00
}
/* [MONTH + YEAR] */
.picker-m,
.picker-y {
2020-08-30 05:38:38 +00:00
width: 25%;
2020-08-26 02:38:51 +00:00
padding: 5px;
box-sizing: border-box;
2020-08-30 05:38:38 +00:00
/*font-size: 16px;*/
2020-08-26 02:38:51 +00:00
}
/* [DAY] */
.picker-d table {
color: #fff;
border-collapse: separate;
width: 100%;
2020-08-30 05:38:38 +00:00
margin-top: 5px;
2020-08-26 02:38:51 +00:00
}
.picker-d table td {
2020-08-30 05:38:38 +00:00
width: 2em; /* 7 equal columns */
padding: 2px;
2020-08-26 02:38:51 +00:00
text-align: center;
}
/* Header cells */
.picker-d-h td {
font-weight: bold;
}
/* Blank dates */
.picker-d-b {
background: #4e4e4e;
}
/* Pickable Dates */
.picker-d-d:hover {
cursor: pointer;
background: #a33c3c;
}
/* Unpickable Dates */
.picker-d-dd {
color: #888;
background: #4e4e4e;
}