mirror of
https://github.com/plausible/analytics.git
synced 2024-11-27 09:16:25 +03:00
e8f20e67cc
* Load dashboard with react * Rename stast2 to dashboard * Save timeframe on the frontend * Implement current visitors * Implement comparisons * React to route changes * Add modals * Show number of visitors on hover * Show 'Today' for today * Add 30 days * Show referrer drilldown * Arrow keys to go back and forward * Improve comparisons UI * Fix dropdown when clicking on it * Verify API access in a memoized fashion * Test API access * Test stats through controller * Move map formatting from stats controller to stats * Remove unused code * Remove dead code from query * Remove dead code from stats templates * Add stats view test back in * Render modal inside the modal component * Implement google search terms * Add explanation for screen sizes * Separate dashboard JS from the app js
71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
.modal {
|
|
display: none;
|
|
}
|
|
|
|
.modal.is-open {
|
|
display: block;
|
|
}
|
|
|
|
.modal[aria-hidden="false"] .modal__overlay {
|
|
animation: mmfadeIn .2s cubic-bezier(0.0, 0.0, 0.2, 1);
|
|
}
|
|
|
|
.modal[aria-hidden="true"] .modal__overlay {
|
|
animation: mmfadeOut .2s cubic-bezier(0.0, 0.0, 0.2, 1);
|
|
}
|
|
|
|
.modal__overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0,0,0,0.6);
|
|
z-index: 99;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal__container {
|
|
background-color: #fff;
|
|
padding: 1rem 2rem;
|
|
max-width: 860px;
|
|
border-radius: 4px;
|
|
margin: 50px auto;
|
|
box-sizing: border-box;
|
|
min-height: 509px;
|
|
}
|
|
|
|
.modal__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal__close {
|
|
position: fixed;
|
|
color: #b8c2cc;
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
top: 12px;
|
|
right: 24px;
|
|
}
|
|
|
|
.modal__close:before { content: "\2715"; }
|
|
|
|
.modal__content {
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
@keyframes mmfadeIn {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@keyframes mmfadeOut {
|
|
from { opacity: 1; }
|
|
to { opacity: 0; }
|
|
}
|