qc-trousse-sdg 1.2.5 → 1.3.0-develop.1
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/README.md +18 -23
- package/dist/css/qc-sdg-design-tokens.min.css +1 -1
- package/dist/css/qc-sdg-no-grid.min.css +1 -1
- package/dist/css/qc-sdg.min.css +1 -1
- package/dist/img/QUEBEC_couleur.svg +24 -0
- package/dist/js/qc-sdg.min.js +1 -1
- package/package.json +23 -18
- package/public/css/qc-doc-sdg.css +247 -335
- package/public/css/qc-sdg-design-tokens.css +111 -64
- package/public/css/qc-sdg-no-grid.css +957 -453
- package/public/css/qc-sdg.css +966 -634
- package/public/img/QUEBEC_couleur.svg +24 -0
- package/public/img/ampoule.svg +1 -0
- package/public/img/arrow-up-white.svg +3 -0
- package/public/img/chevron-blue.svg +3 -0
- package/public/img/chevron-white.svg +3 -0
- package/public/img/clipboard.svg +8 -0
- package/public/img/error-white.svg +1 -0
- package/public/img/error.svg +1 -0
- package/public/img/exclamation-white.svg +37 -0
- package/public/img/external-link-white.svg +18 -0
- package/public/img/facebook.svg +6 -0
- package/public/img/information-white.svg +1 -0
- package/public/img/information.svg +1 -0
- package/public/img/linkedin.svg +5 -0
- package/public/img/loupe-piv-droite.svg +1 -0
- package/public/img/loupe-piv-fonce.svg +1 -0
- package/public/img/minus.svg +6 -0
- package/public/img/note.svg +1 -0
- package/public/img/piv-MCE-theme-clair.svg +79 -0
- package/public/img/piv-MCE-theme-sombre.svg +62 -0
- package/public/img/piv-bas-MCE-theme-clair.png +0 -0
- package/public/img/piv-bas-MCE-theme-sombre.png +0 -0
- package/public/img/piv-logo-pied-de-page.svg +37 -0
- package/public/img/plus.svg +6 -0
- package/public/img/question-mark.svg +47 -0
- package/public/img/success-white.svg +1 -0
- package/public/img/success.svg +1 -0
- package/public/img/twitter.svg +8 -0
- package/public/img/warning.svg +1 -0
- package/public/img/xclose-blue.svg +6 -0
- package/public/img/xclose-white.svg +1 -0
- package/public/img/youtube.svg +3 -0
- package/public/index.html +871 -715
- package/public/js/qc-doc-exemple.js +9 -0
- package/public/js/qc-doc-sdg.js +6893 -3724
- package/public/js/qc-sdg.js +2103 -962
- package/rollup.config.js +58 -32
- package/src/doc/components/Code.svelte +69 -0
- package/src/doc/components/Exemple.svelte +71 -0
- package/src/doc/components/Switch.svelte +108 -0
- package/src/doc/components/TopNav.svelte +53 -0
- package/src/doc/components/color-doc.svelte +44 -0
- package/src/doc/qc-doc-sdg.js +25 -14
- package/src/doc/scss/_tables.scss +1 -2
- package/src/doc/scss/components/_button.scss +14 -14
- package/src/doc/scss/components/_code.scss +106 -4
- package/src/doc/scss/jQueryUI/_jquery-ui.autocomplete.scss +48 -0
- package/src/doc/scss/qc-doc-sdg.scss +76 -75
- package/src/sdg/components/Button/IconButton.svelte +29 -0
- package/src/sdg/components/Icon.svelte +39 -0
- package/src/sdg/components/{pivHeader.svelte → PivHeader/pivHeader.svelte} +49 -69
- package/src/sdg/components/SearchBar/searchBar.svelte +87 -0
- package/src/sdg/components/SearchInput/SearchInput.svelte +48 -0
- package/src/sdg/components/alert.svelte +40 -23
- package/src/sdg/components/componentWrapper.js +0 -3
- package/src/sdg/components/externalLink.svelte +92 -0
- package/src/sdg/components/notice.svelte +61 -34
- package/src/sdg/components/pivFooter.svelte +37 -36
- package/src/sdg/components/toTop.svelte +17 -11
- package/src/sdg/components/utils.js +28 -4
- package/src/sdg/qc-sdg.js +11 -3
- package/src/sdg/scss/_qc-sdg-lib.scss +3 -0
- package/src/sdg/scss/base/_accessibility.scss +4 -0
- package/src/sdg/scss/base/_colors.scss +10 -10
- package/src/sdg/scss/base/_figure.scss +14 -9
- package/src/sdg/scss/base/_fonts.scss +4 -4
- package/src/sdg/scss/base/_form.scss +7 -0
- package/src/sdg/scss/base/_layout.scss +45 -0
- package/src/sdg/scss/base/_lists.scss +5 -5
- package/src/sdg/scss/base/_shadings.scss +3 -11
- package/src/sdg/scss/base/_typography.scss +42 -25
- package/src/sdg/scss/components/_alert.scss +11 -34
- package/src/sdg/scss/components/_icons.scss +80 -57
- package/src/sdg/scss/components/_notice.scss +51 -44
- package/src/sdg/scss/components/_pivFooter.scss +35 -23
- package/src/sdg/scss/components/_pivHeader.scss +131 -154
- package/src/sdg/scss/components/_searchBar.scss +75 -0
- package/src/sdg/scss/components/_searchInput.scss +64 -0
- package/src/sdg/scss/components/_separator.scss +2 -5
- package/src/sdg/scss/components/_toTop.scss +4 -6
- package/src/sdg/scss/grid/_grid-lib.scss +516 -0
- package/src/sdg/scss/grid/_grid.scss +78 -0
- package/src/sdg/scss/lib/_functions.scss +78 -0
- package/src/sdg/scss/lib/_gridless-lib.scss +4 -0
- package/src/sdg/scss/lib/_mixins.scss +221 -0
- package/src/sdg/scss/qc-design-tokens.scss +31 -8
- package/src/sdg/scss/qc-sdg-utilities.scss +1 -0
- package/src/sdg/scss/qc-sdg.scss +1 -1
- package/src/sdg/scss/qc-sgd-no-grid.scss +20 -15
- package/src/sdg/scss/settings/_base.scss +58 -0
- package/src/sdg/scss/settings/_tokens.scss +145 -77
- package/src/sdg/scss/utilities/_display.scss +43 -3
- package/src/sdg/scss/utilities/_themes.scss +17 -0
- package/src/sdg/scss/vendor/modern-css-reset/src/reset.css +9 -8
- package/src/doc/components/code.svelte +0 -54
- package/src/sdg/scss/base/_grid.scss +0 -9
- package/src/sdg/scss/functions/_tokens.scss +0 -12
- package/src/sdg/scss/functions/_utils.scss +0 -44
- package/src/sdg/scss/modules/_grid.scss +0 -19
- package/src/sdg/scss/modules/_map.scss +0 -14
- package/src/sdg/scss/modules/_tokens.scss +0 -3
- package/src/sdg/scss/modules/_utils.scss +0 -55
- package/src/sdg/scss/settings/_grid.scss +0 -24
- package/src/sdg/scss/settings/_settings.scss +0 -12
- package/src/sdg/sprites/dist/view/svg/sprite.view.svg +0 -1
- package/src/sdg/sprites/gulpfile.js +0 -41
- package/src/sdg/sprites/package-lock.json +0 -5949
- package/src/sdg/sprites/package.json +0 -16
- package/src/sdg/sprites/svg/QUEBEC_blanc.svg +0 -13
- package/src/sdg/sprites/svg/external-link.svg +0 -10
- package/src/sdg/sprites/svg/logo-quebec-piv-footer.svg +0 -1
- /package/dist/img/{quebec-logo.svg → QUEBEC_blanc.svg} +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/arrow-up-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/chevron-blue.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/chevron-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/clipboard.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/error-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/error.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/exclamation-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/external-link-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/facebook.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/information-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/information.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/linkedin.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/loupe-piv-droite.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/loupe-piv-fonce.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/minus.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/plus.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/question-mark.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/success-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/success.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/twitter.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/warning.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/xclose-blue.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/xclose-white.svg +0 -0
- /package/{src/sdg/sprites/svg → dist/img}/youtube.svg +0 -0
- /package/{src/sdg/sprites/svg/quebec-logo.svg → public/img/QUEBEC_blanc.svg} +0 -0
|
@@ -1,144 +1,3 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
|
-
/*
|
|
3
|
-
Return rem size from pixel size according to root font-size as define in settings
|
|
4
|
-
Always use this function for rem values
|
|
5
|
-
// root font-size : 100 %,
|
|
6
|
-
// foo.scss
|
|
7
|
-
.foo { font-size: rem(16); }
|
|
8
|
-
// foo.css
|
|
9
|
-
.foo { font-size: 1rem; }
|
|
10
|
-
|
|
11
|
-
// root font-size : 62.5 %,
|
|
12
|
-
// foo.scss
|
|
13
|
-
.foo { font-size: rem(16); }
|
|
14
|
-
// foo.css
|
|
15
|
-
.foo { font-size: 1.6rem; }
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
Return rem size from pixel size according to root font-size as define in settings
|
|
19
|
-
Always use this function for rem values
|
|
20
|
-
// root font-size : 100 %,
|
|
21
|
-
// foo.scss
|
|
22
|
-
.foo { font-size: rem(16); }
|
|
23
|
-
// foo.css
|
|
24
|
-
.foo { font-size: 1rem; }
|
|
25
|
-
|
|
26
|
-
// root font-size : 62.5 %,
|
|
27
|
-
// foo.scss
|
|
28
|
-
.foo { font-size: rem(16); }
|
|
29
|
-
// foo.css
|
|
30
|
-
.foo { font-size: 1.6rem; }
|
|
31
|
-
*/
|
|
32
|
-
/* TODO voir si meilleure façon d'intégrer en scss... */
|
|
33
|
-
.qc-icon {
|
|
34
|
-
display: inline-block;
|
|
35
|
-
content: "";
|
|
36
|
-
background-repeat: no-repeat;
|
|
37
|
-
background-position: center;
|
|
38
|
-
background-size: 100% auto;
|
|
39
|
-
min-width: 32px;
|
|
40
|
-
height: 32px;
|
|
41
|
-
}
|
|
42
|
-
.qc-icon.qc-icon-sm {
|
|
43
|
-
min-width: 12px;
|
|
44
|
-
height: 12px;
|
|
45
|
-
}
|
|
46
|
-
.qc-icon.qc-icon-md {
|
|
47
|
-
min-width: 20px;
|
|
48
|
-
height: 20px;
|
|
49
|
-
}
|
|
50
|
-
.qc-icon.qc-icon-lg {
|
|
51
|
-
min-width: 40px;
|
|
52
|
-
height: 40px;
|
|
53
|
-
}
|
|
54
|
-
.qc-icon.qc-external-link {
|
|
55
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#external-link);
|
|
56
|
-
}
|
|
57
|
-
.qc-icon.qc-warning {
|
|
58
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#warning);
|
|
59
|
-
}
|
|
60
|
-
.qc-icon.qc-arrow-up-white {
|
|
61
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#arrow-up-white);
|
|
62
|
-
}
|
|
63
|
-
.qc-icon.qc-clipboard {
|
|
64
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#clipboard);
|
|
65
|
-
}
|
|
66
|
-
.qc-icon.qc-error {
|
|
67
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#error);
|
|
68
|
-
}
|
|
69
|
-
.qc-icon.qc-error-white {
|
|
70
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#error-white);
|
|
71
|
-
}
|
|
72
|
-
.qc-icon.qc-information {
|
|
73
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#information);
|
|
74
|
-
}
|
|
75
|
-
.qc-icon.qc-information-white {
|
|
76
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#information-white);
|
|
77
|
-
}
|
|
78
|
-
.qc-icon.qc-minus {
|
|
79
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#minus);
|
|
80
|
-
}
|
|
81
|
-
.qc-icon.qc-plus {
|
|
82
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#plus);
|
|
83
|
-
}
|
|
84
|
-
.qc-icon.qc-question-mark {
|
|
85
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#question-mark);
|
|
86
|
-
}
|
|
87
|
-
.qc-icon.qc-success {
|
|
88
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#success);
|
|
89
|
-
}
|
|
90
|
-
.qc-icon.qc-success-white {
|
|
91
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#success-white);
|
|
92
|
-
}
|
|
93
|
-
.qc-icon.qc-xclose-white {
|
|
94
|
-
width: 16px;
|
|
95
|
-
height: 16px;
|
|
96
|
-
min-width: 16px;
|
|
97
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#xclose-white);
|
|
98
|
-
}
|
|
99
|
-
.qc-icon.qc-xclose-blue {
|
|
100
|
-
width: 16px;
|
|
101
|
-
height: 16px;
|
|
102
|
-
min-width: 16px;
|
|
103
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#xclose-blue);
|
|
104
|
-
}
|
|
105
|
-
.qc-icon.qc-chevron-blue, .qc-icon.qc-chevron-white {
|
|
106
|
-
width: 16px;
|
|
107
|
-
min-width: 16px;
|
|
108
|
-
height: 10px;
|
|
109
|
-
}
|
|
110
|
-
.qc-icon.qc-chevron-blue {
|
|
111
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#chevron-blue);
|
|
112
|
-
}
|
|
113
|
-
.qc-icon.qc-chevron-white {
|
|
114
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#chevron-white);
|
|
115
|
-
}
|
|
116
|
-
.qc-icon.qc-facebook {
|
|
117
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#facebook);
|
|
118
|
-
}
|
|
119
|
-
.qc-icon.qc-linkedin {
|
|
120
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#linkedin);
|
|
121
|
-
height: 30px;
|
|
122
|
-
}
|
|
123
|
-
.qc-icon.qc-twitter {
|
|
124
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#twitter);
|
|
125
|
-
}
|
|
126
|
-
.qc-icon.qc-youtube {
|
|
127
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#youtube);
|
|
128
|
-
}
|
|
129
|
-
.qc-icon.qc-warning-alert-icon {
|
|
130
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#warning);
|
|
131
|
-
}
|
|
132
|
-
.qc-icon.qc-general-alert-icon {
|
|
133
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#information);
|
|
134
|
-
}
|
|
135
|
-
.qc-icon.qc-search {
|
|
136
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-droite);
|
|
137
|
-
}
|
|
138
|
-
.qc-icon.qc-search-submit {
|
|
139
|
-
background-image: url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-fonce);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
1
|
qc-code {
|
|
143
2
|
display: block;
|
|
144
3
|
max-inline-size: var(--qc-max-content-width);
|
|
@@ -198,24 +57,138 @@ pre code button.copied .copied, pre .qc-code button.copied .copied {
|
|
|
198
57
|
margin-top: var(--qc-spacer-lg);
|
|
199
58
|
}
|
|
200
59
|
|
|
60
|
+
pre code.hljs {
|
|
61
|
+
display: block;
|
|
62
|
+
overflow-x: auto;
|
|
63
|
+
padding: 1em;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
code.hljs {
|
|
67
|
+
padding: 0.4rem;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
pre code.hljs {
|
|
71
|
+
display: block;
|
|
72
|
+
overflow-x: auto;
|
|
73
|
+
padding: 1.6rem;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
code.hljs {
|
|
77
|
+
padding: 0.4rem;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/* end baseline CSS */
|
|
81
|
+
.hljs {
|
|
82
|
+
background: var(--qc-color-grey-pale);
|
|
83
|
+
color: var(--qc-color-blue-dark);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* Base color: saturation 0; */
|
|
87
|
+
.hljs-subst {
|
|
88
|
+
/* default */
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* purposely ignored */
|
|
92
|
+
.hljs-comment {
|
|
93
|
+
color: var(--qc-color-grey-dark);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.hljs-tag,
|
|
97
|
+
.hljs-punctuation {
|
|
98
|
+
color: var(--qc-color-blue-medium);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.hljs-tag .hljs-name,
|
|
102
|
+
.hljs-tag .hljs-attr {
|
|
103
|
+
color: var(--qc-color-blue-dark);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.hljs-keyword,
|
|
107
|
+
.hljs-attribute,
|
|
108
|
+
.hljs-selector-tag,
|
|
109
|
+
.hljs-meta .hljs-keyword,
|
|
110
|
+
.hljs-doctag,
|
|
111
|
+
.hljs-name {
|
|
112
|
+
font-weight: bold;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* User color: hue: 0 */
|
|
116
|
+
.hljs-type,
|
|
117
|
+
.hljs-string,
|
|
118
|
+
.hljs-number,
|
|
119
|
+
.hljs-selector-id,
|
|
120
|
+
.hljs-selector-class,
|
|
121
|
+
.hljs-quote,
|
|
122
|
+
.hljs-template-tag,
|
|
123
|
+
.hljs-deletion {
|
|
124
|
+
color: var(--qc-color-red-dark);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.hljs-title,
|
|
128
|
+
.hljs-section {
|
|
129
|
+
color: var(--qc-color-red-dark);
|
|
130
|
+
font-weight: bold;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.hljs-regexp,
|
|
134
|
+
.hljs-symbol,
|
|
135
|
+
.hljs-variable,
|
|
136
|
+
.hljs-template-variable,
|
|
137
|
+
.hljs-link,
|
|
138
|
+
.hljs-selector-attr,
|
|
139
|
+
.hljs-operator,
|
|
140
|
+
.hljs-selector-pseudo {
|
|
141
|
+
color: var(--qc-color-pink-regular);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Language color: hue: 90; */
|
|
145
|
+
.hljs-literal {
|
|
146
|
+
color: var(--qc-color-green-regular);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.hljs-built_in,
|
|
150
|
+
.hljs-bullet,
|
|
151
|
+
.hljs-code,
|
|
152
|
+
.hljs-addition {
|
|
153
|
+
color: var(--qc-color-green-dark);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* Meta color: hue: 200 */
|
|
157
|
+
.hljs-meta {
|
|
158
|
+
color: var(--qc-color-blue-medium);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.hljs-meta .hljs-string {
|
|
162
|
+
color: var(--qc-color-blue-regular);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* Misc effects */
|
|
166
|
+
.hljs-emphasis {
|
|
167
|
+
font-style: italic;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.hljs-strong {
|
|
171
|
+
font-weight: bold;
|
|
172
|
+
}
|
|
173
|
+
|
|
201
174
|
.qc-shading-0 {
|
|
202
|
-
|
|
175
|
+
border: 1px solid var(--qc-box_shadow-0-color);
|
|
203
176
|
}
|
|
204
177
|
|
|
205
|
-
.qc-shading-1
|
|
206
|
-
box-shadow: 0
|
|
178
|
+
.qc-shading-1 {
|
|
179
|
+
box-shadow: 0 var(--qc-box_shadow-1-offset) var(--qc-box_shadow-1-blur) var(--qc-color-box_shadow);
|
|
207
180
|
}
|
|
208
181
|
|
|
209
182
|
.qc-shading-2 {
|
|
210
|
-
box-shadow: 0
|
|
183
|
+
box-shadow: 0 var(--qc-box_shadow-2-offset) var(--qc-box_shadow-2-blur) var(--qc-color-box_shadow);
|
|
211
184
|
}
|
|
212
185
|
|
|
213
186
|
.qc-shading-3 {
|
|
214
|
-
box-shadow: 0
|
|
187
|
+
box-shadow: 0 var(--qc-box_shadow-3-offset) var(--qc-box_shadow-3-blur) var(--qc-color-box_shadow);
|
|
215
188
|
}
|
|
216
189
|
|
|
217
190
|
.qc-shading-4 {
|
|
218
|
-
box-shadow: 0
|
|
191
|
+
box-shadow: 0 var(--qc-box_shadow-4-offset) var(--qc-box_shadow-4-blur) var(--qc-color-box_shadow);
|
|
219
192
|
}
|
|
220
193
|
|
|
221
194
|
.btn {
|
|
@@ -223,6 +196,7 @@ pre code button.copied .copied, pre .qc-code button.copied .copied {
|
|
|
223
196
|
font-size: var(--qc-font-size-md);
|
|
224
197
|
line-height: var(--qc-line-height-md);
|
|
225
198
|
font-weight: var(--qc-font-weight-regular);
|
|
199
|
+
font-family: var(--qc-font-family-content);
|
|
226
200
|
display: inline-block;
|
|
227
201
|
box-sizing: border-box;
|
|
228
202
|
min-width: 11.2rem;
|
|
@@ -241,22 +215,24 @@ pre code button.copied .copied, pre .qc-code button.copied .copied {
|
|
|
241
215
|
border: 1px solid transparent;
|
|
242
216
|
}
|
|
243
217
|
.btn.btn-primary {
|
|
244
|
-
color:
|
|
218
|
+
color: var(--qc-color-background);
|
|
245
219
|
border-color: var(--qc-color-blue-piv);
|
|
246
220
|
background-color: var(--qc-color-blue-piv);
|
|
221
|
+
box-shadow: 0 var(--qc-box_shadow-1-offset) var(--qc-box_shadow-1-blur) var(--qc-color-box_shadow);
|
|
247
222
|
}
|
|
248
223
|
.btn.btn-primary:hover {
|
|
249
|
-
border-color:
|
|
250
|
-
background-color:
|
|
224
|
+
border-color: var(--qc-color-blue-regular);
|
|
225
|
+
background-color: var(--qc-color-blue-regular);
|
|
251
226
|
}
|
|
252
|
-
.btn.btn-primary:focus {
|
|
253
|
-
border-color: var(--qc-color-blue-
|
|
254
|
-
background-color:
|
|
227
|
+
.btn.btn-primary:focus, .btn.btn-primary:focus-visible {
|
|
228
|
+
border-color: var(--qc-color-blue-regular);
|
|
229
|
+
background-color: var(--qc-color-blue-regular);
|
|
255
230
|
box-shadow: 0 2px 8px rgba(34, 54, 84, 0.24), 0 0 0 2px var(--qc-color-blue-light);
|
|
231
|
+
outline: none;
|
|
256
232
|
}
|
|
257
233
|
.btn.btn-primary:active {
|
|
258
|
-
border-color:
|
|
259
|
-
background-color:
|
|
234
|
+
border-color: var(--qc-color-blue-regular_light);
|
|
235
|
+
background-color: var(--qc-color-blue-regular_light);
|
|
260
236
|
}
|
|
261
237
|
|
|
262
238
|
table.qc-table {
|
|
@@ -292,27 +268,71 @@ table.qc-table.qc-bordered tbody th, table.qc-table.qc-bordered tbody td {
|
|
|
292
268
|
border-bottom: 1px solid var(--qc-color-grey-light);
|
|
293
269
|
}
|
|
294
270
|
|
|
295
|
-
|
|
296
|
-
|
|
271
|
+
.ui-autocomplete {
|
|
272
|
+
max-height: calc(16rem + 2px) !important;
|
|
273
|
+
overflow-y: auto !important;
|
|
274
|
+
list-style-type: none !important;
|
|
275
|
+
padding-left: 0 !important;
|
|
276
|
+
margin: 0 !important;
|
|
277
|
+
border: 1px solid var(--qc-color-grey-medium);
|
|
278
|
+
background-color: var(--qc-color-background);
|
|
279
|
+
box-shadow: 0 var(--qc-box_shadow-4-offset) var(--qc-box_shadow-4-blur) var(--qc-color-box_shadow);
|
|
280
|
+
cursor: pointer;
|
|
297
281
|
}
|
|
298
282
|
|
|
299
|
-
.
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
align-items: center;
|
|
283
|
+
.ui-menu-item {
|
|
284
|
+
padding: 0 !important;
|
|
285
|
+
margin: 0 !important;
|
|
303
286
|
}
|
|
304
|
-
|
|
305
|
-
|
|
287
|
+
|
|
288
|
+
.ui-menu-item-wrapper {
|
|
289
|
+
padding: 0.8rem;
|
|
306
290
|
}
|
|
307
|
-
|
|
308
|
-
|
|
291
|
+
|
|
292
|
+
.ui-state-active {
|
|
293
|
+
background-color: var(--qc-color-blue-pale);
|
|
309
294
|
}
|
|
310
295
|
|
|
311
|
-
.
|
|
312
|
-
width:
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
296
|
+
.ui-autocomplete::-webkit-scrollbar {
|
|
297
|
+
width: 8px;
|
|
298
|
+
margin-left: 5px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/* Track */
|
|
302
|
+
.ui-autocomplete::-webkit-scrollbar-track {
|
|
303
|
+
background: var(--qc-color-background);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/* Handle */
|
|
307
|
+
.ui-autocomplete::-webkit-scrollbar-thumb {
|
|
308
|
+
background: var(--qc-color-blue-piv);
|
|
309
|
+
border-radius: 15px;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/* Handle on hover */
|
|
313
|
+
.ui-autocomplete::-webkit-scrollbar-thumb:hover {
|
|
314
|
+
background: var(--qc-color-blue-piv);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.ui-helper-hidden-accessible {
|
|
318
|
+
position: absolute;
|
|
319
|
+
width: 1px;
|
|
320
|
+
height: 1px;
|
|
321
|
+
padding: 0;
|
|
322
|
+
margin: -1px;
|
|
323
|
+
overflow: hidden;
|
|
324
|
+
clip: rect(0, 0, 0, 0);
|
|
325
|
+
white-space: nowrap;
|
|
326
|
+
border: 0;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
main {
|
|
330
|
+
margin-bottom: var(--qc-spacer-lg);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
qc-color-doc {
|
|
334
|
+
display: block;
|
|
335
|
+
margin-bottom: var(--qc-spacer-md);
|
|
316
336
|
}
|
|
317
337
|
|
|
318
338
|
.title-samples {
|
|
@@ -338,6 +358,10 @@ main {
|
|
|
338
358
|
font-family: var(--qc-font-family-header);
|
|
339
359
|
}
|
|
340
360
|
|
|
361
|
+
h1, h2, h3, h4, h5, h6 {
|
|
362
|
+
scroll-margin-top: 9.6rem;
|
|
363
|
+
}
|
|
364
|
+
|
|
341
365
|
#grid-samples {
|
|
342
366
|
position: relative;
|
|
343
367
|
text-align: center;
|
|
@@ -372,14 +396,19 @@ main {
|
|
|
372
396
|
height: 100%;
|
|
373
397
|
}
|
|
374
398
|
|
|
375
|
-
|
|
399
|
+
#liste-elevation {
|
|
400
|
+
display: flex;
|
|
401
|
+
gap: var(--qc-grid-gutter);
|
|
402
|
+
flex-wrap: wrap;
|
|
403
|
+
}
|
|
404
|
+
#liste-elevation [class*=qc-shading-] {
|
|
376
405
|
display: flex;
|
|
377
406
|
width: 12rem;
|
|
378
407
|
height: 12rem;
|
|
379
408
|
justify-content: center;
|
|
380
409
|
align-items: center;
|
|
381
410
|
}
|
|
382
|
-
|
|
411
|
+
#liste-elevation [class*=qc-shading-].qc-shading-0 {
|
|
383
412
|
border: 1px solid var(--qc-color-grey-light);
|
|
384
413
|
}
|
|
385
414
|
|
|
@@ -389,14 +418,34 @@ a.pseudo-hover {
|
|
|
389
418
|
}
|
|
390
419
|
a.pseudo-active {
|
|
391
420
|
color: var(--qc-color-link-active);
|
|
421
|
+
text-decoration: none;
|
|
392
422
|
}
|
|
393
|
-
a.
|
|
394
|
-
color: var(--qc-color-link-
|
|
423
|
+
a.pseudo-focus {
|
|
424
|
+
color: var(--qc-color-link-hover);
|
|
425
|
+
text-decoration: none;
|
|
426
|
+
outline: 2px solid var(--qc-color-link-focus-outline);
|
|
427
|
+
outline-offset: 1px;
|
|
428
|
+
}
|
|
429
|
+
a.pseudo-visited {
|
|
430
|
+
color: var(--qc-color-link-visited) !important;
|
|
395
431
|
}
|
|
396
432
|
a.not-visited:visited:not(:hover) {
|
|
397
433
|
color: var(--qc-color-link-text);
|
|
398
434
|
}
|
|
399
435
|
|
|
436
|
+
a.pseudo-visited span.qc-ext-link-img {
|
|
437
|
+
background: var(--qc-color-link-visited) !important;
|
|
438
|
+
}
|
|
439
|
+
a.pseudo-focus span.qc-ext-link-img {
|
|
440
|
+
background: var(--qc-color-link-hover) !important;
|
|
441
|
+
}
|
|
442
|
+
a.pseudo-hover span.qc-ext-link-img {
|
|
443
|
+
background: var(--qc-color-link-hover) !important;
|
|
444
|
+
}
|
|
445
|
+
a.pseudo-active span.qc-ext-link-img {
|
|
446
|
+
background: var(--qc-color-link-active) !important;
|
|
447
|
+
}
|
|
448
|
+
|
|
400
449
|
p, h1, h2, h3, h4, h5, h6 {
|
|
401
450
|
-webkit-hyphens: auto;
|
|
402
451
|
hyphens: auto;
|
|
@@ -406,182 +455,45 @@ table.component-attributes-description td:first-child {
|
|
|
406
455
|
white-space: nowrap;
|
|
407
456
|
}
|
|
408
457
|
|
|
409
|
-
#custom-piv-search-form .input-group {
|
|
410
|
-
width: 100%;
|
|
411
|
-
display: flex;
|
|
412
|
-
justify-content: space-between;
|
|
413
|
-
align-items: stretch;
|
|
414
|
-
}
|
|
415
|
-
#custom-piv-search-form .input-group input {
|
|
416
|
-
width: 100%;
|
|
417
|
-
padding: 0.6rem 1.2rem;
|
|
418
|
-
border: 1px solid var(--qc-color-blue-dark);
|
|
419
|
-
border-right: none;
|
|
420
|
-
}
|
|
421
|
-
#custom-piv-search-form .input-group input:focus {
|
|
422
|
-
outline: 0.2rem solid var(--qc-color-blue-light);
|
|
423
|
-
border-right: 1px solid black;
|
|
424
|
-
z-index: 1;
|
|
425
|
-
}
|
|
426
|
-
#custom-piv-search-form .input-group input::-moz-placeholder {
|
|
427
|
-
font-size: var(--qc-font-size-sm);
|
|
428
|
-
}
|
|
429
|
-
#custom-piv-search-form .input-group input::placeholder {
|
|
430
|
-
font-size: var(--qc-font-size-sm);
|
|
431
|
-
}
|
|
432
|
-
#custom-piv-search-form .input-group button {
|
|
433
|
-
display: flex;
|
|
434
|
-
justify-content: center;
|
|
435
|
-
border: 1px solid var(--qc-color-blue-dark);
|
|
436
|
-
border-left: none;
|
|
437
|
-
background-color: white;
|
|
438
|
-
width: 4.16rem;
|
|
439
|
-
}
|
|
440
|
-
#custom-piv-search-form .input-group button:focus {
|
|
441
|
-
outline: 0.2rem solid var(--qc-color-blue-light);
|
|
442
|
-
border-left: 1px solid black;
|
|
443
|
-
}
|
|
444
|
-
#custom-piv-search-form .input-group button .qc-search-submit {
|
|
445
|
-
min-width: 2.4rem;
|
|
446
|
-
height: 2.4rem;
|
|
447
|
-
align-self: center;
|
|
448
|
-
}
|
|
449
|
-
#custom-piv-search-form .input-group button .sr-description {
|
|
450
|
-
position: absolute;
|
|
451
|
-
width: 1px;
|
|
452
|
-
height: 1px;
|
|
453
|
-
clip: rect(0 0 0 0);
|
|
454
|
-
}
|
|
455
|
-
|
|
456
458
|
qc-piv-footer + qc-code {
|
|
457
459
|
margin-top: 0;
|
|
458
460
|
}
|
|
459
461
|
|
|
460
|
-
|
|
462
|
+
qc-doc-exemple {
|
|
461
463
|
display: block;
|
|
462
|
-
|
|
463
|
-
padding: 1em;
|
|
464
|
+
margin-bottom: var(--qc-spacer-xl);
|
|
464
465
|
}
|
|
465
466
|
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
/*!
|
|
471
|
-
Theme: Default
|
|
472
|
-
Description: Original highlight.js style
|
|
473
|
-
Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
|
474
|
-
Maintainer: @highlightjs/core-team
|
|
475
|
-
Website: https://highlightjs.org/
|
|
476
|
-
License: see project LICENSE
|
|
477
|
-
Touched: 2021
|
|
478
|
-
*/
|
|
479
|
-
/*
|
|
480
|
-
This is left on purpose making default.css the single file that can be lifted
|
|
481
|
-
as-is from the repository directly without the need for a build step
|
|
482
|
-
|
|
483
|
-
Typically this "required" baseline CSS is added by `makestuff.js` during build.
|
|
484
|
-
*/
|
|
485
|
-
pre code.hljs {
|
|
486
|
-
display: block;
|
|
487
|
-
overflow-x: auto;
|
|
488
|
-
padding: 1em;
|
|
467
|
+
dl {
|
|
468
|
+
margin: 0 0 var(--qc-spacer-content-block-mb);
|
|
489
469
|
}
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
padding: 3px 5px;
|
|
470
|
+
dl dt {
|
|
471
|
+
font-weight: var(--qc-font-weight-content-medium);
|
|
493
472
|
}
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
background: #F3F3F3;
|
|
498
|
-
color: #444;
|
|
473
|
+
dl dd {
|
|
474
|
+
margin-left: 0;
|
|
475
|
+
margin-bottom: var(--qc-spacer-list-item-mb);
|
|
499
476
|
}
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
.hljs-subst {
|
|
503
|
-
/* default */
|
|
477
|
+
dl dd + dd {
|
|
478
|
+
margin-top: calc(-1 * var(--qc-spacer-list-item-mb));
|
|
504
479
|
}
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
.hljs-comment {
|
|
508
|
-
color: #697070;
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
.hljs-tag,
|
|
512
|
-
.hljs-punctuation {
|
|
513
|
-
color: rgba(68, 68, 68, 0.6666666667);
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.hljs-tag .hljs-name,
|
|
517
|
-
.hljs-tag .hljs-attr {
|
|
518
|
-
color: #444;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
.hljs-keyword,
|
|
522
|
-
.hljs-attribute,
|
|
523
|
-
.hljs-selector-tag,
|
|
524
|
-
.hljs-meta .hljs-keyword,
|
|
525
|
-
.hljs-doctag,
|
|
526
|
-
.hljs-name {
|
|
527
|
-
font-weight: bold;
|
|
480
|
+
dl dd + dd:has(.pseudo-focus) {
|
|
481
|
+
margin-top: calc(-1 * var(--qc-spacer-list-item-mb) + 6px);
|
|
528
482
|
}
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
.hljs-type,
|
|
532
|
-
.hljs-string,
|
|
533
|
-
.hljs-number,
|
|
534
|
-
.hljs-selector-id,
|
|
535
|
-
.hljs-selector-class,
|
|
536
|
-
.hljs-quote,
|
|
537
|
-
.hljs-template-tag,
|
|
538
|
-
.hljs-deletion {
|
|
539
|
-
color: #880000;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.hljs-title,
|
|
543
|
-
.hljs-section {
|
|
544
|
-
color: #880000;
|
|
545
|
-
font-weight: bold;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.hljs-regexp,
|
|
549
|
-
.hljs-symbol,
|
|
550
|
-
.hljs-variable,
|
|
551
|
-
.hljs-template-variable,
|
|
552
|
-
.hljs-link,
|
|
553
|
-
.hljs-selector-attr,
|
|
554
|
-
.hljs-operator,
|
|
555
|
-
.hljs-selector-pseudo {
|
|
556
|
-
color: #ab5656;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
/* Language color: hue: 90; */
|
|
560
|
-
.hljs-literal {
|
|
561
|
-
color: #695;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.hljs-built_in,
|
|
565
|
-
.hljs-bullet,
|
|
566
|
-
.hljs-code,
|
|
567
|
-
.hljs-addition {
|
|
568
|
-
color: #397300;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
/* Meta color: hue: 200 */
|
|
572
|
-
.hljs-meta {
|
|
573
|
-
color: #1f7199;
|
|
483
|
+
dl.qc-list-inline dt, dl.qc-list-inline dd {
|
|
484
|
+
display: inline;
|
|
574
485
|
}
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
486
|
+
dl.qc-list-inline dt::before {
|
|
487
|
+
display: block;
|
|
488
|
+
content: "";
|
|
489
|
+
margin-bottom: var(--qc-spacer-list-item-mb);
|
|
578
490
|
}
|
|
579
491
|
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
492
|
+
.table-overflow {
|
|
493
|
+
width: 100%;
|
|
494
|
+
overflow-x: auto;
|
|
583
495
|
}
|
|
584
496
|
|
|
585
|
-
|
|
586
|
-
|
|
497
|
+
hr {
|
|
498
|
+
max-width: var(--qc-max-content-width);
|
|
587
499
|
}
|