codevdesign 2.0.16 → 2.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/csqc.css +4 -1
- package/package.json +1 -1
- package/plugins/vuetify.ts +18 -6
package/assets/csqc.css
CHANGED
|
@@ -29,10 +29,13 @@
|
|
|
29
29
|
padding-top: 12px; /* pt-3 */
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
/* Quand la page utilise pleine largeur, le parent devient transparent
|
|
32
|
+
/* Quand la page utilise pleine largeur, le parent devient transparent
|
|
33
|
+
et n'applique plus son padding : l'enfant .conteneurLargeurMax fournit le sien
|
|
34
|
+
(évite le doublon de padding, notamment 12px en haut). */
|
|
33
35
|
.conteneurLargeur:has(.conteneurLargeurMax) {
|
|
34
36
|
background-color: transparent;
|
|
35
37
|
min-height: unset;
|
|
38
|
+
padding: 0;
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
/* Contenu pleine largeur viewport, s'échappe du conteneurLargeur */
|
package/package.json
CHANGED
package/plugins/vuetify.ts
CHANGED
|
@@ -54,33 +54,45 @@ export default createVuetify({
|
|
|
54
54
|
size: "x-large",
|
|
55
55
|
class: "BoutonCSQC"
|
|
56
56
|
},
|
|
57
|
+
VRow: {
|
|
58
|
+
density: 'compact',
|
|
59
|
+
},
|
|
57
60
|
VTextField: {
|
|
58
61
|
variant: 'outlined',
|
|
59
62
|
hideDetails: 'auto',
|
|
63
|
+
density: 'compact',
|
|
64
|
+
},
|
|
65
|
+
VDataTable: {
|
|
66
|
+
elevation: 4,
|
|
60
67
|
},
|
|
61
68
|
VSwitch: {
|
|
62
69
|
inset: true,
|
|
63
70
|
color: 'primary',
|
|
64
|
-
},
|
|
65
|
-
VSelect: {
|
|
66
|
-
variant: 'outlined',
|
|
67
71
|
hideDetails: 'auto',
|
|
72
|
+
density: 'compact',
|
|
68
73
|
},
|
|
69
|
-
|
|
74
|
+
VSelect: {
|
|
70
75
|
variant: 'outlined',
|
|
71
76
|
hideDetails: 'auto',
|
|
77
|
+
density: 'compact',
|
|
72
78
|
},
|
|
73
79
|
VTextarea: {
|
|
74
80
|
variant: 'outlined',
|
|
75
81
|
autoGrow: true,
|
|
76
82
|
hideDetails: 'auto',
|
|
77
83
|
},
|
|
78
|
-
|
|
79
|
-
vNumberInput: {
|
|
84
|
+
VNumberInput: {
|
|
80
85
|
controlVariant: 'split',
|
|
81
86
|
variant: 'outlined',
|
|
82
87
|
hideDetails: 'auto',
|
|
88
|
+
density: 'compact',
|
|
89
|
+
decimalSeparator: ',',
|
|
83
90
|
},
|
|
91
|
+
VAutocomplete: {
|
|
92
|
+
variant: 'outlined',
|
|
93
|
+
hideDetails: 'auto',
|
|
94
|
+
density: 'compact'
|
|
95
|
+
}
|
|
84
96
|
},
|
|
85
97
|
|
|
86
98
|
theme: {
|