adjusting styles
This commit is contained in:
@@ -17,6 +17,7 @@
|
|||||||
.tui-card-title {
|
.tui-card-title {
|
||||||
padding: 16px 16px 0 16px;
|
padding: 16px 16px 0 16px;
|
||||||
font-size: mat-font-size($tech-ui-typography, subheading-2);
|
font-size: mat-font-size($tech-ui-typography, subheading-2);
|
||||||
|
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
||||||
color: mat-color($primary);
|
color: mat-color($primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
.header {
|
.header {
|
||||||
margin: 20px 3vw 20px 3vw;
|
margin: 15px 3vw 12px 3vw;
|
||||||
|
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress {
|
.progress {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<app-card>
|
<app-card class="status-list">
|
||||||
<div fxLayout="row" fxLayoutAlign="space-between start">
|
<div fxLayout="row" fxLayoutAlign="space-between start">
|
||||||
<app-card-title>{{title | uppercase}}</app-card-title>
|
<app-card-title>{{title | uppercase}}</app-card-title>
|
||||||
<app-list-toggle (listTypeEvent)="onToggle($event)" class="tui-card-toggle"></app-list-toggle>
|
<app-list-toggle (listTypeEvent)="onToggle($event)" class="tui-card-toggle"></app-list-toggle>
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
.tui-card-toggle {
|
.status-list .tui-card-toggle {
|
||||||
padding: 16px 16px 0 16px;
|
padding: 16px 16px 0 16px;
|
||||||
}
|
|
||||||
|
|
||||||
.tui-card-content {
|
|
||||||
padding-top: 0;
|
|
||||||
}
|
}
|
||||||
+20
-15
@@ -78,24 +78,25 @@ $tech-ui-dark-theme: mat-dark-theme($tech-ui-primary, $tech-ui-accent, $tech-ui-
|
|||||||
// Include theme styles for core and each component used in your app.
|
// Include theme styles for core and each component used in your app.
|
||||||
// Alternatively, you can import and @include the theme mixins for each component
|
// Alternatively, you can import and @include the theme mixins for each component
|
||||||
// that you are using.
|
// that you are using.
|
||||||
@include angular-material-theme($tech-ui-theme);
|
@include angular-material-theme($tech-ui-theme);
|
||||||
@include tui-card-theme($tech-ui-theme);
|
@include tui-card-theme($tech-ui-theme);
|
||||||
@include chart-item-theme($tech-ui-theme);
|
@include chart-item-theme($tech-ui-theme);
|
||||||
|
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #eeeeee;
|
background-color: #eeeeee;
|
||||||
font-size: mat-font-size($tech-ui-typography, body-1);
|
font-size: mat-font-size($tech-ui-typography, body-1);
|
||||||
font-family: mat-font-family($tech-ui-typography);
|
font-family: mat-font-family($tech-ui-typography);
|
||||||
line-height: mat-line-height($tech-ui-typography, body-1);
|
line-height: mat-line-height($tech-ui-typography, body-1);
|
||||||
color: #303030;
|
color: #303030;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: #303030;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: underline;
|
|
||||||
color: #303030;
|
|
||||||
}
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
@include angular-material-theme($tech-ui-dark-theme);
|
@include angular-material-theme($tech-ui-dark-theme);
|
||||||
@include tui-card-theme($tech-ui-dark-theme);
|
@include tui-card-theme($tech-ui-dark-theme);
|
||||||
@@ -111,6 +112,10 @@ $tech-ui-dark-theme: mat-dark-theme($tech-ui-primary, $tech-ui-accent, $tech-ui-
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-list .tui-card .tui-card-content {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Chart.js styles
|
// Chart.js styles
|
||||||
#chartjs-tooltip {
|
#chartjs-tooltip {
|
||||||
/* max z-index value */
|
/* max z-index value */
|
||||||
|
|||||||
Reference in New Issue
Block a user