mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.2 KiB
71 lines
1.2 KiB
:host {
|
|
display: block;
|
|
|
|
::ng-deep {
|
|
.mat-form-field-infix {
|
|
border-top: 0 solid transparent !important;
|
|
}
|
|
}
|
|
|
|
.mat-table {
|
|
td {
|
|
border: 0;
|
|
}
|
|
|
|
th {
|
|
::ng-deep {
|
|
.mat-sort-header-container {
|
|
justify-content: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mat-row {
|
|
&:nth-child(even) {
|
|
background-color: rgba(
|
|
var(--dark-primary-text),
|
|
var(--palette-background-hover-alpha)
|
|
);
|
|
}
|
|
|
|
.type-badge {
|
|
background-color: rgba(var(--dark-primary-text), 0.05);
|
|
border-radius: 1rem;
|
|
line-height: 1em;
|
|
|
|
ion-icon {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
&.buy {
|
|
color: var(--green);
|
|
}
|
|
|
|
&.sell {
|
|
color: var(--orange);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
:host-context(.is-dark-theme) {
|
|
.mat-form-field {
|
|
color: rgba(var(--light-primary-text));
|
|
}
|
|
|
|
.mat-table {
|
|
.mat-row {
|
|
&:nth-child(even) {
|
|
background-color: rgba(
|
|
var(--light-primary-text),
|
|
var(--palette-background-hover-alpha)
|
|
);
|
|
}
|
|
|
|
.type-badge {
|
|
background-color: rgba(var(--light-primary-text), 0.1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|