-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[sc-2809] New graphic for resources pending to be processed (#335)
* [sc-2809] New graphic for resources pending to be processed * Don't display all labels on x-axis * Fix Changelog * Fix imports
- Loading branch information
1 parent
ea43d59
commit 99e8e5f
Showing
17 changed files
with
261 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
apps/dashboard/src/app/components/charts/_charts-common.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@import 'variables'; | ||
|
||
$chart-line-color: $color-neutral-light; | ||
$chart-font-size: font-size(xs); | ||
|
||
@mixin chart() { | ||
position: relative; | ||
|
||
.tick text { | ||
font-family: $font-family-body; | ||
font-size: $chart-font-size; | ||
font-weight: $font-weight-thin; | ||
cursor: default; | ||
user-select: none; | ||
} | ||
|
||
.grid-line { | ||
stroke: $chart-line-color; | ||
} | ||
|
||
.y-axis line { | ||
stroke: $chart-line-color; | ||
} | ||
} |
24 changes: 3 additions & 21 deletions
24
apps/dashboard/src/app/components/charts/bar-chart/bar-chart.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 4 additions & 28 deletions
32
apps/dashboard/src/app/components/charts/line-chart/line-chart.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,10 @@ | ||
@import '../charts-common'; | ||
|
||
.line-chart { | ||
--app-chart-line-color: #e1e1e1; | ||
@include chart(); | ||
|
||
.data-line { | ||
stroke: var(--stf-primary); | ||
} | ||
|
||
.tick { | ||
text { | ||
font-family: var(--stf-font-family); | ||
font-size: var(--stf-font-size-ssmall); | ||
font-weight: var(--stf-font-weight-light); | ||
cursor: default; | ||
user-select: none; | ||
} | ||
} | ||
|
||
.grid-line { | ||
stroke: var(--app-chart-line-color); | ||
} | ||
|
||
.y-axis { | ||
line { | ||
stroke: var(--app-chart-line-color); | ||
} | ||
stroke: $color-primary-regular; | ||
} | ||
|
||
.x-axis { | ||
line { | ||
stroke: #fff; | ||
stroke-width: 3px; | ||
} | ||
} | ||
} |
Oops, something went wrong.