2022-04-12 18:03:52 +03:00
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Prototype */
|
|
|
|
|
|
|
|
.prototype-control-panel {
|
|
|
|
margin-top: 50vh; /* Keep it out of view */
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-states-buttons {
|
|
|
|
margin-top: 15px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-paid-mix-dropdown {
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-counts {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: stretch;
|
|
|
|
gap: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-section {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-section > h2 {
|
|
|
|
font-size: 1.65rem;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 1.4em;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-counts.col {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-counts > * {
|
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 0;
|
|
|
|
flex-basis: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-box {
|
|
|
|
border: 1px solid var(--whitegrey);
|
|
|
|
padding: 28px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prototype-box .number {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Layout */
|
|
|
|
|
|
|
|
.gh-dashboard5 {
|
2022-04-26 13:29:44 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-layout {
|
2022-05-11 16:03:48 +03:00
|
|
|
position: relative;
|
2022-04-12 18:03:52 +03:00
|
|
|
max-width: 1230px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-rows {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-row {
|
|
|
|
flex: 1;
|
2022-04-13 17:19:26 +03:00
|
|
|
padding: 0 0 16px 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-row:last-child {
|
2022-04-12 19:56:55 +03:00
|
|
|
padding-top: 32px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-section {
|
|
|
|
display: flex;
|
2022-04-22 17:27:49 +03:00
|
|
|
margin-bottom: 24px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-section-main {
|
2022-04-22 17:27:49 +03:00
|
|
|
margin-right: 8px; /* grid layout adjustments */
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-section-aside {
|
2022-04-22 17:27:49 +03:00
|
|
|
margin-left: -8px; /* grid layout adjustments */
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-split {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 24px;
|
|
|
|
grid-template-columns: 2fr 1fr;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
@media screen and (max-width: 1320px) {
|
|
|
|
.gh-dashboard5-split {
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-22 19:47:48 +03:00
|
|
|
.gh-dashboard5-thirds {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-thirds .gh-dashboard5-thirds-main {
|
|
|
|
flex: 70%;
|
|
|
|
padding-right: 32px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-thirds .gh-dashboard5-thirds-sub {
|
|
|
|
flex: 30%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-title {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-04-13 17:19:26 +03:00
|
|
|
margin: 0 0 20px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-title h4 {
|
2022-04-13 17:19:26 +03:00
|
|
|
font-size: 1.5rem;
|
2022-04-12 18:03:52 +03:00
|
|
|
font-weight: 600;
|
2022-04-13 17:19:26 +03:00
|
|
|
color: var(--black);
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-subtitle {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin: 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-subtitle h4 {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 600;
|
|
|
|
text-transform: uppercase;
|
2022-04-26 13:29:44 +03:00
|
|
|
color: var(--black);
|
2022-04-22 13:42:51 +03:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-04-22 18:27:13 +03:00
|
|
|
transition: color .3s;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-box {
|
|
|
|
flex: 1;
|
|
|
|
border: 1px solid var(--whitegrey);
|
2022-04-22 13:42:51 +03:00
|
|
|
padding: 28px 24px 24px;
|
2022-04-20 15:43:11 +03:00
|
|
|
border-radius: 6px;
|
2022-04-12 18:03:52 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
2022-05-03 13:21:30 +03:00
|
|
|
.gh-dashboard5-box.gh-dashboard5-split {
|
|
|
|
display: grid;
|
|
|
|
padding: 24px 0;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-box.gh-dashboard5-split section:nth-child(odd) {
|
|
|
|
margin-left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-box.gh-dashboard5-split section:nth-child(even) {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 24px;
|
|
|
|
}
|
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
.gh-dashboard5-box.is-secondary {
|
2022-04-27 16:40:38 +03:00
|
|
|
background: var(--main-color-content-greybg);
|
2022-05-03 13:21:30 +03:00
|
|
|
border-color: var(--main-color-content-greybg);
|
2022-04-20 15:43:11 +03:00
|
|
|
}
|
|
|
|
|
2022-04-22 17:27:49 +03:00
|
|
|
.gh-dashboard5-box.is-faded {
|
2022-04-22 19:47:48 +03:00
|
|
|
background: rgb(240,240,240);
|
|
|
|
background: linear-gradient(310deg, rgba(249,249,249,1) 0%, rgba(254,254,254,1) 100%);
|
2022-04-22 17:27:49 +03:00
|
|
|
}
|
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
.gh-dashboard5-columns {
|
|
|
|
flex: 1;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns > .gh-dashboard5-column {
|
|
|
|
flex: 1;
|
|
|
|
border-left: 1px solid var(--whitegrey);
|
|
|
|
padding: 4px 24px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns > .gh-dashboard5-column:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
border-left: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns > .gh-dashboard5-column:last-child {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
2022-04-26 16:52:46 +03:00
|
|
|
.gh-dashboard5-minicharts {
|
|
|
|
flex: 1;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart {
|
|
|
|
flex: 1;
|
|
|
|
border-left: 1px solid var(--whitegrey);
|
2022-05-12 15:04:24 +03:00
|
|
|
padding: 4px 16px 0 24px;
|
2022-04-26 16:52:46 +03:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart .gh-dashboard5-data {
|
2022-05-12 15:04:24 +03:00
|
|
|
position: absolute;
|
2022-04-27 16:40:38 +03:00
|
|
|
pointer-events: none;
|
|
|
|
height: 100%;
|
2022-04-26 16:52:46 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
2022-05-12 14:20:44 +03:00
|
|
|
margin-right: 16px;
|
|
|
|
min-height: 88px;
|
2022-04-26 16:52:46 +03:00
|
|
|
}
|
|
|
|
|
2022-05-12 15:04:24 +03:00
|
|
|
.gh-dashboard5-minicharts .gh-dashboard5-chart {
|
|
|
|
flex: auto;
|
|
|
|
padding: 0;
|
|
|
|
height: 88px;
|
|
|
|
padding: 0;
|
|
|
|
padding-left: 45%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1400px) {
|
|
|
|
.gh-dashboard5-minicharts .gh-dashboard5-chart {
|
|
|
|
padding-left: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1320px) {
|
|
|
|
.gh-dashboard5-minicharts .gh-dashboard5-chart {
|
|
|
|
padding-left: 60%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1120px) {
|
|
|
|
.gh-dashboard5-minicharts .gh-dashboard5-chart {
|
|
|
|
padding-left: 0%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 16:40:38 +03:00
|
|
|
.gh-dashboard5-minichart:first-child .gh-dashboard5-data {
|
|
|
|
left: 0;
|
2022-04-26 16:52:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
border-left: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart:last-child {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart.is-tiers {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart.is-tiers .gh-dashboard5-chart {
|
2022-04-27 16:40:38 +03:00
|
|
|
padding: 0;
|
2022-04-26 16:52:46 +03:00
|
|
|
}
|
|
|
|
|
2022-04-28 18:40:19 +03:00
|
|
|
.gh-dashboard5-minichart .gh-dashboard5-chart-box {
|
2022-05-12 14:20:44 +03:00
|
|
|
height: 88px;
|
2022-04-28 18:40:19 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 16:52:46 +03:00
|
|
|
.gh-dashboard5-legend {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2022-05-03 18:08:30 +03:00
|
|
|
justify-content: flex-end;
|
2022-05-06 13:59:45 +03:00
|
|
|
padding: 0 0 8px;
|
2022-04-26 16:52:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-legend-item {
|
|
|
|
font-size: 1.3rem;
|
2022-05-11 08:54:36 +03:00
|
|
|
font-weight: 500;
|
2022-04-27 19:25:46 +03:00
|
|
|
line-height: 1.4em;
|
2022-05-11 08:54:36 +03:00
|
|
|
letter-spacing: 0;
|
|
|
|
color: var(--midgrey);
|
2022-04-27 19:25:46 +03:00
|
|
|
padding: 0 0 0 16px;
|
2022-04-26 16:52:46 +03:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-legend-item::after {
|
|
|
|
content: '';
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
border-radius: 8px;
|
|
|
|
background: #8E42FF;
|
|
|
|
position: absolute;
|
2022-04-27 19:25:46 +03:00
|
|
|
top: 50%;
|
2022-04-26 16:52:46 +03:00
|
|
|
left: 0;
|
2022-04-27 19:25:46 +03:00
|
|
|
transform: translateY(-50%);
|
2022-04-26 16:52:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-legend-item:last-child::after {
|
|
|
|
background: #FB76B4;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-tabs {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-tab {
|
|
|
|
opacity: 0.33;
|
|
|
|
margin: 0 24px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-tab.is-selected {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-hero {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-hero.is-solo .gh-dashboard5-metric {
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5 .gh-members-help {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-select {
|
|
|
|
position: absolute;
|
2022-04-28 18:40:19 +03:00
|
|
|
top: 14px;
|
2022-04-12 18:03:52 +03:00
|
|
|
right: 4px;
|
2022-05-11 16:32:55 +03:00
|
|
|
z-index: 99;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-04-28 18:40:19 +03:00
|
|
|
.gh-dashboard5-select .gh-dashboard5-select {
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-select .ember-power-select-selected-item {
|
2022-04-27 19:25:46 +03:00
|
|
|
font-size: 1.25rem;
|
|
|
|
font-weight: 600;
|
|
|
|
letter-spacing: -.1px;
|
2022-04-12 18:03:52 +03:00
|
|
|
line-height: 1em;
|
2022-04-28 18:40:19 +03:00
|
|
|
padding: 0 0 10px;
|
2022-04-13 17:19:26 +03:00
|
|
|
color: var(--middarkgrey);
|
2022-04-12 18:03:52 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-05-11 16:32:55 +03:00
|
|
|
.gh-contentfilter-menu-dropdown.is-narrow {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-contentfilter-menu-dropdown.is-narrow .ember-power-select-option {
|
|
|
|
padding-right: 32px;
|
|
|
|
}
|
|
|
|
|
2022-04-22 18:27:13 +03:00
|
|
|
.gh-dashboard5-select-title {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2022-04-27 19:25:46 +03:00
|
|
|
margin: -12px 0 -12px -13px;
|
2022-05-11 16:32:55 +03:00
|
|
|
z-index: 1;
|
2022-04-22 18:27:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-select-title .ember-power-select-selected-item {
|
2022-04-27 19:25:46 +03:00
|
|
|
font-size: 1.5rem;
|
2022-04-22 19:47:48 +03:00
|
|
|
font-weight: 700;
|
2022-04-22 18:27:13 +03:00
|
|
|
line-height: 1em;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-04-27 19:25:46 +03:00
|
|
|
letter-spacing: -0.3px;
|
2022-04-22 18:27:13 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5 .ember-power-select-trigger {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2022-05-11 16:03:48 +03:00
|
|
|
.gh-dashboard5-layout > .gh-dashboard5-select {
|
|
|
|
top: -62px;
|
|
|
|
right: -8px;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
2022-04-26 20:54:52 +03:00
|
|
|
.gh-dashboard5-triple {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-articles {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-breakout {
|
|
|
|
width: calc(100% + 48px + 48px);
|
|
|
|
background: #fcfcfc;
|
|
|
|
padding: 24px 0 50vh;
|
|
|
|
margin-left: -48px;
|
|
|
|
margin-right: -48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-inner {
|
|
|
|
max-width: 1230px;
|
2022-04-27 16:40:38 +03:00
|
|
|
min-width: 850px;
|
2022-04-26 20:54:52 +03:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-subhead {
|
|
|
|
padding: 0 24px 24px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Chart */
|
|
|
|
|
|
|
|
.gh-dashboard5-chart {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-chart-loading {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-04-27 19:25:46 +03:00
|
|
|
.gh-dashboard5-chart .gh-loading-spinner {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-chart .gh-loading-spinner::before {
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-chart-ticks {
|
|
|
|
flex: none;
|
|
|
|
padding: 8px 24px 16px 0;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
text-transform: none;
|
|
|
|
font-weight: 500;
|
2022-05-11 09:29:44 +03:00
|
|
|
letter-spacing: 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
color: var(--midgrey);
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-chart-container {
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
2022-04-27 16:40:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-chart-box {
|
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
width: 99%; /* ChartJS hack to resize with window */
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-chart-gradient {
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 32px;
|
2022-04-12 18:03:52 +03:00
|
|
|
height: 100%;
|
2022-04-27 17:38:51 +03:00
|
|
|
background: rgb(255,255,255);
|
|
|
|
background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
|
2022-04-27 16:40:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-chart-box canvas {
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
|
2022-05-12 14:20:44 +03:00
|
|
|
.gh-dashboard5-minichart .gh-dashboard5-content {
|
|
|
|
display: flex;
|
2022-04-27 16:40:38 +03:00
|
|
|
}
|
|
|
|
|
2022-05-12 14:20:44 +03:00
|
|
|
.gh-dashboard5-mrr .gh-dashboard5-metric-value {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-mrr .gh-dashboard5-percentage {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-mix .gh-dashboard5-data {
|
|
|
|
position: absolute;
|
2022-05-12 15:04:24 +03:00
|
|
|
top: 4px;
|
2022-05-12 14:20:44 +03:00
|
|
|
bottom: 0;
|
|
|
|
left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-mix .gh-dashboard5-chart.narrow {
|
|
|
|
/* margin-left: -80px; */
|
|
|
|
padding-left: 30%;
|
2022-05-11 09:29:44 +03:00
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Percentage */
|
|
|
|
|
|
|
|
.gh-dashboard5-percentage {
|
|
|
|
flex: 0;
|
|
|
|
border-radius: 3px;
|
2022-05-12 14:20:44 +03:00
|
|
|
font-size: 1.5rem;
|
2022-04-12 18:03:52 +03:00
|
|
|
line-height: 1;
|
|
|
|
font-weight: 500;
|
|
|
|
letter-spacing: 0;
|
2022-05-12 15:40:54 +03:00
|
|
|
color: var(--midgrey-l2);
|
2022-05-12 14:20:44 +03:00
|
|
|
padding: 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
margin: 5px 0 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-percentage.is-positive {
|
2022-05-12 14:20:44 +03:00
|
|
|
color: var(--green);
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-percentage.is-negative {
|
2022-05-12 14:20:44 +03:00
|
|
|
color: var(--pink);
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Metric */
|
|
|
|
|
|
|
|
.gh-dashboard5-metric {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-center {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-stretch {
|
|
|
|
flex: 1;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric-data {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric-label {
|
|
|
|
align-items: center;
|
2022-05-03 17:26:00 +03:00
|
|
|
font-size: 1.55rem;
|
2022-04-22 19:47:48 +03:00
|
|
|
font-weight: 700;
|
2022-04-12 18:03:52 +03:00
|
|
|
line-height: 1em;
|
2022-04-27 19:25:46 +03:00
|
|
|
margin: 0 0 8px;
|
2022-04-12 18:03:52 +03:00
|
|
|
padding: 0;
|
2022-04-20 15:43:11 +03:00
|
|
|
color: var(--black);
|
2022-04-12 18:03:52 +03:00
|
|
|
white-space: nowrap;
|
2022-04-27 19:25:46 +03:00
|
|
|
letter-spacing: -.3px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-reverse .gh-dashboard5-metric-label {
|
|
|
|
margin: 2px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-center .gh-dashboard5-metric-label {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
.gh-dashboard5-metric-label.is-secondary {
|
|
|
|
font-size: 1.3rem;
|
2022-05-11 08:54:36 +03:00
|
|
|
font-weight: 500;
|
2022-05-13 12:04:58 +03:00
|
|
|
color: var(--midgrey);
|
2022-04-28 18:18:17 +03:00
|
|
|
letter-spacing: 0;
|
2022-04-20 15:43:11 +03:00
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-metric-value {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
2022-04-20 15:43:11 +03:00
|
|
|
font-size: 2.6rem;
|
|
|
|
font-weight: 700;
|
2022-04-27 19:25:46 +03:00
|
|
|
letter-spacing: -.4px;
|
2022-04-12 18:03:52 +03:00
|
|
|
line-height: 1em;
|
|
|
|
white-space: nowrap;
|
2022-04-13 17:19:26 +03:00
|
|
|
margin: 0 0 12px;
|
2022-04-27 17:38:51 +03:00
|
|
|
color: var(--black);
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-05-12 14:20:44 +03:00
|
|
|
.gh-dashboard5-metric-value .value {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-metric.is-large .gh-dashboard5-metric-value {
|
2022-04-27 19:25:46 +03:00
|
|
|
font-size: 3.2rem;
|
|
|
|
letter-spacing: -0.8px;
|
2022-04-12 18:03:52 +03:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-center .gh-dashboard5-metric-value {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-reverse.is-large .gh-dashboard5-metric-value {
|
2022-04-13 17:19:26 +03:00
|
|
|
margin-bottom: 8px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
.gh-dashboard5-metric-value.is-secondary {
|
|
|
|
margin: 0 0 8px;
|
|
|
|
}
|
|
|
|
|
2022-04-26 20:54:52 +03:00
|
|
|
.gh-dashboard5-metric.is-tooltip .gh-dashboard5-metric-label {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-metric.is-tooltip .gh-dashboard5-metric-value{
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-metric-minivalue {
|
|
|
|
font-size: 1.5rem;
|
2022-04-22 19:47:48 +03:00
|
|
|
font-weight: 700;
|
2022-05-04 15:29:55 +03:00
|
|
|
color: var(--darkgrey);
|
|
|
|
text-decoration: none;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-05-13 12:04:58 +03:00
|
|
|
.gh-dashboard5-metric-minivalue.na {
|
|
|
|
color: var(--lightgrey);
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
.gh-dashboard5-metric-extra {
|
|
|
|
text-transform: none;
|
|
|
|
font-weight: 500;
|
|
|
|
letter-spacing: .2px;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
letter-spacing: .2px;
|
|
|
|
color: var(--midlightgrey);
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 List */
|
|
|
|
|
|
|
|
.gh-dashboard5-list {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-header {
|
|
|
|
display: grid;
|
2022-05-13 12:04:58 +03:00
|
|
|
grid-template-columns: 50% 20% 30%;
|
2022-04-22 13:42:51 +03:00
|
|
|
padding: 0 0 8px;
|
2022-04-12 18:03:52 +03:00
|
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-title {
|
|
|
|
align-items: center;
|
|
|
|
line-height: 1em;
|
|
|
|
white-space: nowrap;
|
2022-04-22 13:42:51 +03:00
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 500;
|
|
|
|
letter-spacing: 0.1px;
|
2022-05-13 12:04:58 +03:00
|
|
|
color: var(--midgrey);
|
2022-04-22 13:42:51 +03:00
|
|
|
padding: 0 20px 8px 0;
|
|
|
|
text-transform: uppercase;
|
|
|
|
white-space: nowrap;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-body {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-item {
|
|
|
|
padding: 14px 0;
|
|
|
|
display: grid;
|
2022-05-13 12:04:58 +03:00
|
|
|
grid-template-columns: 50% 20% 30%;
|
2022-04-26 16:52:46 +03:00
|
|
|
padding: 4px 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-item:nth-child(3) {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-item:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2022-05-05 20:17:07 +03:00
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item:hover {
|
2022-05-04 15:29:55 +03:00
|
|
|
background: linear-gradient(315deg,#fafafb 60%,#fff);
|
|
|
|
}
|
|
|
|
|
2022-05-05 20:17:07 +03:00
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-item:hover {
|
|
|
|
background: linear-gradient(315deg,rgba(249, 249, 250, 0.5) 60%,rgba(255, 255, 255, 0.5));
|
|
|
|
}
|
|
|
|
|
2022-05-04 15:29:55 +03:00
|
|
|
.gh-dashboard5-list-text {
|
2022-04-22 19:47:48 +03:00
|
|
|
font-weight: 600;
|
2022-04-12 18:03:52 +03:00
|
|
|
font-size: 1.5rem;
|
|
|
|
color: var(--darkgrey);
|
2022-05-05 17:15:58 +03:00
|
|
|
padding: 0 32px 0 0;
|
2022-05-04 15:29:55 +03:00
|
|
|
text-decoration: none;
|
2022-05-04 16:04:49 +03:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2022-05-04 15:29:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-subtext {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
color: var(--middarkgrey);
|
|
|
|
text-decoration: none;
|
2022-05-05 17:15:58 +03:00
|
|
|
padding: 0 32px 0 0;
|
2022-05-04 15:29:55 +03:00
|
|
|
text-decoration: none;
|
2022-05-04 16:04:49 +03:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-item svg {
|
2022-05-04 15:29:55 +03:00
|
|
|
width: 20px;
|
2022-05-05 17:15:58 +03:00
|
|
|
min-width: 20px;
|
2022-05-04 15:29:55 +03:00
|
|
|
height: 20px;
|
2022-04-22 13:42:51 +03:00
|
|
|
margin: 0 0.5rem 0 -4px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-list-item-sub {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
min-height: 32px;
|
2022-05-04 16:04:49 +03:00
|
|
|
min-width: 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-footer {
|
|
|
|
border-top: 1px solid var(--whitegrey);
|
|
|
|
padding: 20px 0 0;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-list-date {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
color: var(--midlightgrey);
|
|
|
|
text-align: right;
|
|
|
|
padding: 3px 0 0 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-author {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
color: var(--midlightgrey);
|
|
|
|
text-align: right;
|
2022-04-22 19:47:48 +03:00
|
|
|
padding: 1px 0 0 0;
|
2022-04-22 13:42:51 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-05-11 18:50:20 +03:00
|
|
|
.gh-dashboard5-list-empty {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Overview */
|
2022-04-20 15:43:11 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-overview {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-20 15:43:11 +03:00
|
|
|
}
|
|
|
|
|
2022-05-06 18:19:16 +03:00
|
|
|
.gh-dashboard5-overview.is-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
.gh-dashboard5-overview .gh-dashboard5-area {
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-overview .gh-dashboard5-box {
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2022-04-20 15:43:11 +03:00
|
|
|
.gh-dashboard5-overview .gh-dashboard5-area > div {
|
|
|
|
flex: 1;
|
|
|
|
border-right: 1px solid var(--whitegrey);
|
|
|
|
padding-top: 4px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-overview .gh-dashboard5-area > div:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Anchor */
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-anchor {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-box {
|
2022-05-03 17:34:17 +03:00
|
|
|
padding-bottom: 24px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: calc(100% + 48px);
|
2022-04-13 17:19:26 +03:00
|
|
|
padding: 8px;
|
|
|
|
margin: 4px -24px -8px;
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
background: rgba(253,253,253,1);
|
|
|
|
border-top: 1px solid var(--whitegrey);
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor.is-top .gh-dashboard5-stats {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border-width: 0 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats-button {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
2022-04-14 17:28:45 +03:00
|
|
|
padding: 14px 24px 18px;
|
2022-04-13 17:19:26 +03:00
|
|
|
margin: 2px 8px 2px 2px;
|
2022-04-12 18:03:52 +03:00
|
|
|
text-align: left;
|
|
|
|
background: transparent;
|
|
|
|
border-radius: 5px;
|
2022-04-13 17:19:26 +03:00
|
|
|
color: var(--black);
|
2022-04-13 17:30:32 +03:00
|
|
|
border: 1px solid transparent;
|
2022-04-13 17:19:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats-button:last-child {
|
|
|
|
margin-right: 2px;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats-button.is-selected {
|
|
|
|
color: var(--black);
|
2022-04-13 17:19:26 +03:00
|
|
|
background: var(--white);
|
|
|
|
box-shadow: 0 2px 4px rgb(0 0 0 / 2%);
|
2022-04-13 17:30:32 +03:00
|
|
|
border-color: rgb(235 235 235);
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats.is-solo .gh-dashboard5-stats-button.is-selected {
|
|
|
|
background: transparent;
|
|
|
|
box-shadow: 0 none;
|
|
|
|
border: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats-highlight {
|
|
|
|
width: 1px;
|
|
|
|
height: 3px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: var(--whitegrey);
|
|
|
|
margin: 8px 0 0;
|
|
|
|
background: #5B98F2;
|
|
|
|
opacity: 0;
|
|
|
|
transition: width 175ms ease-out, opacity 125ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-stats-button.is-selected .gh-dashboard5-stats-highlight {
|
|
|
|
width: 25px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-chart {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-chart-ticks {
|
|
|
|
flex-direction: row;
|
2022-04-27 16:40:38 +03:00
|
|
|
padding: 10px 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
font-size: 1.2rem;
|
2022-04-13 17:19:26 +03:00
|
|
|
color: var(--midlightgrey);
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 16:52:46 +03:00
|
|
|
.gh-dashboard5-anchor .gh-dashboard5-minicharts {
|
2022-04-28 18:40:19 +03:00
|
|
|
margin-top: 32px;
|
2022-04-20 15:43:11 +03:00
|
|
|
}
|
2022-04-12 18:03:52 +03:00
|
|
|
|
2022-04-26 16:52:46 +03:00
|
|
|
.gh-dashboard5-mix .gh-dashboard5-select {
|
2022-05-12 14:20:44 +03:00
|
|
|
top: -7px;
|
2022-04-22 16:49:03 +03:00
|
|
|
right: -18px;
|
2022-04-22 16:04:58 +03:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:33:19 +03:00
|
|
|
.gh-dashboard5-group {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Zero */
|
|
|
|
|
|
|
|
.gh-dashboard5-zero {
|
2022-05-06 18:19:16 +03:00
|
|
|
position: absolute;
|
2022-05-06 19:33:19 +03:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-05-06 18:19:16 +03:00
|
|
|
background: rgba(255,255,255,0.8);
|
2022-05-06 19:33:19 +03:00
|
|
|
border: 1px solid var(--whitegrey);
|
|
|
|
border-radius: 6px;
|
2022-05-11 19:42:07 +03:00
|
|
|
z-index: 99;
|
2022-05-06 18:19:16 +03:00
|
|
|
|
|
|
|
-webkit-backdrop-filter: blur(3px);
|
|
|
|
backdrop-filter: blur(3px);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:33:19 +03:00
|
|
|
.gh-dashboard5-zero-message {
|
|
|
|
background: #fff url(icons/analytics.svg) no-repeat 50% 36px;
|
|
|
|
background-size: 48px 48px;
|
|
|
|
min-width: 400px;
|
2022-05-10 19:38:29 +03:00
|
|
|
padding: 96px 48px 52px;
|
2022-05-06 18:19:16 +03:00
|
|
|
border-radius: 8px;
|
|
|
|
text-align: center;
|
2022-05-06 19:33:19 +03:00
|
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.066);
|
2022-05-06 18:19:16 +03:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:33:19 +03:00
|
|
|
.gh-dashboard5-zero-message h4 {
|
2022-05-10 19:38:29 +03:00
|
|
|
font-size: 1.7rem;
|
2022-05-06 18:19:16 +03:00
|
|
|
font-weight: 700;
|
|
|
|
line-height: 1em;
|
2022-05-06 19:33:19 +03:00
|
|
|
margin: 0 0 10px;
|
2022-05-06 18:19:16 +03:00
|
|
|
padding: 0;
|
|
|
|
color: var(--black);
|
|
|
|
white-space: nowrap;
|
|
|
|
letter-spacing: -.3px;
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:33:19 +03:00
|
|
|
.gh-dashboard5-zero-message p {
|
2022-05-10 19:38:29 +03:00
|
|
|
font-size: 1.4rem;
|
2022-05-06 18:19:16 +03:00
|
|
|
font-weight: 600;
|
2022-05-06 19:33:19 +03:00
|
|
|
line-height: 1.5em;
|
2022-05-09 18:35:13 +03:00
|
|
|
color: var(--middarkgrey);
|
2022-05-06 18:19:16 +03:00
|
|
|
letter-spacing: -.1px;
|
|
|
|
padding: 0;
|
2022-05-10 19:38:29 +03:00
|
|
|
margin: 0 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-zero-message p:last-child {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-05-09 18:35:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-zero-message a {
|
|
|
|
background: rgb(174,90,239);
|
|
|
|
background: linear-gradient(90deg, rgba(174,90,239,1) 0%, rgba(233,84,179,1) 100%);
|
|
|
|
background-clip: text;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
transition: filter 100ms linear;
|
|
|
|
filter: brightness(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-zero-message a:hover {
|
|
|
|
filter: brightness(0.8);
|
2022-05-06 18:19:16 +03:00
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Engagement */
|
2022-04-12 19:56:55 +03:00
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-engagement {
|
|
|
|
position: relative;
|
2022-04-12 19:56:55 +03:00
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-engagement .gh-dashboard5-columns {
|
2022-05-13 12:04:58 +03:00
|
|
|
padding-top: 10px;
|
2022-04-12 19:56:55 +03:00
|
|
|
}
|
|
|
|
|
2022-04-22 18:27:13 +03:00
|
|
|
.gh-dashboard5-engagement .gh-dashboard5-select {
|
2022-04-28 18:40:19 +03:00
|
|
|
top: 16px;
|
2022-04-22 18:27:13 +03:00
|
|
|
right: 6px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Recent Posts */
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-title {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-list-item {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-04-12 19:56:55 +03:00
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-list-item a > span {
|
2022-04-12 18:03:52 +03:00
|
|
|
width: 80%;
|
|
|
|
overflow: hidden;
|
|
|
|
color: var(--darkgrey);
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-list-item a > span {
|
|
|
|
display: inline-block;
|
|
|
|
height: 57px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .gh-content-entry-title {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 14px !important;
|
|
|
|
color: rgb(21, 23, 26);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .footer {
|
|
|
|
padding-top: 12px;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-list-item > span {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
font-weight: 600;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 24px 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-posts .gh-dashboard5-list-header {
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Recent Activity */
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-title {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-list-item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 10px 0;
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-list-item .member-details {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-list-item .member-avatar {
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
background: #70DEB1;
|
|
|
|
border-radius: 24px;
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-list-header,
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-list-item {
|
|
|
|
grid-template-columns: 80% 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recent-activity .gh-dashboard5-list-item > a > span {
|
|
|
|
color: var(--midgrey);
|
|
|
|
padding: 0 0 0 0.5rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Recents */
|
2022-04-22 13:42:51 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-recents {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
2022-05-04 15:29:55 +03:00
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-body {
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2022-05-13 12:04:58 +03:00
|
|
|
.gh-dashboard5-recents .gh-dashboard5-title {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item {
|
|
|
|
height: 100%;
|
2022-05-04 15:29:55 +03:00
|
|
|
padding-top: 6px;
|
|
|
|
padding-bottom: 6px;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item a > span {
|
|
|
|
width: 80%;
|
|
|
|
overflow: hidden;
|
|
|
|
color: var(--darkgrey);
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item a > span {
|
|
|
|
display: inline-block;
|
|
|
|
height: 57px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-title:last-child,
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item .gh-dashboard5-list-item-sub:last-child {
|
|
|
|
margin-left: -6px; /* grid layout adjustments */
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-content-entry-title {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 14px !important;
|
|
|
|
color: rgb(21, 23, 26);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .footer {
|
|
|
|
padding-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item > span {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
font-weight: 600;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 24px 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-header {
|
2022-05-13 12:04:58 +03:00
|
|
|
margin-top: 16px;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-loading {
|
2022-05-04 15:29:55 +03:00
|
|
|
min-height: 220px;
|
2022-04-22 13:42:51 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-title:last-child,
|
|
|
|
.gh-dashboard5-recents .gh-dashboard5-list-item .gh-dashboard5-list-item-sub:last-child {
|
|
|
|
margin-left: -6px; /* grid layout adjustments */
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents-activity .gh-dashboard5-list-header,
|
|
|
|
.gh-dashboard5-recents-activity .gh-dashboard5-list-item {
|
|
|
|
grid-template-columns: 35% 35% 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-recents-activity .gh-dashboard5-list-title:nth-child(2),
|
|
|
|
.gh-dashboard5-recents-activity .gh-dashboard5-list-item .gh-dashboard5-list-item-sub:nth-child(2) {
|
|
|
|
margin-left: -4px; /* grid layout adjustments */
|
|
|
|
}
|
|
|
|
|
2022-05-04 18:45:34 +03:00
|
|
|
.gh-dashboard5-recents-posts.is-single .gh-dashboard5-list-header,
|
|
|
|
.gh-dashboard5-recents-posts.is-single .gh-dashboard5-list-item {
|
|
|
|
grid-template-columns: 70% 30%;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Resources */
|
2022-04-22 13:42:51 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-resources {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-28 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resources .gh-dashboard5-resource-box {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
gap: 28px;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:35:39 +03:00
|
|
|
.gh-dashboard5-resources .gh-dashboard5-resource-box,
|
|
|
|
.gh-dashboard5-newsletter .gh-dashboard5-resource-box {
|
|
|
|
box-shadow: 0 1px 4px -1px rgb(0 0 0 / 10%);
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
@media screen and (max-width: 1320px) {
|
|
|
|
.gh-dashboard5-resources .gh-dashboard5-resource-box {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resources .gh-dashboard5-resource-thumbnail {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 17:48:14 +03:00
|
|
|
.gh-dashboard5-resource-text {
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-resource-contents {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
2022-04-28 17:48:14 +03:00
|
|
|
flex-direction: column;
|
2022-05-05 17:15:58 +03:00
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resources .gh-dashboard5-articles {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 24px;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resources .gh-dashboard5-articles-footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resources .gh-members-help-card {
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resources .gh-dashboare5-article-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
padding: 24px 0;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resources .gh-dashboare5-article-thumbnail {
|
|
|
|
flex: 2;
|
|
|
|
height: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 3px;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resources .gh-dashboare5-article-text {
|
|
|
|
flex: 3;
|
|
|
|
padding: 0 32px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-04-22 13:42:51 +03:00
|
|
|
|
2022-04-28 17:48:14 +03:00
|
|
|
.gh-dashboard5-resources .gh-dashboard5-resource-footer a {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
|
2022-04-22 19:47:48 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Multi */
|
2022-04-22 19:47:48 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-multi {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-dashboard5-articles {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 24px;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-dashboard5-articles-footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-members-help-card {
|
|
|
|
flex: 1;
|
|
|
|
padding: 24px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
|
|
|
background: var(--white);
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
|
|
|
|
color: #7c8b9a;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
transition: none;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-members-help-card:hover {
|
|
|
|
transform: translate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-dashboard5-list-header {
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-dashboard5-subtitle h4 {
|
|
|
|
color: var(--darkgrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-dashboard5-box {
|
|
|
|
padding-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-multi .gh-dashboard5-thirds-main .gh-dashboard5-list-header {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Latest Newsletters */
|
2022-04-22 13:42:51 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-newsletter {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-newsletter .gh-dashboard5-newsletter-items {
|
2022-04-22 13:42:51 +03:00
|
|
|
display: grid;
|
|
|
|
grid-gap: 24px;
|
2022-04-26 13:29:44 +03:00
|
|
|
grid-template-columns: 1fr 1fr;
|
2022-04-22 13:42:51 +03:00
|
|
|
grid-template-rows: auto;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-newsletter .gh-dashboard5-newsletter-item h5 {
|
|
|
|
font-size: 1.4rem;
|
2022-04-22 13:42:51 +03:00
|
|
|
padding: 0 32px 0 0;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
2022-05-05 20:17:07 +03:00
|
|
|
.gh-dashboard5-resource-footer .gh-dashboard5-subscribe-button {
|
2022-04-28 17:48:14 +03:00
|
|
|
display: flex;
|
|
|
|
padding: 8px 12px;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background: var(--black);
|
|
|
|
color: var(--white);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2022-05-05 20:17:07 +03:00
|
|
|
.gh-dashboard5-resource-footer .gh-dashboard5-subscribe-button:hover {
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
@media screen and (max-width: 1400px) {
|
|
|
|
.gh-dashboard5-subscribe-button > span {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-12 18:03:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-04-26 20:54:52 +03:00
|
|
|
Dashboard v5 Community */
|
2022-04-22 13:42:51 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-community {
|
2022-04-22 17:27:49 +03:00
|
|
|
position: relative;
|
2022-04-28 17:48:14 +03:00
|
|
|
grid-column: 1 / 3;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-community .gh-dashboard5-resource-box {
|
|
|
|
background: transparent;
|
|
|
|
background-repeat: no-repeat;
|
2022-05-11 19:39:46 +03:00
|
|
|
background-position: 50% 50%;
|
|
|
|
background-size: auto 105%;
|
2022-04-26 13:29:44 +03:00
|
|
|
background-image: url(img/community-background.jpg);
|
|
|
|
color: var(--white);
|
|
|
|
padding-top: 32px;
|
2022-05-12 12:20:41 +03:00
|
|
|
transition: all 1.2s ease-in-out;
|
2022-05-11 19:39:46 +03:00
|
|
|
border: 0 none;
|
2022-04-28 18:18:17 +03:00
|
|
|
}
|
2022-04-22 13:42:51 +03:00
|
|
|
|
2022-05-11 19:39:46 +03:00
|
|
|
.gh-dashboard5-community .gh-dashboard5-resource-box:hover {
|
|
|
|
box-shadow: 0 54px 80px rgb(0 0 0 / 7%), 0 19.7109px 29.2013px rgb(0 0 0 / 5%), 0 9.56927px 14.1767px rgb(0 0 0 / 4%), 0 4.69103px 6.94968px rgb(0 0 0 / 3%), 0 1.85484px 2.74791px rgb(0 0 0 / 2%);
|
|
|
|
background-size: auto 108%;
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:42:51 +03:00
|
|
|
.gh-dashboard5-community .gh-dashboard5-list-body p {
|
2022-04-28 17:48:14 +03:00
|
|
|
font-size: 4.0rem;
|
2022-04-22 13:42:51 +03:00
|
|
|
font-weight: 700;
|
|
|
|
line-height: 1.3em;
|
2022-04-28 18:18:17 +03:00
|
|
|
padding: 64px 0;
|
|
|
|
margin-bottom: 0;
|
2022-04-22 18:27:13 +03:00
|
|
|
transition: color .3s;
|
2022-04-26 13:29:44 +03:00
|
|
|
color: #fff;
|
2022-04-22 13:42:51 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-community .gh-dashboard5-resource-footer {
|
2022-04-22 13:42:51 +03:00
|
|
|
border-color: transparent;
|
|
|
|
}
|
2022-04-12 18:03:52 +03:00
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-community .gh-dashboard5-resource-footer a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-community .gh-dashboard5-resource-title:not(.is-large) h4 {
|
2022-04-26 13:29:44 +03:00
|
|
|
color: #fff;
|
2022-04-12 18:03:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Misc */
|
|
|
|
|
|
|
|
.gh-dashboard5 .gh-offers-help {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5 .gh-list-header {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
2022-04-20 15:43:11 +03:00
|
|
|
|
2022-04-27 19:25:46 +03:00
|
|
|
.gh-dashboard5-rate-bar {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-rate-amount {
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 2.5px;
|
|
|
|
background: var(--whitegrey);
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin-left: 20px;
|
2022-05-10 21:05:44 +03:00
|
|
|
margin-right: 8px;
|
2022-04-27 19:25:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-rate-amount + span {
|
|
|
|
flex-shrink: 0;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-rate-amount > span {
|
|
|
|
background: rgb(213,184,255);
|
|
|
|
background: linear-gradient(90deg, rgba(213,184,255,1) 0%, rgba(142,66,255,1) 100%);
|
|
|
|
border-top-right-radius: 2.5px;
|
|
|
|
border-bottom-right-radius: 2.5px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2022-05-04 18:45:34 +03:00
|
|
|
min-width: 2px;
|
2022-04-27 19:25:46 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
2022-05-05 17:15:58 +03:00
|
|
|
Dashboard v5 Resource */
|
2022-04-26 13:29:44 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-resource {
|
2022-05-05 17:15:58 +03:00
|
|
|
position: relative;
|
2022-04-26 13:29:44 +03:00
|
|
|
display: flex;
|
|
|
|
}
|
2022-05-03 17:26:00 +03:00
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resource-box {
|
|
|
|
flex: 1;
|
|
|
|
border: 1px solid var(--whitegrey);
|
|
|
|
padding: 28px 24px 24px;
|
|
|
|
border-radius: 6px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
|
|
background: var(--white);
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:26:00 +03:00
|
|
|
.gh-dashboard-box.gh-dashboard5-box.is-secondary .gh-dashboard5-resource-box.link {
|
|
|
|
border: none;
|
|
|
|
box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
|
|
|
|
transition: all .3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2022-04-27 16:40:38 +03:00
|
|
|
.gh-dashboard5-resource-box.is-secondary {
|
2022-04-28 18:18:17 +03:00
|
|
|
border: none;
|
2022-04-27 16:40:38 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-resource-title:not(.is-large) h4 {
|
2022-04-28 17:48:14 +03:00
|
|
|
font-size: 1.1rem;
|
|
|
|
font-weight: 600;
|
2022-04-26 13:29:44 +03:00
|
|
|
text-transform: uppercase;
|
2022-04-28 17:48:14 +03:00
|
|
|
letter-spacing: 0.3px;
|
2022-05-03 17:26:00 +03:00
|
|
|
color: var(--middarkgrey);
|
2022-05-03 13:21:30 +03:00
|
|
|
margin: 0 0 8px;
|
2022-04-26 13:29:44 +03:00
|
|
|
padding: 0;
|
|
|
|
transition: color .3s;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-resource-title.is-large h4 {
|
2022-05-03 17:26:00 +03:00
|
|
|
align-items: center;
|
|
|
|
font-size: 1.55rem;
|
|
|
|
font-weight: 700;
|
|
|
|
line-height: 1em;
|
|
|
|
margin: 0 0 8px;
|
|
|
|
padding: 0;
|
|
|
|
color: var(--black);
|
|
|
|
white-space: nowrap;
|
|
|
|
letter-spacing: -.3px;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-resource-title.has-border {
|
|
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
|
|
}
|
|
|
|
|
2022-04-27 19:25:46 +03:00
|
|
|
.gh-dashboard5-resource-title p {
|
2022-05-05 17:15:58 +03:00
|
|
|
margin: 8px 0 16px;
|
2022-04-28 17:48:14 +03:00
|
|
|
padding: 0;
|
|
|
|
color: var(--middarkgrey);
|
|
|
|
font-size: 1.55rem;
|
2022-04-27 19:25:46 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resource-body {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2022-05-05 17:15:58 +03:00
|
|
|
padding-top: 12px;
|
2022-04-26 13:29:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-footer {
|
|
|
|
padding: 20px 0 0;
|
|
|
|
}
|
|
|
|
|
2022-05-05 20:17:07 +03:00
|
|
|
.gh-dashboard5-list-footer a,
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resource-footer a {
|
2022-04-27 19:25:46 +03:00
|
|
|
font-weight: 500;
|
2022-05-05 20:17:07 +03:00
|
|
|
color: #2bba3c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-list-footer a:hover,
|
|
|
|
.gh-dashboard5-resource-footer a:hover {
|
|
|
|
color: #269a34;
|
2022-04-26 13:29:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-thumbnail {
|
|
|
|
border-radius: 4px;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2022-04-28 18:18:17 +03:00
|
|
|
background: transparent;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-image: url(img/resource-1.jpg);
|
2022-04-26 13:29:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-bigarticle {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-05-03 17:26:00 +03:00
|
|
|
margin: 0 0 24px;
|
|
|
|
padding: 0;
|
2022-04-26 13:29:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-bigarticle .gh-dashboard5-resource-thumbnail {
|
|
|
|
width: 40%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-04-28 17:48:14 +03:00
|
|
|
.gh-dashboard5-resource-bigarticle h3 {
|
2022-05-03 17:26:00 +03:00
|
|
|
font-size: 1.8rem;
|
2022-04-28 17:48:14 +03:00
|
|
|
font-weight: 700;
|
2022-05-13 12:04:58 +03:00
|
|
|
transition: all 0.25 ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-bigarticle:hover h3 {
|
|
|
|
opacity: 0.8;
|
2022-04-28 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-bigarticle p {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
color: var(--middarkgrey);
|
2022-05-03 13:21:30 +03:00
|
|
|
display: -webkit-box;
|
|
|
|
line-clamp: 3;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
2022-05-03 17:26:00 +03:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-04-28 17:48:14 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:29:44 +03:00
|
|
|
.gh-dashboard5-resource-smallarticles {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-smallarticle {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0 24px 0 0;
|
|
|
|
padding: 0 0 32px 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-smallarticle .gh-dashboard5-resource-thumbnail {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-smallarticle:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource-secondary {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
line-height: 1.5em;
|
2022-04-28 17:48:14 +03:00
|
|
|
font-weight: 400;
|
2022-04-26 13:29:44 +03:00
|
|
|
color: var(--midlightgrey);
|
2022-05-03 17:26:00 +03:00
|
|
|
padding: 0;
|
2022-04-26 13:29:44 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-04-26 20:54:52 +03:00
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-resource-title h4 {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-header,
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-item {
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-item {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-link {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
min-width: 0;
|
2022-05-13 12:04:58 +03:00
|
|
|
transition: all 0.25 ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-item:hover .gh-dashboard5-list-link {
|
|
|
|
opacity: 0.8;
|
2022-05-05 17:15:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-link span {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .has-new .gh-dashboard5-list-item:first-child .gh-dashboard5-list-link::after {
|
|
|
|
display: inline-block;
|
|
|
|
content: "New";
|
|
|
|
font-size: 1.2rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
background: #30cf43;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #fff;
|
|
|
|
line-height: 1;
|
|
|
|
border-radius: 2px;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-top: 1px;
|
|
|
|
padding: 3px 4px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-header,
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-item {
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-item {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-post {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
font-size: 1.45rem;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 1.4em;
|
|
|
|
color: var(--black);
|
|
|
|
padding: 12px 32px 12px 0;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-resource .gh-dashboard5-list-body {
|
|
|
|
color: var(--midlightgrey);
|
|
|
|
font-size: 1.4rem;
|
|
|
|
transition: all .3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-staff-picks .gh-dashboard5-resource-footer a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: #1DA1F2;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2022-05-05 20:17:07 +03:00
|
|
|
.gh-dashboard5-staff-picks .gh-dashboard5-resource-footer a:hover {
|
|
|
|
color: #1788ce;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-staff-picks .gh-dashboard5-resource-footer svg {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2022-04-26 20:54:52 +03:00
|
|
|
|
|
|
|
/* ---------------------------------
|
|
|
|
Dashboard v5 Tooltips */
|
|
|
|
|
|
|
|
.gh-dashboard5-tooltip {
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background: var(--white);
|
2022-05-03 18:08:30 +03:00
|
|
|
border-radius: 9px;
|
2022-04-26 20:54:52 +03:00
|
|
|
padding: 12px;
|
2022-05-11 09:29:44 +03:00
|
|
|
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.18), 0px 45px 80px rgba(0, 0, 0, 0.04), 0px 18.7999px 33.4221px rgba(0, 0, 0, 0.0287542), 0px 10.0513px 17.869px rgba(0, 0, 0, 0.0238443), 0px 5.6347px 10.0172px rgba(0, 0, 0, 0.02), 0px 2.99255px 5.32008px rgba(0, 0, 0, 0.0161557), 0px 1.24527px 2.21381px rgba(0, 0, 0, 0.0112458);
|
2022-05-03 18:08:30 +03:00
|
|
|
border-radius: 9px;
|
2022-04-26 20:54:52 +03:00
|
|
|
z-index: 9999;
|
|
|
|
pointer-events: none;
|
2022-05-03 18:08:30 +03:00
|
|
|
min-width: 80px;
|
2022-04-26 20:54:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-tooltip .gh-dashboard5-metric-value {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-tooltip-label {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 1em;
|
2022-05-11 09:29:44 +03:00
|
|
|
letter-spacing: 0;
|
2022-04-26 20:54:52 +03:00
|
|
|
color: var(--midlightgrey);
|
|
|
|
white-space: nowrap;
|
|
|
|
margin: 0 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-tooltip-value {
|
2022-05-11 10:03:56 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
2022-05-11 09:29:44 +03:00
|
|
|
font-size: 1.5rem;
|
2022-04-26 20:54:52 +03:00
|
|
|
font-weight: 700;
|
2022-05-11 09:29:44 +03:00
|
|
|
letter-spacing: 0;
|
2022-04-26 20:54:52 +03:00
|
|
|
line-height: 1em;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
2022-05-11 10:03:56 +03:00
|
|
|
.gh-dashboard5-tooltip-value .indicator {
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 999px;
|
|
|
|
margin-right: 6px;
|
2022-05-11 09:29:44 +03:00
|
|
|
}
|
|
|
|
|
2022-05-11 10:03:56 +03:00
|
|
|
.gh-dashboard5-tooltip-value .indicator.solid {
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-tooltip-value .indicator.line {
|
2022-05-11 09:29:44 +03:00
|
|
|
width: 11px;
|
|
|
|
height: 11px;
|
2022-05-11 10:03:56 +03:00
|
|
|
border-width: 2px;
|
|
|
|
border-style: solid;
|
2022-05-11 09:29:44 +03:00
|
|
|
}
|
|
|
|
|
2022-05-11 10:03:56 +03:00
|
|
|
.gh-dashboard5-tooltip-value .value {
|
2022-05-11 09:29:44 +03:00
|
|
|
font-size: 1.5rem;
|
2022-05-11 10:03:56 +03:00
|
|
|
margin-right: 8px;
|
2022-05-11 09:29:44 +03:00
|
|
|
}
|
|
|
|
|
2022-05-11 10:26:57 +03:00
|
|
|
.gh-dashboard5-tooltip-value .metric {
|
2022-05-11 09:29:44 +03:00
|
|
|
font-size: 1.4rem;
|
|
|
|
font-weight: 400;
|
2022-05-11 10:26:57 +03:00
|
|
|
color: var(--middarkgrey);
|
2022-05-11 10:03:56 +03:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-05-11 10:26:57 +03:00
|
|
|
.gh-dashboard5-totals .indicator {
|
|
|
|
position: relative;
|
|
|
|
border: none !important;
|
|
|
|
background: linear-gradient(225deg, #8E42FF 0%, #FB2D8D 100%);
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-totals .indicator::before {
|
|
|
|
position: absolute;
|
|
|
|
background: var(--main-bg-color);
|
|
|
|
content: "";
|
|
|
|
top: 2px;
|
|
|
|
right: 2px;
|
|
|
|
bottom: 2px;
|
|
|
|
left: 2px;
|
|
|
|
border-radius: 999px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-totals .value {
|
|
|
|
font-size: 1.7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-totals .metric {
|
|
|
|
font-size: 1.45rem;
|
|
|
|
}
|
|
|
|
|
2022-05-11 10:03:56 +03:00
|
|
|
.gh-dashboard5-mrr .indicator {
|
|
|
|
border-color: #8E42FF;
|
2022-05-11 08:54:36 +03:00
|
|
|
}
|
|
|
|
|
2022-05-11 13:50:05 +03:00
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip {
|
|
|
|
min-width: 140px;
|
|
|
|
}
|
|
|
|
|
2022-05-11 08:54:36 +03:00
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value {
|
|
|
|
display: grid;
|
2022-05-11 13:50:05 +03:00
|
|
|
grid-template-columns: auto 1fr;
|
2022-04-26 20:54:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-1 {
|
2022-05-11 08:54:36 +03:00
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2022-05-11 10:26:57 +03:00
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-1 .metric,
|
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-2 .metric {
|
2022-05-11 08:54:36 +03:00
|
|
|
font-size: 1.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-1 .value,
|
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-2 .value {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
|
2022-05-11 10:03:56 +03:00
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-1 .indicator {
|
2022-05-11 08:54:36 +03:00
|
|
|
background: #8E42FF;
|
|
|
|
}
|
|
|
|
|
2022-05-11 10:03:56 +03:00
|
|
|
.gh-dashboard5-breakdown .gh-dashboard5-tooltip-value-2 .indicator {
|
2022-05-11 08:54:36 +03:00
|
|
|
background: #FB76B4;
|
2022-04-26 20:54:52 +03:00
|
|
|
}
|
|
|
|
|
2022-05-11 10:26:57 +03:00
|
|
|
.gh-dashboard5-mix .gh-dashboard5-tooltip-value .metric {
|
2022-05-11 10:03:56 +03:00
|
|
|
font-size: 1.3rem;
|
2022-04-26 20:54:52 +03:00
|
|
|
}
|
2022-04-27 16:40:38 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-totals {
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
2022-04-27 19:25:46 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-totals .gh-dashboard5-loading,
|
|
|
|
.gh-dashboard5-totals .gh-dashboard5-chart-container {
|
|
|
|
height: 200px;
|
|
|
|
}
|
2022-05-05 13:11:55 +03:00
|
|
|
|
|
|
|
.gh-dashboard5-totals .gh-dashboard5-chart-container {
|
|
|
|
margin-right: -10px; /* fix 99% width ChartJS hack */
|
|
|
|
}
|
2022-05-05 17:15:58 +03:00
|
|
|
|
2022-05-12 14:20:44 +03:00
|
|
|
@media screen and (max-width: 1120px) {
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-minicharts {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart {
|
|
|
|
padding: 16px 0;
|
|
|
|
border-left: 0 none;
|
|
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart:first-child {
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart:last-child {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-minichart .gh-dashboard5-data {
|
2022-05-12 14:20:44 +03:00
|
|
|
position: relative;
|
|
|
|
width: 50%;
|
|
|
|
top: 0;
|
2022-05-05 17:15:58 +03:00
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2022-05-12 14:20:44 +03:00
|
|
|
.gh-dashboard5-mix .gh-dashboard5-chart.narrow {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-05-12 14:33:05 +03:00
|
|
|
.gh-dashboard5-mix .gh-dashboard5-metric {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2022-05-05 17:15:58 +03:00
|
|
|
.gh-dashboard5-minichart .gh-dashboard5-select {
|
2022-05-05 20:17:07 +03:00
|
|
|
top: 4px;
|
2022-05-05 17:15:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns > .gh-dashboard5-column {
|
|
|
|
padding: 16px 0;
|
|
|
|
border-left: 0 none;
|
|
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns > .gh-dashboard5-column:first-child {
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-columns > .gh-dashboard5-column:last-child {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2022-05-05 17:53:49 +03:00
|
|
|
|
2022-05-09 18:47:34 +03:00
|
|
|
.is-zero .gh-dashboard5-mrr,
|
|
|
|
.is-zero .gh-dashboard5-breakdown,
|
|
|
|
.is-zero .gh-dashboard5-mix,
|
|
|
|
.is-zero .gh-dashboard5-engagement-30days,
|
|
|
|
.is-zero .gh-dashboard5-engagement-7days {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-05-05 17:53:49 +03:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.gh-dashboard5-box.gh-dashboard5-split {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-box.gh-dashboard5-split section {
|
|
|
|
margin-left: 24px !important;
|
|
|
|
margin-right: 24px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-split {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: auto auto auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-dashboard5-community {
|
|
|
|
grid-column: 1;
|
|
|
|
}
|
2022-05-09 18:47:34 +03:00
|
|
|
}
|