@quidgest/ui 0.18.0 → 0.20.0
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/CHANGELOG.md +89 -0
- package/dist/json/api.json +1328 -215
- package/dist/manifest/components.json +3 -1
- package/dist/ui.css +1448 -185
- package/dist/ui.esm.js +1448 -825
- package/dist/ui.js +1411 -788
- package/dist/ui.min.css +2 -1
- package/dist/ui.min.js +1411 -788
- package/dist/ui.scss +597 -157
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +1 -1
- package/esm/components/QGrid/QCol.vue.js +1 -1
- package/esm/components/QInputGroup/QInputGroup.d.ts +147 -3
- package/esm/components/QInputGroup/QInputGroup.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.vue.js +32 -23
- package/esm/components/QInputGroup/index.d.ts +81 -4
- package/esm/components/QInputGroup/index.d.ts.map +1 -1
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +3 -1
- package/esm/components/QList/QListItem.d.ts.map +1 -1
- package/esm/components/QList/QListItem.vue.js +24 -28
- package/esm/components/QList/types.d.ts +1 -1
- package/esm/components/QOverlay/types.d.ts +3 -1
- package/esm/components/QOverlay/types.d.ts.map +1 -1
- package/esm/components/QPhoneField/QPhoneField.d.ts +2263 -0
- package/esm/components/QPhoneField/QPhoneField.d.ts.map +1 -0
- package/esm/components/QPhoneField/QPhoneField.vue.js +478 -0
- package/esm/components/QPhoneField/QPhoneField2.vue.js +5 -0
- package/esm/components/QPhoneField/constants.d.ts +11 -0
- package/esm/components/QPhoneField/constants.d.ts.map +1 -0
- package/esm/components/QPhoneField/constants.js +14 -0
- package/esm/components/QPhoneField/index.d.ts +1253 -0
- package/esm/components/QPhoneField/index.d.ts.map +1 -0
- package/esm/components/QPhoneField/index.js +6 -0
- package/esm/components/QPhoneField/types.d.ts +108 -0
- package/esm/components/QPhoneField/types.d.ts.map +1 -0
- package/esm/components/{QGroupBox/QGroupBox.d.ts → QSection/QSection.d.ts} +4 -4
- package/esm/components/QSection/QSection.d.ts.map +1 -0
- package/esm/components/{QGroupBox/QGroupBox.vue.js → QSection/QSection.vue.js} +8 -8
- package/esm/components/QSection/QSection2.vue.js +5 -0
- package/esm/components/{QGroupBox → QSection}/index.d.ts +8 -8
- package/esm/components/QSection/index.d.ts.map +1 -0
- package/esm/components/QSection/index.js +6 -0
- package/esm/components/QSection/types.d.ts +32 -0
- package/esm/components/QSection/types.d.ts.map +1 -0
- package/esm/components/QSelect/QSelect.d.ts +16 -1
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +158 -129
- package/esm/components/QSelect/index.d.ts +31 -3
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QSelect/types.d.ts +13 -0
- package/esm/components/QSelect/types.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebar.d.ts +53 -6
- package/esm/components/QSidebar/QSidebar.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebar.vue.js +76 -106
- package/esm/components/QSidebar/QSidebarAnchor.d.ts +24 -210
- package/esm/components/QSidebar/QSidebarAnchor.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebarAnchor.vue.js +47 -59
- package/esm/components/QSidebar/QSidebarItem.d.ts +213 -0
- package/esm/components/QSidebar/QSidebarItem.d.ts.map +1 -0
- package/esm/components/QSidebar/QSidebarItem.vue.js +130 -0
- package/esm/components/QSidebar/QSidebarItem2.vue.js +5 -0
- package/esm/components/QSidebar/QSidebarPanel.d.ts +1 -7
- package/esm/components/QSidebar/QSidebarPanel.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebarPanel.vue.js +4 -10
- package/esm/components/QSidebar/context.d.ts +108 -0
- package/esm/components/QSidebar/context.d.ts.map +1 -0
- package/esm/components/QSidebar/context.js +4 -0
- package/esm/components/QSidebar/index.d.ts +166 -8
- package/esm/components/QSidebar/index.d.ts.map +1 -1
- package/esm/components/QSidebar/index.js +3 -2
- package/esm/components/QSidebar/types.d.ts +77 -42
- package/esm/components/QSidebar/types.d.ts.map +1 -1
- package/esm/components/QTabs/QTab.d.ts +1 -0
- package/esm/components/QTabs/QTab.d.ts.map +1 -1
- package/esm/components/QTabs/QTab.vue.js +2 -1
- package/esm/components/QTabs/QTabs.d.ts +2 -0
- package/esm/components/QTabs/QTabs.d.ts.map +1 -1
- package/esm/components/QTabs/QTabs.vue.js +125 -46
- package/esm/components/QTabs/context.d.ts +10 -3
- package/esm/components/QTabs/context.d.ts.map +1 -1
- package/esm/components/QTabs/index.d.ts +2 -0
- package/esm/components/QTabs/index.d.ts.map +1 -1
- package/esm/components/QTabs/types.d.ts +3 -1
- package/esm/components/QTabs/types.d.ts.map +1 -1
- package/esm/components/index.d.ts +2 -1
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +48 -45
- package/esm/composables/useDialog/index.d.ts +2 -88
- package/esm/composables/useDialog/index.d.ts.map +1 -1
- package/esm/composables/useDialog/index.js +6 -6
- package/esm/composables/useDialog/types.d.ts +14 -4
- package/esm/composables/useDialog/types.d.ts.map +1 -1
- package/esm/index.d.ts +3 -1
- package/esm/vendors/country-flag-icons/modules/countries.json.js +4 -0
- package/esm/vendors/country-flag-icons/modules/hasFlag.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouType.js +312 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +142 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.PatternParser.js +145 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +45 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.js +258 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.util.js +57 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeParser.js +242 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeState.js +115 -0
- package/esm/vendors/libphonenumber-js/es6/ParseError.js +116 -0
- package/esm/vendors/libphonenumber-js/es6/PhoneNumber.js +164 -0
- package/esm/vendors/libphonenumber-js/es6/constants.js +4 -0
- package/esm/vendors/libphonenumber-js/es6/format.js +77 -0
- package/esm/vendors/libphonenumber-js/es6/formatIncompletePhoneNumber.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/getCountries.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/getExampleNumber.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/RFC3966.js +9 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/checkNumberLength.js +21 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +11 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extension/extractExtension.js +16 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +36 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +21 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js +18 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractNationalNumber.js +27 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +27 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractPhoneContext.js +15 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +11 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js +13 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +12 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js +43 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getIddPrefix.js +10 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getNumberType.js +61 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js +14 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isCallingCode.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isCountryCode.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isObject.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +12 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/matchesEntirely.js +6 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/mergeArrays.js +39 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/parseDigits.js +82 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/stripIddPrefix.js +18 -0
- package/esm/vendors/libphonenumber-js/es6/isPossible.js +32 -0
- package/esm/vendors/libphonenumber-js/es6/isValid.js +11 -0
- package/esm/vendors/libphonenumber-js/es6/metadata.js +474 -0
- package/esm/vendors/libphonenumber-js/es6/normalizeArguments.js +110 -0
- package/esm/vendors/libphonenumber-js/es6/parse.js +103 -0
- package/esm/vendors/libphonenumber-js/es6/parseIncompletePhoneNumber.js +48 -0
- package/esm/vendors/libphonenumber-js/es6/parsePhoneNumber.js +9 -0
- package/esm/vendors/libphonenumber-js/es6/parsePhoneNumberWithError_.js +58 -0
- package/esm/vendors/libphonenumber-js/es6/parsePhoneNumber_.js +66 -0
- package/esm/vendors/libphonenumber-js/es6/tools/semver-compare.js +14 -0
- package/esm/vendors/libphonenumber-js/examples.mobile.json.js +250 -0
- package/esm/vendors/libphonenumber-js/max/exports/AsYouType.js +9 -0
- package/esm/vendors/libphonenumber-js/max/exports/formatIncompletePhoneNumber.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/getCountries.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/getCountryCallingCode.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/getExampleNumber.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/isSupportedCountry.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/parsePhoneNumber.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/withMetadataArgument.js +8 -0
- package/esm/vendors/libphonenumber-js/metadata.max.json.js +10489 -0
- package/package.json +9 -6
- package/esm/components/QGroupBox/QGroupBox.d.ts.map +0 -1
- package/esm/components/QGroupBox/QGroupBox2.vue.js +0 -5
- package/esm/components/QGroupBox/index.d.ts.map +0 -1
- package/esm/components/QGroupBox/index.js +0 -6
- package/esm/components/QGroupBox/types.d.ts +0 -32
- package/esm/components/QGroupBox/types.d.ts.map +0 -1
package/dist/ui.scss
CHANGED
|
@@ -1,11 +1,277 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.
|
|
2
|
+
* Quidgest UI v0.20.0
|
|
3
3
|
* (c) 2026 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
@use 'sass:math';
|
|
7
7
|
@use 'sass:map';
|
|
8
8
|
|
|
9
|
+
[class*=' flag:'],[class^='flag:'] {display:inline-block;background-size:cover;height:1em;width:1.5em;--CountryFlagIcon-height:1em;height:var(--CountryFlagIcon-height);width:calc(var(--CountryFlagIcon-height)*3/2);}
|
|
10
|
+
.flag\:AC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
11
|
+
.flag\:AD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
12
|
+
.flag\:AE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
13
|
+
.flag\:AF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
14
|
+
.flag\:AG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
15
|
+
.flag\:AI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
16
|
+
.flag\:AL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
17
|
+
.flag\:AM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
18
|
+
.flag\:AO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
19
|
+
.flag\:AQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
20
|
+
.flag\:AR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
21
|
+
.flag\:AS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
22
|
+
.flag\:AT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
23
|
+
.flag\:AU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
24
|
+
.flag\:AW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
25
|
+
.flag\:AX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
26
|
+
.flag\:AZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
27
|
+
.flag\:BA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
28
|
+
.flag\:BB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
29
|
+
.flag\:BD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
30
|
+
.flag\:BE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
31
|
+
.flag\:BF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
32
|
+
.flag\:BG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
33
|
+
.flag\:BH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
34
|
+
.flag\:BI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
35
|
+
.flag\:BJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
36
|
+
.flag\:BL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
37
|
+
.flag\:BM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
38
|
+
.flag\:BN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
39
|
+
.flag\:BO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
40
|
+
.flag\:BQ-BO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
41
|
+
.flag\:BQ-SA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
42
|
+
.flag\:BQ-SE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
43
|
+
.flag\:BQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
44
|
+
.flag\:BR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
45
|
+
.flag\:BS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
46
|
+
.flag\:BT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
47
|
+
.flag\:BV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
48
|
+
.flag\:BW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
49
|
+
.flag\:BY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
50
|
+
.flag\:BZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
51
|
+
.flag\:CA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
52
|
+
.flag\:CC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
53
|
+
.flag\:CD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
54
|
+
.flag\:CF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
55
|
+
.flag\:CG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
56
|
+
.flag\:CH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
57
|
+
.flag\:CI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
58
|
+
.flag\:CK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
59
|
+
.flag\:CL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
60
|
+
.flag\:CM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
61
|
+
.flag\:CN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
62
|
+
.flag\:CO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
63
|
+
.flag\:CR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
64
|
+
.flag\:CU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
65
|
+
.flag\:CV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
66
|
+
.flag\:CW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
67
|
+
.flag\:CX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
68
|
+
.flag\:CY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
69
|
+
.flag\:CZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
70
|
+
.flag\:DE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
71
|
+
.flag\:DJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
72
|
+
.flag\:DK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
73
|
+
.flag\:DM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
74
|
+
.flag\:DO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
75
|
+
.flag\:DZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
76
|
+
.flag\:EC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
77
|
+
.flag\:EE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
78
|
+
.flag\:EG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
79
|
+
.flag\:EH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
80
|
+
.flag\:ER{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
81
|
+
.flag\:ES-CT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
82
|
+
.flag\:ES{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
83
|
+
.flag\:ET{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
84
|
+
.flag\:EU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
85
|
+
.flag\:FI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
86
|
+
.flag\:FJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
87
|
+
.flag\:FK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
88
|
+
.flag\:FM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
89
|
+
.flag\:FO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
90
|
+
.flag\:FR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
91
|
+
.flag\:GA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
92
|
+
.flag\:GB-ENG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
93
|
+
.flag\:GB-NIR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
94
|
+
.flag\:GB-SCT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
95
|
+
.flag\:GB-WLS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
96
|
+
.flag\:GB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
97
|
+
.flag\:GD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
98
|
+
.flag\:GE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
99
|
+
.flag\:GF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
100
|
+
.flag\:GG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
101
|
+
.flag\:GH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
102
|
+
.flag\:GI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
103
|
+
.flag\:GL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
104
|
+
.flag\:GM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
105
|
+
.flag\:GN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
106
|
+
.flag\:GP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
107
|
+
.flag\:GQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
108
|
+
.flag\:GR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
109
|
+
.flag\:GS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
110
|
+
.flag\:GT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
111
|
+
.flag\:GU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
112
|
+
.flag\:GW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
113
|
+
.flag\:GY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
114
|
+
.flag\:HK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
115
|
+
.flag\:HM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
116
|
+
.flag\:HN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
117
|
+
.flag\:HR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
118
|
+
.flag\:HT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
119
|
+
.flag\:HU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
120
|
+
.flag\:IC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
121
|
+
.flag\:ID{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
122
|
+
.flag\:IE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
123
|
+
.flag\:IL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
124
|
+
.flag\:IM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
125
|
+
.flag\:IN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
126
|
+
.flag\:IO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
127
|
+
.flag\:IQ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
128
|
+
.flag\:IR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
129
|
+
.flag\:IS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
130
|
+
.flag\:IT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
131
|
+
.flag\:JE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
132
|
+
.flag\:JM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
133
|
+
.flag\:JO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
134
|
+
.flag\:JP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
135
|
+
.flag\:KE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
136
|
+
.flag\:KG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
137
|
+
.flag\:KH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
138
|
+
.flag\:KI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
139
|
+
.flag\:KM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
140
|
+
.flag\:KN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
141
|
+
.flag\:KP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
142
|
+
.flag\:KR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
143
|
+
.flag\:KW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
144
|
+
.flag\:KY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
145
|
+
.flag\:KZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
146
|
+
.flag\:LA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
147
|
+
.flag\:LB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
148
|
+
.flag\:LC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
149
|
+
.flag\:LI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
150
|
+
.flag\:LK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
151
|
+
.flag\:LR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
152
|
+
.flag\:LS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
153
|
+
.flag\:LT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
154
|
+
.flag\:LU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
155
|
+
.flag\:LV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
156
|
+
.flag\:LY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
157
|
+
.flag\:MA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
158
|
+
.flag\:MC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
159
|
+
.flag\:MD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
160
|
+
.flag\:ME{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
161
|
+
.flag\:MF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
162
|
+
.flag\:MG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
163
|
+
.flag\:MH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
164
|
+
.flag\:MK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
165
|
+
.flag\:ML{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
166
|
+
.flag\:MM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
167
|
+
.flag\:MN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
168
|
+
.flag\:MO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
169
|
+
.flag\:MP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
170
|
+
.flag\:MQ{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 900 600' xmlns='http:
|
|
171
|
+
.flag\:MR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
172
|
+
.flag\:MS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
173
|
+
.flag\:MT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
174
|
+
.flag\:MU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
175
|
+
.flag\:MV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
176
|
+
.flag\:MW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
177
|
+
.flag\:MX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
178
|
+
.flag\:MY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
179
|
+
.flag\:MZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
180
|
+
.flag\:NA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
181
|
+
.flag\:NC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
182
|
+
.flag\:NE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
183
|
+
.flag\:NF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
184
|
+
.flag\:NG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
185
|
+
.flag\:NI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
186
|
+
.flag\:NL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
187
|
+
.flag\:NO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
188
|
+
.flag\:NP{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
189
|
+
.flag\:NR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
190
|
+
.flag\:NU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
191
|
+
.flag\:NZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
192
|
+
.flag\:OM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
193
|
+
.flag\:PA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
194
|
+
.flag\:PE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
195
|
+
.flag\:PF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
196
|
+
.flag\:PG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
197
|
+
.flag\:PH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
198
|
+
.flag\:PK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
199
|
+
.flag\:PL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
200
|
+
.flag\:PM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
201
|
+
.flag\:PN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
202
|
+
.flag\:PR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
203
|
+
.flag\:PS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
204
|
+
.flag\:PT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
205
|
+
.flag\:PW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
206
|
+
.flag\:PY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
207
|
+
.flag\:QA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
208
|
+
.flag\:RE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
209
|
+
.flag\:RO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
210
|
+
.flag\:RS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
211
|
+
.flag\:RU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
212
|
+
.flag\:RW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
213
|
+
.flag\:SA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
214
|
+
.flag\:SB{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
215
|
+
.flag\:SC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
216
|
+
.flag\:SD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
217
|
+
.flag\:SE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
218
|
+
.flag\:SG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
219
|
+
.flag\:SH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
220
|
+
.flag\:SI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
221
|
+
.flag\:SJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
222
|
+
.flag\:SK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
223
|
+
.flag\:SL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
224
|
+
.flag\:SM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
225
|
+
.flag\:SN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
226
|
+
.flag\:SO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
227
|
+
.flag\:SR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
228
|
+
.flag\:SS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
229
|
+
.flag\:ST{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
230
|
+
.flag\:SV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
231
|
+
.flag\:SX{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
232
|
+
.flag\:SY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
233
|
+
.flag\:SZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
234
|
+
.flag\:TA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
235
|
+
.flag\:TC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
236
|
+
.flag\:TD{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
237
|
+
.flag\:TF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
238
|
+
.flag\:TG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
239
|
+
.flag\:TH{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
240
|
+
.flag\:TJ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
241
|
+
.flag\:TK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
242
|
+
.flag\:TL{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
243
|
+
.flag\:TM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
244
|
+
.flag\:TN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
245
|
+
.flag\:TO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
246
|
+
.flag\:TR{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
247
|
+
.flag\:TT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
248
|
+
.flag\:TV{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
249
|
+
.flag\:TW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
250
|
+
.flag\:TZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
251
|
+
.flag\:UA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
252
|
+
.flag\:UG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
253
|
+
.flag\:UM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
254
|
+
.flag\:US{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
255
|
+
.flag\:UY{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
256
|
+
.flag\:UZ{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
257
|
+
.flag\:VA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
258
|
+
.flag\:VC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
259
|
+
.flag\:VE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
260
|
+
.flag\:VG{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
261
|
+
.flag\:VI{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
262
|
+
.flag\:VN{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
263
|
+
.flag\:VU{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
264
|
+
.flag\:WF{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
265
|
+
.flag\:WS{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
266
|
+
.flag\:XA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
267
|
+
.flag\:XC{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
268
|
+
.flag\:XK{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
269
|
+
.flag\:XO{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
270
|
+
.flag\:YE{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
271
|
+
.flag\:YT{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
272
|
+
.flag\:ZA{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
273
|
+
.flag\:ZM{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
274
|
+
.flag\:ZW{background-image:url("data:image/svg+xml,%3csvg xmlns='http:
|
|
9
275
|
*,
|
|
10
276
|
::before,
|
|
11
277
|
::after {
|
|
@@ -593,7 +859,8 @@ $transition-duration: 0.2s !default;
|
|
|
593
859
|
}
|
|
594
860
|
&--pill {
|
|
595
861
|
border-radius: 9999px;
|
|
596
|
-
.q-button
|
|
862
|
+
#{$this}__content.q-button,
|
|
863
|
+
#{$this}__remove.q-button {
|
|
597
864
|
border-radius: 9999px;
|
|
598
865
|
}
|
|
599
866
|
}
|
|
@@ -647,7 +914,7 @@ $transition-duration: 0.2s !default;
|
|
|
647
914
|
vertical-align: middle;
|
|
648
915
|
flex-shrink: 0;
|
|
649
916
|
}
|
|
650
|
-
.q-badge__content {
|
|
917
|
+
&.q-badge .q-badge__content {
|
|
651
918
|
padding: 0;
|
|
652
919
|
}
|
|
653
920
|
|
|
@@ -1431,11 +1698,13 @@ $q-carousel-height-md: 300px;
|
|
|
1431
1698
|
right: 0;
|
|
1432
1699
|
}
|
|
1433
1700
|
}
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1701
|
+
&.q-card {
|
|
1702
|
+
.q-card__content {
|
|
1703
|
+
padding: 0;
|
|
1704
|
+
}
|
|
1705
|
+
.q-card__header {
|
|
1706
|
+
padding-bottom: 0;
|
|
1707
|
+
}
|
|
1439
1708
|
}
|
|
1440
1709
|
&__header {
|
|
1441
1710
|
display: flex;
|
|
@@ -1450,7 +1719,7 @@ $q-carousel-height-md: 300px;
|
|
|
1450
1719
|
flex-direction: column;
|
|
1451
1720
|
padding: 0;
|
|
1452
1721
|
}
|
|
1453
|
-
&__btn {
|
|
1722
|
+
&__btn.q-button {
|
|
1454
1723
|
width: 100%;
|
|
1455
1724
|
margin: 0;
|
|
1456
1725
|
|
|
@@ -1533,7 +1802,7 @@ $q-carousel-height-md: 300px;
|
|
|
1533
1802
|
}
|
|
1534
1803
|
|
|
1535
1804
|
@mixin header-spacing($spacing, $increment) {
|
|
1536
|
-
&--#{$spacing} .q-collapsible__btn {
|
|
1805
|
+
&--#{$spacing} .q-collapsible__btn.q-button {
|
|
1537
1806
|
padding: calc(#{$header-padding} + #{$increment});
|
|
1538
1807
|
}
|
|
1539
1808
|
}
|
|
@@ -1556,7 +1825,7 @@ $q-carousel-height-md: 300px;
|
|
|
1556
1825
|
.q-combobox {
|
|
1557
1826
|
$this: &;
|
|
1558
1827
|
&:not(#{$this}--disabled) {
|
|
1559
|
-
#{$this}__chevron {
|
|
1828
|
+
#{$this}__chevron.q-button {
|
|
1560
1829
|
&:hover,
|
|
1561
1830
|
&:focus {
|
|
1562
1831
|
cursor: pointer;
|
|
@@ -1565,7 +1834,7 @@ $q-carousel-height-md: 300px;
|
|
|
1565
1834
|
}
|
|
1566
1835
|
}
|
|
1567
1836
|
}
|
|
1568
|
-
.q-combobox__chevron {
|
|
1837
|
+
.q-combobox__chevron.q-button {
|
|
1569
1838
|
padding: 0.1rem;
|
|
1570
1839
|
opacity: 0.5;
|
|
1571
1840
|
&:hover {
|
|
@@ -1791,7 +2060,7 @@ $q-carousel-height-md: 300px;
|
|
|
1791
2060
|
gap: 0.5rem;
|
|
1792
2061
|
}
|
|
1793
2062
|
}
|
|
1794
|
-
&__close {
|
|
2063
|
+
&__close.q-button {
|
|
1795
2064
|
position: absolute;
|
|
1796
2065
|
top: 0.5rem;
|
|
1797
2066
|
right: 0.5rem;
|
|
@@ -2324,121 +2593,6 @@ $q-spacing-sides: (
|
|
|
2324
2593
|
@include q-generate-responsive-spacing(margin, m);
|
|
2325
2594
|
@include q-generate-responsive-spacing(padding, p);
|
|
2326
2595
|
@include q-generate-margin-auto;
|
|
2327
|
-
.q-group-box {
|
|
2328
|
-
$this: &;
|
|
2329
|
-
display: inline-block;
|
|
2330
|
-
overflow-wrap: break-word;
|
|
2331
|
-
background-color: var(--q-theme-container);
|
|
2332
|
-
border-width: 1px;
|
|
2333
|
-
border-bottom: $group-border-bottom;
|
|
2334
|
-
padding: 0.5rem 1rem 1rem;
|
|
2335
|
-
border-radius: var(--border-radius);
|
|
2336
|
-
position: relative;
|
|
2337
|
-
max-width: 100%;
|
|
2338
|
-
&:focus-visible {
|
|
2339
|
-
outline: $outline;
|
|
2340
|
-
border-radius: var(--border-radius);
|
|
2341
|
-
}
|
|
2342
|
-
&__title {
|
|
2343
|
-
font-size: 1.2rem;
|
|
2344
|
-
line-height: 1rem;
|
|
2345
|
-
letter-spacing: 0.02rem;
|
|
2346
|
-
color: var(--q-theme-primary);
|
|
2347
|
-
text-transform: $headings-text-transform;
|
|
2348
|
-
margin: 0;
|
|
2349
|
-
margin-top: 0.25rem;
|
|
2350
|
-
display: flex;
|
|
2351
|
-
align-items: flex-start;
|
|
2352
|
-
width: fit-content;
|
|
2353
|
-
gap: 0.25rem;
|
|
2354
|
-
margin-bottom: 0.5rem;
|
|
2355
|
-
}
|
|
2356
|
-
|
|
2357
|
-
&--background {
|
|
2358
|
-
background-color: rgb(var(--q-theme-primary-light-rgb) / 50%);
|
|
2359
|
-
padding: 0.5rem 1rem 1rem;
|
|
2360
|
-
}
|
|
2361
|
-
&--minor {
|
|
2362
|
-
background-color: transparent;
|
|
2363
|
-
border: none;
|
|
2364
|
-
border-radius: 0;
|
|
2365
|
-
padding: 0.5rem 0 0;
|
|
2366
|
-
}
|
|
2367
|
-
&--minor-border-top {
|
|
2368
|
-
background-color: transparent;
|
|
2369
|
-
border: none;
|
|
2370
|
-
border-top: 1px solid var(--q-theme-neutral-light);
|
|
2371
|
-
border-radius: 0;
|
|
2372
|
-
margin-top: 0.5rem;
|
|
2373
|
-
padding: 0.25rem 0;
|
|
2374
|
-
}
|
|
2375
|
-
&--minor,
|
|
2376
|
-
&--minor-border-top {
|
|
2377
|
-
#{$this}__title {
|
|
2378
|
-
font-size: 0.9rem;
|
|
2379
|
-
line-height: 1;
|
|
2380
|
-
letter-spacing: initial;
|
|
2381
|
-
color: var(--q-theme-neutral-dark);
|
|
2382
|
-
text-transform: none;
|
|
2383
|
-
font-weight: 600;
|
|
2384
|
-
margin-bottom: 0.25rem;
|
|
2385
|
-
margin-top: 0.25rem;
|
|
2386
|
-
}
|
|
2387
|
-
}
|
|
2388
|
-
&--title-background {
|
|
2389
|
-
padding: 0 !important;
|
|
2390
|
-
&::before {
|
|
2391
|
-
position: absolute;
|
|
2392
|
-
top: 0;
|
|
2393
|
-
left: 0;
|
|
2394
|
-
height: 30px;
|
|
2395
|
-
width: 100%;
|
|
2396
|
-
content: '';
|
|
2397
|
-
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
2398
|
-
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
|
2399
|
-
}
|
|
2400
|
-
#{$this}__title {
|
|
2401
|
-
padding: 0.5rem 1rem;
|
|
2402
|
-
margin: 0;
|
|
2403
|
-
font-size: 0.9rem;
|
|
2404
|
-
font-weight: 700;
|
|
2405
|
-
line-height: 1;
|
|
2406
|
-
letter-spacing: 0.01rem;
|
|
2407
|
-
color: var(--q-theme-on-background);
|
|
2408
|
-
text-transform: none;
|
|
2409
|
-
z-index: 10;
|
|
2410
|
-
position: relative;
|
|
2411
|
-
}
|
|
2412
|
-
> #{$this}__content {
|
|
2413
|
-
padding: 0.2rem 1rem 1rem;
|
|
2414
|
-
}
|
|
2415
|
-
}
|
|
2416
|
-
&--subsection {
|
|
2417
|
-
border: none;
|
|
2418
|
-
margin-left: 0.625rem;
|
|
2419
|
-
margin-bottom: 0.625rem;
|
|
2420
|
-
#{$this}__title {
|
|
2421
|
-
font-size: 0.9rem;
|
|
2422
|
-
line-height: 1;
|
|
2423
|
-
letter-spacing: initial;
|
|
2424
|
-
background-color: transparent;
|
|
2425
|
-
color: var(--q-theme-neutral-dark);
|
|
2426
|
-
text-transform: none;
|
|
2427
|
-
font-weight: 600;
|
|
2428
|
-
margin-bottom: 0.25rem;
|
|
2429
|
-
}
|
|
2430
|
-
}
|
|
2431
|
-
|
|
2432
|
-
&--borderless {
|
|
2433
|
-
border-color: transparent;
|
|
2434
|
-
margin: 0;
|
|
2435
|
-
padding: 0;
|
|
2436
|
-
background-color: transparent;
|
|
2437
|
-
}
|
|
2438
|
-
&--block {
|
|
2439
|
-
width: 100%;
|
|
2440
|
-
}
|
|
2441
|
-
}
|
|
2442
2596
|
.q-icon {
|
|
2443
2597
|
display: inline-block;
|
|
2444
2598
|
color: var(--q-theme-primary);
|
|
@@ -2609,7 +2763,7 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2609
2763
|
}
|
|
2610
2764
|
}
|
|
2611
2765
|
&:hover,
|
|
2612
|
-
&:focus
|
|
2766
|
+
&:focus,
|
|
2613
2767
|
&--highlighted {
|
|
2614
2768
|
background-color: rgb(var(--q-theme-primary-light-rgb) / 50%);
|
|
2615
2769
|
}
|
|
@@ -2642,9 +2796,14 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2642
2796
|
}
|
|
2643
2797
|
&__check-container {
|
|
2644
2798
|
display: flex;
|
|
2799
|
+
align-items: center;
|
|
2645
2800
|
margin-left: auto;
|
|
2646
2801
|
min-width: 1em;
|
|
2647
|
-
|
|
2802
|
+
min-height: 1.15rem;
|
|
2803
|
+
align-self: center;
|
|
2804
|
+
&--top {
|
|
2805
|
+
align-self: flex-start;
|
|
2806
|
+
}
|
|
2648
2807
|
}
|
|
2649
2808
|
&__description {
|
|
2650
2809
|
display: flex;
|
|
@@ -2703,11 +2862,11 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2703
2862
|
width: 100%;
|
|
2704
2863
|
color: var(--q-theme-neutral);
|
|
2705
2864
|
user-select: none;
|
|
2706
|
-
.q-icon {
|
|
2865
|
+
.q-obfuscation__icon.q-icon {
|
|
2707
2866
|
color: inherit;
|
|
2708
2867
|
}
|
|
2709
2868
|
}
|
|
2710
|
-
&__action {
|
|
2869
|
+
&__action.q-button {
|
|
2711
2870
|
justify-content: flex-start;
|
|
2712
2871
|
margin: 0;
|
|
2713
2872
|
padding: 0;
|
|
@@ -2715,7 +2874,6 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2715
2874
|
width: 100%;
|
|
2716
2875
|
min-height: 1.5em;
|
|
2717
2876
|
line-height: inherit;
|
|
2718
|
-
color: var(--q-theme-primary);
|
|
2719
2877
|
&:hover,
|
|
2720
2878
|
&:focus-visible {
|
|
2721
2879
|
outline-offset: 0;
|
|
@@ -2726,6 +2884,9 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2726
2884
|
&.q-button--labeled {
|
|
2727
2885
|
padding: 0;
|
|
2728
2886
|
}
|
|
2887
|
+
&.q-button--text {
|
|
2888
|
+
color: var(--q-theme-primary);
|
|
2889
|
+
}
|
|
2729
2890
|
}
|
|
2730
2891
|
&__content {
|
|
2731
2892
|
display: flex;
|
|
@@ -2733,15 +2894,18 @@ $q-line-loader-color: var(--q-line-loader-color);
|
|
|
2733
2894
|
gap: $space-base;
|
|
2734
2895
|
min-width: 0;
|
|
2735
2896
|
}
|
|
2736
|
-
&__label-action {
|
|
2737
|
-
|
|
2897
|
+
& &__label-action.q-button {
|
|
2898
|
+
padding: 0;
|
|
2738
2899
|
min-width: auto;
|
|
2739
2900
|
min-height: auto;
|
|
2740
2901
|
&:focus-visible {
|
|
2741
2902
|
outline-offset: 2px;
|
|
2742
2903
|
}
|
|
2904
|
+
&.q-button--text {
|
|
2905
|
+
color: var(--q-theme-primary);
|
|
2906
|
+
}
|
|
2743
2907
|
}
|
|
2744
|
-
&__icon {
|
|
2908
|
+
&__icon.q-icon {
|
|
2745
2909
|
flex-shrink: 0;
|
|
2746
2910
|
}
|
|
2747
2911
|
}
|
|
@@ -2893,6 +3057,103 @@ $arrow-tip-radius: 0.1rem;
|
|
|
2893
3057
|
padding: 0.25rem 0;
|
|
2894
3058
|
}
|
|
2895
3059
|
}
|
|
3060
|
+
.q-phone-field {
|
|
3061
|
+
&__country-select {
|
|
3062
|
+
flex: 0 0 auto;
|
|
3063
|
+
align-self: stretch;
|
|
3064
|
+
width: auto;
|
|
3065
|
+
> .q-field__control {
|
|
3066
|
+
height: 100%;
|
|
3067
|
+
width: max-content;
|
|
3068
|
+
min-width: max-content;
|
|
3069
|
+
padding-block: 0;
|
|
3070
|
+
padding-inline: $space-base $space-base * 2;
|
|
3071
|
+
}
|
|
3072
|
+
.q-field__prepend {
|
|
3073
|
+
padding-inline: 0 $space-base;
|
|
3074
|
+
}
|
|
3075
|
+
.q-field__append {
|
|
3076
|
+
padding-inline: $space-base 0;
|
|
3077
|
+
}
|
|
3078
|
+
}
|
|
3079
|
+
&__input {
|
|
3080
|
+
flex: 1 1 auto;
|
|
3081
|
+
width: 100%;
|
|
3082
|
+
min-width: 0;
|
|
3083
|
+
> .q-field__control {
|
|
3084
|
+
height: 100%;
|
|
3085
|
+
min-width: 0;
|
|
3086
|
+
}
|
|
3087
|
+
.q-text-field__input::placeholder {
|
|
3088
|
+
color: var(--q-theme-neutral-dark);
|
|
3089
|
+
}
|
|
3090
|
+
}
|
|
3091
|
+
&__flag,
|
|
3092
|
+
&__flag-fallback {
|
|
3093
|
+
display: inline-flex;
|
|
3094
|
+
flex: 0 0 auto;
|
|
3095
|
+
align-items: center;
|
|
3096
|
+
justify-content: center;
|
|
3097
|
+
width: 1.5em;
|
|
3098
|
+
aspect-ratio: 3 / 2;
|
|
3099
|
+
overflow: hidden;
|
|
3100
|
+
border-radius: calc(var(--border-radius) / 2);
|
|
3101
|
+
}
|
|
3102
|
+
&__flag {
|
|
3103
|
+
background-position: center;
|
|
3104
|
+
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
3105
|
+
color: transparent;
|
|
3106
|
+
}
|
|
3107
|
+
&__flag-code {
|
|
3108
|
+
|
|
3109
|
+
|
|
3110
|
+
|
|
3111
|
+
|
|
3112
|
+
color: var(--CountryFlagIcon-height, var(--q-theme-neutral-dark));
|
|
3113
|
+
font-size: 0.65em;
|
|
3114
|
+
font-weight: $font-weight-bold;
|
|
3115
|
+
}
|
|
3116
|
+
&__flag-fallback {
|
|
3117
|
+
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
3118
|
+
color: var(--q-theme-neutral-dark);
|
|
3119
|
+
font-size: 0.65em;
|
|
3120
|
+
font-weight: $font-weight-bold;
|
|
3121
|
+
}
|
|
3122
|
+
&__validation-message {
|
|
3123
|
+
color: var(--q-theme-danger);
|
|
3124
|
+
}
|
|
3125
|
+
}
|
|
3126
|
+
.q-phone-field__search {
|
|
3127
|
+
align-self: stretch;
|
|
3128
|
+
width: auto;
|
|
3129
|
+
margin-inline: $space-base;
|
|
3130
|
+
.q-text-field__input::placeholder {
|
|
3131
|
+
color: var(--q-theme-neutral-dark);
|
|
3132
|
+
}
|
|
3133
|
+
& + .q-select__items {
|
|
3134
|
+
--q-phone-field-country-list-max-height: 15rem;
|
|
3135
|
+
width: 100%;
|
|
3136
|
+
min-width: 0;
|
|
3137
|
+
max-height: var(--q-phone-field-country-list-max-height);
|
|
3138
|
+
}
|
|
3139
|
+
}
|
|
3140
|
+
.q-phone-field__country-name {
|
|
3141
|
+
min-width: 0;
|
|
3142
|
+
overflow: hidden;
|
|
3143
|
+
text-overflow: ellipsis;
|
|
3144
|
+
white-space: nowrap;
|
|
3145
|
+
}
|
|
3146
|
+
.q-phone-field__item-code {
|
|
3147
|
+
margin-inline-start: auto;
|
|
3148
|
+
color: var(--q-theme-neutral-dark);
|
|
3149
|
+
white-space: nowrap;
|
|
3150
|
+
}
|
|
3151
|
+
.q-phone-field__empty {
|
|
3152
|
+
width: 100%;
|
|
3153
|
+
color: var(--q-theme-neutral-dark);
|
|
3154
|
+
padding: $space-base * 4 $space-base * 2;
|
|
3155
|
+
text-align: center;
|
|
3156
|
+
}
|
|
2896
3157
|
.q-popover {
|
|
2897
3158
|
&__content {
|
|
2898
3159
|
position: relative;
|
|
@@ -3173,13 +3434,128 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
3173
3434
|
.q-radio-group--focus-style .q-radio-button:focus-within {
|
|
3174
3435
|
outline: $outline;
|
|
3175
3436
|
}
|
|
3437
|
+
.q-section {
|
|
3438
|
+
$this: &;
|
|
3439
|
+
display: inline-block;
|
|
3440
|
+
overflow-wrap: break-word;
|
|
3441
|
+
background-color: var(--q-theme-container);
|
|
3442
|
+
border-width: 1px;
|
|
3443
|
+
border-bottom: $group-border-bottom;
|
|
3444
|
+
padding: 0.5rem 1rem 1rem;
|
|
3445
|
+
border-radius: var(--border-radius);
|
|
3446
|
+
position: relative;
|
|
3447
|
+
max-width: 100%;
|
|
3448
|
+
&:focus-visible {
|
|
3449
|
+
outline: $outline;
|
|
3450
|
+
border-radius: var(--border-radius);
|
|
3451
|
+
}
|
|
3452
|
+
&__title {
|
|
3453
|
+
font-size: 1.2rem;
|
|
3454
|
+
line-height: 1rem;
|
|
3455
|
+
letter-spacing: 0.02rem;
|
|
3456
|
+
color: var(--q-theme-primary);
|
|
3457
|
+
text-transform: $headings-text-transform;
|
|
3458
|
+
margin: 0;
|
|
3459
|
+
margin-top: 0.25rem;
|
|
3460
|
+
display: flex;
|
|
3461
|
+
align-items: flex-start;
|
|
3462
|
+
width: fit-content;
|
|
3463
|
+
gap: 0.25rem;
|
|
3464
|
+
margin-bottom: 0.5rem;
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3467
|
+
&--background {
|
|
3468
|
+
background-color: rgb(var(--q-theme-primary-light-rgb) / 50%);
|
|
3469
|
+
padding: 0.5rem 1rem 1rem;
|
|
3470
|
+
}
|
|
3471
|
+
&--minor {
|
|
3472
|
+
background-color: transparent;
|
|
3473
|
+
border: none;
|
|
3474
|
+
border-radius: 0;
|
|
3475
|
+
padding: 0.5rem 0 0;
|
|
3476
|
+
}
|
|
3477
|
+
&--minor-border-top {
|
|
3478
|
+
background-color: transparent;
|
|
3479
|
+
border: none;
|
|
3480
|
+
border-top: 1px solid var(--q-theme-neutral-light);
|
|
3481
|
+
border-radius: 0;
|
|
3482
|
+
margin-top: 0.5rem;
|
|
3483
|
+
padding: 0.25rem 0;
|
|
3484
|
+
}
|
|
3485
|
+
&--minor,
|
|
3486
|
+
&--minor-border-top {
|
|
3487
|
+
#{$this}__title {
|
|
3488
|
+
font-size: 0.9rem;
|
|
3489
|
+
line-height: 1;
|
|
3490
|
+
letter-spacing: initial;
|
|
3491
|
+
color: var(--q-theme-neutral-dark);
|
|
3492
|
+
text-transform: none;
|
|
3493
|
+
font-weight: 600;
|
|
3494
|
+
margin-bottom: 0.25rem;
|
|
3495
|
+
margin-top: 0.25rem;
|
|
3496
|
+
}
|
|
3497
|
+
}
|
|
3498
|
+
&--title-background {
|
|
3499
|
+
padding: 0 !important;
|
|
3500
|
+
&::before {
|
|
3501
|
+
position: absolute;
|
|
3502
|
+
top: 0;
|
|
3503
|
+
left: 0;
|
|
3504
|
+
height: 30px;
|
|
3505
|
+
width: 100%;
|
|
3506
|
+
content: '';
|
|
3507
|
+
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
3508
|
+
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
|
3509
|
+
}
|
|
3510
|
+
#{$this}__title {
|
|
3511
|
+
padding: 0.5rem 1rem;
|
|
3512
|
+
margin: 0;
|
|
3513
|
+
font-size: 0.9rem;
|
|
3514
|
+
font-weight: 700;
|
|
3515
|
+
line-height: 1;
|
|
3516
|
+
letter-spacing: 0.01rem;
|
|
3517
|
+
color: var(--q-theme-on-background);
|
|
3518
|
+
text-transform: none;
|
|
3519
|
+
z-index: 10;
|
|
3520
|
+
position: relative;
|
|
3521
|
+
}
|
|
3522
|
+
> #{$this}__content {
|
|
3523
|
+
padding: 0.2rem 1rem 1rem;
|
|
3524
|
+
}
|
|
3525
|
+
}
|
|
3526
|
+
&--subsection {
|
|
3527
|
+
border: none;
|
|
3528
|
+
margin-left: 0.625rem;
|
|
3529
|
+
margin-bottom: 0.625rem;
|
|
3530
|
+
#{$this}__title {
|
|
3531
|
+
font-size: 0.9rem;
|
|
3532
|
+
line-height: 1;
|
|
3533
|
+
letter-spacing: initial;
|
|
3534
|
+
background-color: transparent;
|
|
3535
|
+
color: var(--q-theme-neutral-dark);
|
|
3536
|
+
text-transform: none;
|
|
3537
|
+
font-weight: 600;
|
|
3538
|
+
margin-bottom: 0.25rem;
|
|
3539
|
+
}
|
|
3540
|
+
}
|
|
3541
|
+
|
|
3542
|
+
&--borderless {
|
|
3543
|
+
border-color: transparent;
|
|
3544
|
+
margin: 0;
|
|
3545
|
+
padding: 0;
|
|
3546
|
+
background-color: transparent;
|
|
3547
|
+
}
|
|
3548
|
+
&--block {
|
|
3549
|
+
width: 100%;
|
|
3550
|
+
}
|
|
3551
|
+
}
|
|
3176
3552
|
.q-select {
|
|
3177
3553
|
$this: &;
|
|
3178
3554
|
&:not(#{$this}--readonly):not(#{$this}--disabled) {
|
|
3179
3555
|
cursor: pointer;
|
|
3180
3556
|
}
|
|
3181
3557
|
&:not(#{$this}--disabled) {
|
|
3182
|
-
#{$this}__chevron {
|
|
3558
|
+
#{$this}__chevron.q-button {
|
|
3183
3559
|
&:hover,
|
|
3184
3560
|
&:focus {
|
|
3185
3561
|
opacity: 1;
|
|
@@ -3235,7 +3611,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
3235
3611
|
visibility: hidden;
|
|
3236
3612
|
}
|
|
3237
3613
|
}
|
|
3238
|
-
.q-badge__content {
|
|
3614
|
+
.q-badge .q-badge__content {
|
|
3239
3615
|
white-space: nowrap;
|
|
3240
3616
|
}
|
|
3241
3617
|
}
|
|
@@ -3248,7 +3624,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
3248
3624
|
opacity: 0;
|
|
3249
3625
|
cursor: inherit;
|
|
3250
3626
|
}
|
|
3251
|
-
&__chevron {
|
|
3627
|
+
&__chevron.q-button {
|
|
3252
3628
|
padding: 0.1rem;
|
|
3253
3629
|
opacity: 0.5;
|
|
3254
3630
|
&:hover {
|
|
@@ -3265,8 +3641,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
3265
3641
|
outline: none;
|
|
3266
3642
|
.q-list-item {
|
|
3267
3643
|
width: calc(100% - 2 * $space-base);
|
|
3268
|
-
margin-
|
|
3269
|
-
margin-right: $space-base;
|
|
3644
|
+
margin-inline: $space-base;
|
|
3270
3645
|
}
|
|
3271
3646
|
}
|
|
3272
3647
|
&__items {
|
|
@@ -3286,18 +3661,21 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
3286
3661
|
}
|
|
3287
3662
|
|
|
3288
3663
|
.q-field__prepend {
|
|
3289
|
-
padding-
|
|
3290
|
-
padding-right: $space-base * 2;
|
|
3664
|
+
padding-inline: $space-base * 2;
|
|
3291
3665
|
}
|
|
3292
3666
|
}
|
|
3293
3667
|
$sidebar-size-small: 19rem;
|
|
3294
3668
|
$sidebar-size-medium: 27rem;
|
|
3295
3669
|
$sidebar-size-large: 35rem;
|
|
3670
|
+
$sidebar-size-xlarge: 50%;
|
|
3671
|
+
$sidebar-size-block: 100%;
|
|
3296
3672
|
$sidebar-border-color: rgb(var(--q-theme-neutral-rgb) / 25%);
|
|
3297
3673
|
$sidebar-sizes: (
|
|
3298
3674
|
small: $sidebar-size-small,
|
|
3299
3675
|
medium: $sidebar-size-medium,
|
|
3300
|
-
large: $sidebar-size-large
|
|
3676
|
+
large: $sidebar-size-large,
|
|
3677
|
+
xlarge: $sidebar-size-xlarge,
|
|
3678
|
+
block: $sidebar-size-block
|
|
3301
3679
|
);
|
|
3302
3680
|
@mixin sidebar-size-modifiers($prefix, $property) {
|
|
3303
3681
|
@each $size, $value in $sidebar-sizes {
|
|
@@ -3314,10 +3692,20 @@ $sidebar-sizes: (
|
|
|
3314
3692
|
flex-direction: row;
|
|
3315
3693
|
width: min-content;
|
|
3316
3694
|
}
|
|
3317
|
-
.q-sidebar--expanded {
|
|
3695
|
+
.q-sidebar--expanded:not(.q-sidebar--xlarge, .q-sidebar--block) {
|
|
3318
3696
|
min-width: $sidebar-size-small;
|
|
3319
3697
|
max-width: $sidebar-size-large;
|
|
3320
3698
|
}
|
|
3699
|
+
.q-sidebar__panels {
|
|
3700
|
+
position: relative;
|
|
3701
|
+
flex: 1 1 auto;
|
|
3702
|
+
min-width: 0;
|
|
3703
|
+
overflow: hidden;
|
|
3704
|
+
> .q-sidebar-panel {
|
|
3705
|
+
width: 100%;
|
|
3706
|
+
height: 100%;
|
|
3707
|
+
}
|
|
3708
|
+
}
|
|
3321
3709
|
.q-sidebar-anchor {
|
|
3322
3710
|
display: flex;
|
|
3323
3711
|
flex-direction: column;
|
|
@@ -3330,7 +3718,7 @@ $sidebar-sizes: (
|
|
|
3330
3718
|
flex-direction: column;
|
|
3331
3719
|
position: relative;
|
|
3332
3720
|
}
|
|
3333
|
-
.q-sidebar__item {
|
|
3721
|
+
.q-sidebar__item.q-button {
|
|
3334
3722
|
width: 100%;
|
|
3335
3723
|
height: 100%;
|
|
3336
3724
|
aspect-ratio: 1;
|
|
@@ -3367,7 +3755,13 @@ $sidebar-sizes: (
|
|
|
3367
3755
|
display: flex;
|
|
3368
3756
|
align-items: center;
|
|
3369
3757
|
gap: 0.5rem;
|
|
3370
|
-
|
|
3758
|
+
margin: 1rem;
|
|
3759
|
+
}
|
|
3760
|
+
.q-sidebar-panel__header {
|
|
3761
|
+
margin-bottom: 0;
|
|
3762
|
+
}
|
|
3763
|
+
.q-sidebar-panel__footer {
|
|
3764
|
+
margin-top: 0;
|
|
3371
3765
|
}
|
|
3372
3766
|
.q-sidebar-panel__title {
|
|
3373
3767
|
margin: 0;
|
|
@@ -3375,6 +3769,7 @@ $sidebar-sizes: (
|
|
|
3375
3769
|
.q-sidebar-panel__content {
|
|
3376
3770
|
flex: 1 1 0%;
|
|
3377
3771
|
overflow: auto;
|
|
3772
|
+
margin: 1rem;
|
|
3378
3773
|
}
|
|
3379
3774
|
.q-sidebar-panel__handle {
|
|
3380
3775
|
position: absolute;
|
|
@@ -3697,10 +4092,13 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3697
4092
|
&--horizontal {
|
|
3698
4093
|
flex-direction: column;
|
|
3699
4094
|
.q-tabs__list {
|
|
3700
|
-
flex-direction: row;
|
|
3701
4095
|
width: 100%;
|
|
3702
4096
|
border-bottom: 1px solid $border;
|
|
3703
4097
|
}
|
|
4098
|
+
.q-tabs__tablist {
|
|
4099
|
+
flex-direction: row;
|
|
4100
|
+
width: 100%;
|
|
4101
|
+
}
|
|
3704
4102
|
.q-tab {
|
|
3705
4103
|
margin-bottom: -1px;
|
|
3706
4104
|
}
|
|
@@ -3719,11 +4117,13 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3719
4117
|
align-items: stretch;
|
|
3720
4118
|
.q-tabs__list {
|
|
3721
4119
|
flex: 0 0 auto;
|
|
3722
|
-
flex-direction: column;
|
|
3723
4120
|
width: max-content;
|
|
3724
4121
|
max-width: 100%;
|
|
3725
4122
|
border-inline-end: 1px solid $border;
|
|
3726
4123
|
}
|
|
4124
|
+
.q-tabs__tablist {
|
|
4125
|
+
flex-direction: column;
|
|
4126
|
+
}
|
|
3727
4127
|
.q-tab {
|
|
3728
4128
|
justify-content: flex-start;
|
|
3729
4129
|
margin-inline-end: -1px;
|
|
@@ -3741,7 +4141,28 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3741
4141
|
}
|
|
3742
4142
|
}
|
|
3743
4143
|
|
|
4144
|
+
|
|
3744
4145
|
&--line {
|
|
4146
|
+
.q-tabs__indicator {
|
|
4147
|
+
position: absolute;
|
|
4148
|
+
background-color: $primary;
|
|
4149
|
+
opacity: 0;
|
|
4150
|
+
pointer-events: none;
|
|
4151
|
+
z-index: 1;
|
|
4152
|
+
}
|
|
4153
|
+
&.q-tabs--indicator-ready .q-tabs__indicator {
|
|
4154
|
+
transition:
|
|
4155
|
+
transform 0.3s ease-in-out,
|
|
4156
|
+
width 0.3s ease-in-out,
|
|
4157
|
+
height 0.3s ease-in-out,
|
|
4158
|
+
opacity 0.2s ease-in-out;
|
|
4159
|
+
}
|
|
4160
|
+
&.q-tabs--horizontal .q-tabs__indicator {
|
|
4161
|
+
|
|
4162
|
+
|
|
4163
|
+
bottom: -1px;
|
|
4164
|
+
left: 0;
|
|
4165
|
+
}
|
|
3745
4166
|
&.q-tabs--horizontal .q-tab {
|
|
3746
4167
|
border-bottom: 4px solid transparent;
|
|
3747
4168
|
border-end-start-radius: 0;
|
|
@@ -3755,6 +4176,14 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3755
4176
|
}
|
|
3756
4177
|
}
|
|
3757
4178
|
}
|
|
4179
|
+
&.q-tabs--indicator-ready.q-tabs--horizontal .q-tab--active {
|
|
4180
|
+
border-bottom-color: transparent;
|
|
4181
|
+
}
|
|
4182
|
+
&.q-tabs--vertical .q-tabs__indicator {
|
|
4183
|
+
|
|
4184
|
+
top: 0;
|
|
4185
|
+
inset-inline-end: -1px;
|
|
4186
|
+
}
|
|
3758
4187
|
&.q-tabs--vertical .q-tab {
|
|
3759
4188
|
border-inline-end: 4px solid transparent;
|
|
3760
4189
|
border-start-end-radius: 0;
|
|
@@ -3768,10 +4197,13 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3768
4197
|
}
|
|
3769
4198
|
}
|
|
3770
4199
|
}
|
|
4200
|
+
&.q-tabs--indicator-ready.q-tabs--vertical .q-tab--active {
|
|
4201
|
+
border-inline-end-color: transparent;
|
|
4202
|
+
}
|
|
3771
4203
|
}
|
|
3772
4204
|
|
|
3773
4205
|
&--card {
|
|
3774
|
-
.q-
|
|
4206
|
+
.q-tabs__tablist {
|
|
3775
4207
|
gap: 0;
|
|
3776
4208
|
}
|
|
3777
4209
|
.q-tab {
|
|
@@ -3817,22 +4249,25 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3817
4249
|
}
|
|
3818
4250
|
}
|
|
3819
4251
|
}
|
|
3820
|
-
&--align-start .q-
|
|
4252
|
+
&--align-start .q-tabs__tablist {
|
|
3821
4253
|
justify-content: flex-start;
|
|
3822
4254
|
}
|
|
3823
|
-
&--align-end .q-
|
|
4255
|
+
&--align-end .q-tabs__tablist {
|
|
3824
4256
|
justify-content: flex-end;
|
|
3825
4257
|
}
|
|
3826
|
-
&--align-center .q-
|
|
4258
|
+
&--align-center .q-tabs__tablist {
|
|
3827
4259
|
justify-content: center;
|
|
3828
4260
|
}
|
|
3829
|
-
&--align-justify .q-
|
|
4261
|
+
&--align-justify .q-tabs__tablist {
|
|
3830
4262
|
justify-content: space-between;
|
|
3831
4263
|
.q-tab {
|
|
3832
4264
|
flex: 1;
|
|
3833
4265
|
}
|
|
3834
4266
|
}
|
|
3835
4267
|
&__list {
|
|
4268
|
+
position: relative;
|
|
4269
|
+
}
|
|
4270
|
+
&__tablist {
|
|
3836
4271
|
display: flex;
|
|
3837
4272
|
gap: $space-base;
|
|
3838
4273
|
}
|
|
@@ -3852,10 +4287,10 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3852
4287
|
background: transparent;
|
|
3853
4288
|
border: 0;
|
|
3854
4289
|
padding: 0.5rem 0.75rem;
|
|
3855
|
-
&.q-button {
|
|
4290
|
+
&.q-button.q-button--text {
|
|
3856
4291
|
color: $on-background;
|
|
3857
4292
|
}
|
|
3858
|
-
&--active.q-button {
|
|
4293
|
+
&--active.q-button.q-button--text {
|
|
3859
4294
|
color: $primary;
|
|
3860
4295
|
cursor: default;
|
|
3861
4296
|
&:hover:not(:disabled) {
|
|
@@ -3878,6 +4313,11 @@ $spinner-color: var(--q-theme-primary);
|
|
|
3878
4313
|
}
|
|
3879
4314
|
}
|
|
3880
4315
|
}
|
|
4316
|
+
@media (prefers-reduced-motion: reduce) {
|
|
4317
|
+
.q-tabs--line.q-tabs--indicator-ready .q-tabs__indicator {
|
|
4318
|
+
transition: opacity 0.2s ease-in-out;
|
|
4319
|
+
}
|
|
4320
|
+
}
|
|
3881
4321
|
.q-text-area {
|
|
3882
4322
|
|
|
3883
4323
|
display: flex;
|
|
@@ -4110,7 +4550,7 @@ $q-toast-slide-distance: clamp(1rem, 3vw, 1.5rem) !default;
|
|
|
4110
4550
|
will-change: auto;
|
|
4111
4551
|
}
|
|
4112
4552
|
.q-toggle {
|
|
4113
|
-
|
|
4553
|
+
&.q-button.q-toggle--active {
|
|
4114
4554
|
z-index: 2;
|
|
4115
4555
|
color: var(--q-theme-primary-dark);
|
|
4116
4556
|
background-color: rgb(var(--q-theme-primary-light-rgb) / 50%);
|