mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
33b5e4abac
* refactor: ensure that [hidden] overrides other display styles * refactor: use numeric font weights * refactor: remove unnecessary Jest mock * refactor: add a fullWidth prop to GeneralSelect * refactor: remove unnecessary label id prop * refactor: the showActive prop is optional * refactor: add hooks for managing query string state * refactor: add a hour/minute timestamp formatter * refactor: add labels to button icons * feat: add new feature metrics page * refactor: remove prev feature metrics page * refactor: use new metric boxes on overview page * refactor: lazy-load the new metrics page * refactor: fix type error when formatting unknown error * refactor: extract interfaces for props * refactor: destructure all props * refactor: expand arg names * refactor: reorg component dirs and files * refactor: improve chart element label * refactor: hide chart dots until hover * refactor: add section titles to environments/applications * refactor: simplify FeatureMetricsHours types * refactor: sort chart tooltip items * refactor: add more chart labels * refactor: always show a dot in single point charts * refactor: improve chart tooltip styles * refactor: adjut metric page spacing * refactor: decrease legend box size * refactor: move date fmt fn inline * refactor: improve chart legend styles * refactor: increase Cypress timeouts * refactor: sort environment and application chips * refactor: format files * refactor: use stable lists of apps and envs * refactor: fix FeatureMetrics dir name * refactor: avoid ScrollToTop on query string change * refactor: use ConditionallyRender instead of inline condition * refactor: use makeStyles instead of styled API
145 lines
2.4 KiB
CSS
145 lines
2.4 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
overflow: auto;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
font-family: 'Sen', sans-serif;
|
|
}
|
|
|
|
button {
|
|
font-family: 'Sen', sans-serif;
|
|
}
|
|
|
|
.MuiButton-root {
|
|
border-radius: 3px;
|
|
text-transform: none;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.skeleton {
|
|
position: relative;
|
|
overflow: hidden;
|
|
background-color: #e2e8f0;
|
|
z-index: 9999;
|
|
box-shadow: none;
|
|
fill: none;
|
|
}
|
|
|
|
.skeleton::before {
|
|
background-color: #e2e8f0;
|
|
content: '';
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0;
|
|
content-visibility: hidden;
|
|
bottom: 0;
|
|
z-index: 5000;
|
|
left: 0;
|
|
}
|
|
|
|
.skeleton::after {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
transform: translateX(-100%);
|
|
background-image: linear-gradient(
|
|
90deg,
|
|
rgba(255, 255, 255, 0) 0,
|
|
rgba(255, 255, 255, 0.2) 100%,
|
|
rgba(255, 255, 255, 0.5) 100%,
|
|
rgba(255, 255, 255, 0)
|
|
);
|
|
animation: shimmer 3s infinite;
|
|
content: '';
|
|
z-index: 5001;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
100% {
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
|
|
:root {
|
|
/* FONT SIZE */
|
|
--h1-size: 1.25rem;
|
|
--p-size: 1rem;
|
|
--caption-size: 0.9rem;
|
|
|
|
/* PADDING */
|
|
--card-padding: 2rem;
|
|
--card-padding-x: 2rem;
|
|
--card-padding-y: 2rem;
|
|
--card-header-padding: 1rem 2rem;
|
|
--drawer-padding: 1rem 1.5rem;
|
|
--page-padding: 2rem 0;
|
|
--list-header-padding: 1rem;
|
|
|
|
/* MARGIN */
|
|
--card-margin-y: 1rem;
|
|
--card-margin-x: 1rem;
|
|
|
|
/* COLORS*/
|
|
--success: #3bd86e;
|
|
--danger: #d95e5e;
|
|
--warning: #d67c3d;
|
|
--drawer-link-active: #000;
|
|
--drawer-link-active-bg: #f1f1f1;
|
|
--drawer-link-inactive: #424242;
|
|
--primary: #607d8b;
|
|
|
|
/* WIDTHS */
|
|
--drawer-width: 250px;
|
|
--dropdownMenuWidth: 200px;
|
|
|
|
/* BOX SHADOWS */
|
|
--chip-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
|
/* BORDERS */
|
|
--default-border: 1px solid #f1f1f1;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
padding: 0;
|
|
margin: 0;
|
|
line-height: 24px;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
.MuiCardHeader-title {
|
|
font-size: var(--p-size);
|
|
}
|
|
|
|
[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
:root {
|
|
--drawer-padding: 0.75rem 1.25rem;
|
|
}
|
|
}
|