We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fe7a2e commit fd4343fCopy full SHA for fd4343f
2 files changed
packages/vue-quasar/src/components/ActionButton.vue
@@ -3,9 +3,9 @@
3
:label="label"
4
:icon="resolvedIcon"
5
:color="isDefault ? undefined : action.config.variant"
6
- :outline="isDefault && !flat"
+ :outline="false"
7
:unelevated="!isDefault && !flat"
8
- :flat="flat"
+ :flat="isDefault || flat"
9
:dense="dense"
10
:size="size"
11
no-caps
playground/vue-quasar/src/quasar-variants.css
@@ -1,20 +1,14 @@
1
-.schema-btn {
+.q-btn {
2
border-radius: 4px !important;
+ color: #616161;
+ background: #f1f1f1;
}
-.text-default {
- color: #616161 !important;
-}
-
-.bg-default {
- background: #616161 !important;
12
13
-.text-primary {
+.q-btn.text-primary {
14
color: #1976d2 !important;
15
16
17
-.bg-primary {
+.q-btn.bg-primary {
18
background: #1976d2 !important;
19
20
0 commit comments