mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
fix(dashboard): improve font-weight for dashboard cards
This commit is contained in:
parent
f673dca532
commit
c00e9b479c
13 changed files with 55 additions and 34 deletions
|
@ -24,6 +24,8 @@ export const COSMIC_THEME = {
|
|||
tooltipBorderColor: '#00d977',
|
||||
tooltipExtraCss: 'box-shadow: 0px 2px 46px 0 rgba(0, 255, 170, 0.35); border-radius: 10px; padding: 4px 16px;',
|
||||
tooltipTextColor: '#ffffff',
|
||||
tooltipFontWeight: 'normal',
|
||||
|
||||
lineBg: '#d1d1ff',
|
||||
lineShadowBlur: '14',
|
||||
itemColor: '#BEBBFF',
|
||||
|
@ -42,6 +44,7 @@ export const COSMIC_THEME = {
|
|||
tooltipBorderColor: '#00d977',
|
||||
tooltipExtraCss: 'box-shadow: 0px 2px 46px 0 rgba(0, 255, 170, 0.35); border-radius: 10px; padding: 8px 24px;',
|
||||
tooltipTextColor: '#ffffff',
|
||||
tooltipFontWeight: 'normal',
|
||||
|
||||
axisLineColor: 'rgba(161, 161 ,229, 0.3)',
|
||||
xAxisTextColor: '#a1a1e5',
|
||||
|
|
|
@ -17,7 +17,9 @@ export const DEFAULT_THEME = {
|
|||
tooltipBg: '#ffffff',
|
||||
tooltipBorderColor: '#c0c8d1',
|
||||
tooltipExtraCss: 'border-radius: 10px; padding: 4px 16px;',
|
||||
tooltipTextColor: '#222222',
|
||||
tooltipTextColor: '#2a2a2a',
|
||||
tooltipFontWeight: 'bolder',
|
||||
|
||||
lineBg: '#c0c8d1',
|
||||
lineShadowBlur: '1',
|
||||
itemColor: '#bcc3cc',
|
||||
|
@ -35,10 +37,11 @@ export const DEFAULT_THEME = {
|
|||
tooltipLineWidth: '0',
|
||||
tooltipBorderColor: '#ebeef2',
|
||||
tooltipExtraCss: 'border-radius: 10px; padding: 8px 24px;',
|
||||
tooltipTextColor: '#222222',
|
||||
tooltipTextColor: '#2a2a2a',
|
||||
tooltipFontWeight: 'bolder',
|
||||
|
||||
axisLineColor: 'rgba(0, 0, 0, 0)',
|
||||
xAxisTextColor: '#222222',
|
||||
xAxisTextColor: '#2a2a2a',
|
||||
yAxisSplitLine: '#ebeef2',
|
||||
|
||||
itemBorderColor: '#42db7d',
|
||||
|
|
|
@ -43,9 +43,14 @@
|
|||
}
|
||||
|
||||
.user-name {
|
||||
font-size: 1.25rem;
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
font-damily: nb-theme(font-secondary);
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
color: nb-theme(color-fg-heading);
|
||||
font-size: 1.25rem;
|
||||
|
||||
@include nb-for-theme(cosmic) {
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
}
|
||||
}
|
||||
|
||||
.user-title {
|
||||
|
|
|
@ -63,6 +63,7 @@ export class ElectricityChartComponent implements AfterViewInit {
|
|||
textStyle: {
|
||||
color: eTheme.tooltipTextColor,
|
||||
fontSize: 20,
|
||||
fontWeight: eTheme.tooltipFontWeight,
|
||||
},
|
||||
position: 'top',
|
||||
backgroundColor: eTheme.tooltipBg,
|
||||
|
|
|
@ -76,17 +76,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
@include nb-for-theme(cosmic) {
|
||||
nb-tabset /deep/ ul li.active {
|
||||
background-color: nb-theme(color-primary);
|
||||
border-radius: nb-theme(radius);
|
||||
|
||||
&::before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.stats-month {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -199,4 +188,15 @@
|
|||
.dropdown {
|
||||
min-width: 130px;
|
||||
}
|
||||
|
||||
@include nb-for-theme(cosmic) {
|
||||
nb-tabset /deep/ ul li.active {
|
||||
background-color: nb-theme(color-primary);
|
||||
border-radius: nb-theme(radius);
|
||||
|
||||
&::before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,10 +18,14 @@
|
|||
|
||||
.title {
|
||||
font-family: nb-theme(font-secondary);
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
color: nb-theme(color-fg-heading);
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
|
||||
@include nb-for-theme(cosmic) {
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
}
|
||||
}
|
||||
|
||||
.description {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@import '../../../../@theme/styles/themes';
|
||||
@import '~@nebular/theme/components/card/card.component.theme';
|
||||
|
||||
@include nb-install-component() {
|
||||
:host {
|
||||
|
@ -62,21 +63,16 @@
|
|||
|
||||
.room-text {
|
||||
fill: nb-theme(color-fg-heading);
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
}
|
||||
.room-border {
|
||||
stroke: nb-theme(color-success);
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: Replace with the card header styles mixin
|
||||
.rooms-card-header {
|
||||
line-height: 2rem;
|
||||
font-size: 1.25rem;
|
||||
font-family: nb-theme(font-secondary);
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
color: nb-theme(color-fg-heading);
|
||||
padding: 1.25rem;
|
||||
@include nb-card-header();
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
@include nb-for-theme(cosmic) {
|
||||
|
|
|
@ -81,9 +81,9 @@
|
|||
width: 100%;
|
||||
color: white;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
font-family: nb-theme(font-family-secondary);
|
||||
font-size: 1rem;
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
font-family: nb-theme(font-secondary);
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
font-size: 1.25rem;
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
|
@ -110,7 +110,7 @@
|
|||
}
|
||||
|
||||
span {
|
||||
font-family: nb-theme(font-family-secondary);
|
||||
font-family: nb-theme(font-secondary);
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
color: nb-theme(color-fg-heading);
|
||||
text-transform: uppercase;
|
||||
|
@ -132,5 +132,9 @@
|
|||
background-color: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
nb-action span {
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
.details {
|
||||
font-size: 1.25rem;
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
line-height: 1;
|
||||
span {
|
||||
font-size: 1rem;
|
||||
|
@ -50,7 +50,7 @@
|
|||
color: nb-theme(color-fg-heading);
|
||||
|
||||
.value {
|
||||
color: nb-theme(color-success);
|
||||
color: nb-theme(color-fg-highlight);
|
||||
}
|
||||
|
||||
.details span {
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
.title {
|
||||
font-family: nb-theme(font-secondary);
|
||||
font-size: 1.5rem;
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
color: nb-theme(card-fg-heading);
|
||||
}
|
||||
|
||||
|
@ -126,6 +126,10 @@
|
|||
border-radius: nb-theme(card-border-radius) 0 0 nb-theme(card-border-radius);
|
||||
}
|
||||
|
||||
.title {
|
||||
font-weight: nb-theme(font-weight-bolder);
|
||||
}
|
||||
|
||||
.status {
|
||||
font-weight: nb-theme(font-weight-light);
|
||||
}
|
||||
|
|
|
@ -64,6 +64,7 @@ export class TrafficChartComponent implements AfterViewInit {
|
|||
},
|
||||
textStyle: {
|
||||
color: trafficTheme.tooltipTextColor,
|
||||
fontWeight: trafficTheme.tooltipFontWeight,
|
||||
fontSize: 16,
|
||||
},
|
||||
position: 'top',
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
font-family: nb-theme(font-secondary);
|
||||
font-size: 3rem;
|
||||
line-height: 3rem;
|
||||
font-weight: nb-theme(font-weight-light);
|
||||
font-weight: nb-theme(font-weight-normal);
|
||||
color: nb-theme(color-fg-heading);
|
||||
}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
}
|
||||
|
||||
span {
|
||||
font-family: nb-theme(font-family-secondary);
|
||||
font-family: nb-theme(font-secondary);
|
||||
font-weight: nb-theme(font-weight-bold);
|
||||
color: nb-theme(color-fg-heading);
|
||||
text-transform: uppercase;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue