forked from verdnatura/salix-front
fix(claimLines): refs #7001 add style to clear qchip
This commit is contained in:
parent
5580d15606
commit
1da314e425
|
@ -1,10 +1,5 @@
|
|||
// app global css in SCSS form
|
||||
@import './icons.scss';
|
||||
body {
|
||||
.q-chip__content {
|
||||
color: 'red';
|
||||
}
|
||||
}
|
||||
|
||||
body.body--light {
|
||||
--font-color: black;
|
||||
|
@ -16,8 +11,7 @@ body.body--light {
|
|||
|
||||
background-color: var(--vn-page-color);
|
||||
|
||||
.q-header .q-toolbar,
|
||||
.q-chip {
|
||||
.q-header .q-toolbar {
|
||||
color: var(--font-color);
|
||||
}
|
||||
.q-card,
|
||||
|
@ -35,10 +29,6 @@ body.body--dark {
|
|||
--vn-accent-color: #424242;
|
||||
|
||||
background-color: #222;
|
||||
|
||||
.q-chip {
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
|
@ -124,6 +114,10 @@ select:-webkit-autofill {
|
|||
content: ' *';
|
||||
}
|
||||
|
||||
.q-chip {
|
||||
color: black;
|
||||
}
|
||||
|
||||
input[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
|
|
@ -161,7 +161,7 @@ function showImportDialog() {
|
|||
<div class="row q-gutter-md">
|
||||
<div>
|
||||
{{ t('Amount') }}
|
||||
<QChip :dense="$q.screen.lt.sm">
|
||||
<QChip :dense="$q.screen.lt.sm" text-color="white">
|
||||
{{ toCurrency(amount) }}
|
||||
</QChip>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue