@oslokommune/punkt-css 13.22.0 → 14.0.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/CHANGELOG.md +62 -0
- package/dist/css/components/header-service-mobile.css +185 -0
- package/dist/css/components/header-service-mobile.min.css +1 -0
- package/dist/css/components/header-service.css +413 -0
- package/dist/css/components/header-service.min.css +1 -0
- package/dist/css/components/header-user-menu.css +128 -0
- package/dist/css/components/header-user-menu.min.css +1 -0
- package/dist/css/components/textinput.css +1 -1
- package/dist/css/components/textinput.min.css +1 -1
- package/dist/css/elements/checkbox-radio.css +3 -3
- package/dist/css/elements/checkbox-radio.min.css +1 -1
- package/dist/css/elements/input.css +1 -1
- package/dist/css/elements/input.min.css +1 -1
- package/dist/css/elements/select.css +1 -1
- package/dist/css/elements/select.min.css +1 -1
- package/dist/css/pkt-base.css +7 -2
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-components.css +730 -1
- package/dist/css/pkt-components.min.css +1 -1
- package/dist/css/pkt-docs.css +740 -6
- package/dist/css/pkt-docs.min.css +1 -1
- package/dist/css/pkt-elements.css +4 -4
- package/dist/css/pkt-elements.min.css +1 -1
- package/dist/css/pkt.css +740 -6
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/mixins/_container-queries.scss +37 -0
- package/dist/scss/abstracts/mixins/_index.scss +1 -0
- package/dist/scss/abstracts/variables/_index.scss +1 -1
- package/dist/scss/base/_typography.scss +4 -1
- package/dist/scss/components/_header-service-mobile.scss +212 -0
- package/dist/scss/components/_header-service.scss +378 -0
- package/dist/scss/components/_header-user-menu.scss +127 -0
- package/dist/scss/components/_index.scss +3 -0
- package/package.json +3 -3
package/dist/css/pkt.css
CHANGED
|
@@ -14346,6 +14346,11 @@ a:hover, a.pkt-link--hover,
|
|
|
14346
14346
|
color: var(--pkt-color-text-action-active);
|
|
14347
14347
|
text-decoration: underline;
|
|
14348
14348
|
}
|
|
14349
|
+
a:hover svg, a.pkt-link--hover svg,
|
|
14350
|
+
.pkt-link-button:hover svg,
|
|
14351
|
+
.pkt-link-button.pkt-link--hover svg {
|
|
14352
|
+
--fg-color: currentColor;
|
|
14353
|
+
}
|
|
14349
14354
|
a:focus-visible, a.pkt-link--focus,
|
|
14350
14355
|
.pkt-link-button:focus-visible,
|
|
14351
14356
|
.pkt-link-button.pkt-link--focus {
|
|
@@ -14372,7 +14377,7 @@ a:active, a.pkt-link--active,
|
|
|
14372
14377
|
}
|
|
14373
14378
|
|
|
14374
14379
|
.pkt-link__icon {
|
|
14375
|
-
--fg-color:
|
|
14380
|
+
--fg-color: currentColor;
|
|
14376
14381
|
width: 1.5rem;
|
|
14377
14382
|
height: 1.5rem;
|
|
14378
14383
|
flex-shrink: 0;
|
|
@@ -14394,7 +14399,7 @@ a:active, a.pkt-link--active,
|
|
|
14394
14399
|
.pkt-link--external::after {
|
|
14395
14400
|
display: inline-block;
|
|
14396
14401
|
content: " ";
|
|
14397
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/
|
|
14402
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/14.0/icons/new-window-small.svg);
|
|
14398
14403
|
background-image: var(--svg);
|
|
14399
14404
|
background-repeat: no-repeat;
|
|
14400
14405
|
background-size: 18px 18px;
|
|
@@ -18417,7 +18422,7 @@ div.pkt-btn:not([data-disabled]):active, .pkt-btn:enabled:active, .pkt-btn:activ
|
|
|
18417
18422
|
outline-color: var(--pkt-color-input-border-hover);
|
|
18418
18423
|
}
|
|
18419
18424
|
.pkt-input-check__input-checkbox:indeterminate[type=checkbox]:not([role=switch]) {
|
|
18420
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/
|
|
18425
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/14.0/icons/minus-sign.svg);
|
|
18421
18426
|
position: relative;
|
|
18422
18427
|
background-color: var(--pkt-color-input-border-normal);
|
|
18423
18428
|
}
|
|
@@ -18443,7 +18448,7 @@ div.pkt-btn:not([data-disabled]):active, .pkt-btn:enabled:active, .pkt-btn:activ
|
|
|
18443
18448
|
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(105%) contrast(101%);
|
|
18444
18449
|
}
|
|
18445
18450
|
.pkt-input-check__input-checkbox:checked[type=checkbox] {
|
|
18446
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/
|
|
18451
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/14.0/icons/check-medium.svg);
|
|
18447
18452
|
position: relative;
|
|
18448
18453
|
background-color: var(--pkt-color-input-border-normal);
|
|
18449
18454
|
}
|
|
@@ -18501,7 +18506,7 @@ div.pkt-btn:not([data-disabled]):active, .pkt-btn:enabled:active, .pkt-btn:activ
|
|
|
18501
18506
|
cursor: not-allowed;
|
|
18502
18507
|
}
|
|
18503
18508
|
.pkt-input-check__input-checkbox:disabled[type=checkbox][role=switch]:checked:after {
|
|
18504
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/
|
|
18509
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/14.0/icons/check-medium.svg);
|
|
18505
18510
|
--pkt-color-input-check-border: var(--pkt-color-input-border-normal);
|
|
18506
18511
|
filter: grayscale(100%) brightness(400%);
|
|
18507
18512
|
}
|
|
@@ -18716,7 +18721,7 @@ pkt-select {
|
|
|
18716
18721
|
}
|
|
18717
18722
|
.pkt-input:is(select):not([multiple]), .pkt-textinput__input:is(select):not([multiple]), .pkt-select select:is(select):not([multiple]),
|
|
18718
18723
|
.pkt-select:is(select):not([multiple]) {
|
|
18719
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/
|
|
18724
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/14.0/icons/chevron-thin-down.svg);
|
|
18720
18725
|
background-image: var(--svg);
|
|
18721
18726
|
background-repeat: no-repeat;
|
|
18722
18727
|
background-position: right 0.7rem top 50%;
|
|
@@ -20993,6 +20998,735 @@ pkt-combobox[fullwidth] {
|
|
|
20993
20998
|
color: var(--pkt-color-text-body-dark);
|
|
20994
20999
|
}
|
|
20995
21000
|
|
|
21001
|
+
/*
|
|
21002
|
+
* HeaderService component
|
|
21003
|
+
* Uses container queries with media query fallback for responsive behavior
|
|
21004
|
+
*/
|
|
21005
|
+
.pkt-header-service-spacer {
|
|
21006
|
+
height: 80px;
|
|
21007
|
+
}
|
|
21008
|
+
@media screen and (min-width: 48rem) {
|
|
21009
|
+
.pkt-header-service-spacer {
|
|
21010
|
+
height: 5.5rem;
|
|
21011
|
+
}
|
|
21012
|
+
}
|
|
21013
|
+
@container header-service (min-width: 48rem) {
|
|
21014
|
+
.pkt-header-service-spacer {
|
|
21015
|
+
height: 5.5rem;
|
|
21016
|
+
}
|
|
21017
|
+
}
|
|
21018
|
+
@media screen and (min-width: 80rem) {
|
|
21019
|
+
.pkt-header-service-spacer {
|
|
21020
|
+
height: 6.5rem;
|
|
21021
|
+
}
|
|
21022
|
+
}
|
|
21023
|
+
@container header-service (min-width: 80rem) {
|
|
21024
|
+
.pkt-header-service-spacer {
|
|
21025
|
+
height: 6.5rem;
|
|
21026
|
+
}
|
|
21027
|
+
}
|
|
21028
|
+
.pkt-header-service-spacer--mobile {
|
|
21029
|
+
height: 80px;
|
|
21030
|
+
}
|
|
21031
|
+
.pkt-header-service-spacer--has-user {
|
|
21032
|
+
height: 128px;
|
|
21033
|
+
}
|
|
21034
|
+
@media screen and (min-width: 48rem) {
|
|
21035
|
+
.pkt-header-service-spacer--has-user {
|
|
21036
|
+
height: 5.5rem;
|
|
21037
|
+
}
|
|
21038
|
+
}
|
|
21039
|
+
@container header-service (min-width: 48rem) {
|
|
21040
|
+
.pkt-header-service-spacer--has-user {
|
|
21041
|
+
height: 5.5rem;
|
|
21042
|
+
}
|
|
21043
|
+
}
|
|
21044
|
+
@media screen and (min-width: 80rem) {
|
|
21045
|
+
.pkt-header-service-spacer--has-user {
|
|
21046
|
+
height: 6.5rem;
|
|
21047
|
+
}
|
|
21048
|
+
}
|
|
21049
|
+
@container header-service (min-width: 80rem) {
|
|
21050
|
+
.pkt-header-service-spacer--has-user {
|
|
21051
|
+
height: 6.5rem;
|
|
21052
|
+
}
|
|
21053
|
+
}
|
|
21054
|
+
.pkt-header-service-spacer--has-user.pkt-header-service-spacer--mobile {
|
|
21055
|
+
height: 128px;
|
|
21056
|
+
}
|
|
21057
|
+
.pkt-header-service-spacer--compact {
|
|
21058
|
+
height: 4rem;
|
|
21059
|
+
}
|
|
21060
|
+
@media screen and (min-width: 48rem) {
|
|
21061
|
+
.pkt-header-service-spacer--compact {
|
|
21062
|
+
height: 4rem;
|
|
21063
|
+
}
|
|
21064
|
+
}
|
|
21065
|
+
@container header-service (min-width: 48rem) {
|
|
21066
|
+
.pkt-header-service-spacer--compact {
|
|
21067
|
+
height: 4rem;
|
|
21068
|
+
}
|
|
21069
|
+
}
|
|
21070
|
+
@media screen and (min-width: 80rem) {
|
|
21071
|
+
.pkt-header-service-spacer--compact {
|
|
21072
|
+
height: 4.5rem;
|
|
21073
|
+
}
|
|
21074
|
+
}
|
|
21075
|
+
@container header-service (min-width: 80rem) {
|
|
21076
|
+
.pkt-header-service-spacer--compact {
|
|
21077
|
+
height: 4.5rem;
|
|
21078
|
+
}
|
|
21079
|
+
}
|
|
21080
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--mobile {
|
|
21081
|
+
height: 4rem;
|
|
21082
|
+
}
|
|
21083
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--has-user {
|
|
21084
|
+
height: 104px;
|
|
21085
|
+
}
|
|
21086
|
+
@media screen and (min-width: 48rem) {
|
|
21087
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--has-user {
|
|
21088
|
+
height: 4rem;
|
|
21089
|
+
}
|
|
21090
|
+
}
|
|
21091
|
+
@container header-service (min-width: 48rem) {
|
|
21092
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--has-user {
|
|
21093
|
+
height: 4rem;
|
|
21094
|
+
}
|
|
21095
|
+
}
|
|
21096
|
+
@media screen and (min-width: 80rem) {
|
|
21097
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--has-user {
|
|
21098
|
+
height: 4.5rem;
|
|
21099
|
+
}
|
|
21100
|
+
}
|
|
21101
|
+
@container header-service (min-width: 80rem) {
|
|
21102
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--has-user {
|
|
21103
|
+
height: 4.5rem;
|
|
21104
|
+
}
|
|
21105
|
+
}
|
|
21106
|
+
.pkt-header-service-spacer--compact.pkt-header-service-spacer--has-user.pkt-header-service-spacer--mobile {
|
|
21107
|
+
height: 104px;
|
|
21108
|
+
}
|
|
21109
|
+
|
|
21110
|
+
.pkt-header-service {
|
|
21111
|
+
--pkt-header-height: 4.5rem;
|
|
21112
|
+
position: relative;
|
|
21113
|
+
}
|
|
21114
|
+
@media screen and (min-width: 48rem) {
|
|
21115
|
+
.pkt-header-service {
|
|
21116
|
+
--pkt-header-height: 5.5rem;
|
|
21117
|
+
}
|
|
21118
|
+
}
|
|
21119
|
+
@container header-service (min-width: 48rem) {
|
|
21120
|
+
.pkt-header-service {
|
|
21121
|
+
--pkt-header-height: 5.5rem;
|
|
21122
|
+
}
|
|
21123
|
+
}
|
|
21124
|
+
@media screen and (min-width: 80rem) {
|
|
21125
|
+
.pkt-header-service {
|
|
21126
|
+
--pkt-header-height: 6.5rem;
|
|
21127
|
+
}
|
|
21128
|
+
}
|
|
21129
|
+
@container header-service (min-width: 80rem) {
|
|
21130
|
+
.pkt-header-service {
|
|
21131
|
+
--pkt-header-height: 6.5rem;
|
|
21132
|
+
}
|
|
21133
|
+
}
|
|
21134
|
+
.pkt-header-service--compact {
|
|
21135
|
+
--pkt-header-height: 4rem;
|
|
21136
|
+
}
|
|
21137
|
+
@media screen and (min-width: 80rem) {
|
|
21138
|
+
.pkt-header-service--compact {
|
|
21139
|
+
--pkt-header-height: 4.5rem;
|
|
21140
|
+
}
|
|
21141
|
+
}
|
|
21142
|
+
@container header-service (min-width: 80rem) {
|
|
21143
|
+
.pkt-header-service--compact {
|
|
21144
|
+
--pkt-header-height: 4.5rem;
|
|
21145
|
+
}
|
|
21146
|
+
}
|
|
21147
|
+
.pkt-header-service--mobile {
|
|
21148
|
+
--pkt-header-height: 4rem;
|
|
21149
|
+
}
|
|
21150
|
+
@media screen and (min-width: 80rem) {
|
|
21151
|
+
.pkt-header-service--mobile {
|
|
21152
|
+
--pkt-header-height: 4.5rem;
|
|
21153
|
+
}
|
|
21154
|
+
}
|
|
21155
|
+
.pkt-header-service {
|
|
21156
|
+
background-color: var(--pkt-color-background-default);
|
|
21157
|
+
container-type: inline-size;
|
|
21158
|
+
container-name: header-service;
|
|
21159
|
+
display: grid;
|
|
21160
|
+
align-items: center;
|
|
21161
|
+
grid-template-columns: 1fr auto auto;
|
|
21162
|
+
grid-template-rows: 4.5rem auto;
|
|
21163
|
+
column-gap: 1rem;
|
|
21164
|
+
}
|
|
21165
|
+
@media screen and (min-width: 48rem) {
|
|
21166
|
+
.pkt-header-service {
|
|
21167
|
+
grid-template-rows: 5.5rem auto;
|
|
21168
|
+
column-gap: 1.5rem;
|
|
21169
|
+
}
|
|
21170
|
+
}
|
|
21171
|
+
@container header-service (min-width: 48rem) {
|
|
21172
|
+
.pkt-header-service {
|
|
21173
|
+
grid-template-rows: 5.5rem auto;
|
|
21174
|
+
column-gap: 1.5rem;
|
|
21175
|
+
}
|
|
21176
|
+
}
|
|
21177
|
+
@media screen and (min-width: 80rem) {
|
|
21178
|
+
.pkt-header-service {
|
|
21179
|
+
grid-template-rows: 6.5rem auto;
|
|
21180
|
+
column-gap: 2rem;
|
|
21181
|
+
}
|
|
21182
|
+
}
|
|
21183
|
+
@container header-service (min-width: 80rem) {
|
|
21184
|
+
.pkt-header-service {
|
|
21185
|
+
grid-template-rows: 6.5rem auto;
|
|
21186
|
+
column-gap: 2rem;
|
|
21187
|
+
}
|
|
21188
|
+
}
|
|
21189
|
+
.pkt-header-service--compact {
|
|
21190
|
+
grid-template-rows: 4.5rem auto;
|
|
21191
|
+
}
|
|
21192
|
+
.pkt-header-service--fixed {
|
|
21193
|
+
width: 100vw;
|
|
21194
|
+
position: fixed;
|
|
21195
|
+
top: 0;
|
|
21196
|
+
left: 0;
|
|
21197
|
+
z-index: 10;
|
|
21198
|
+
}
|
|
21199
|
+
.pkt-header-service--scroll-to-hide {
|
|
21200
|
+
transform: translate3d(0, 0, 0);
|
|
21201
|
+
transition: 0.5s transform ease-in-out;
|
|
21202
|
+
}
|
|
21203
|
+
.pkt-header-service--hidden {
|
|
21204
|
+
transform: translate3d(0, -100%, 0);
|
|
21205
|
+
}
|
|
21206
|
+
.pkt-header-service__logo-area, .pkt-header-service__content, .pkt-header-service__user {
|
|
21207
|
+
display: inline-flex;
|
|
21208
|
+
column-gap: 1.5rem;
|
|
21209
|
+
min-width: 0;
|
|
21210
|
+
}
|
|
21211
|
+
@media screen and (min-width: 80rem) {
|
|
21212
|
+
.pkt-header-service__logo-area, .pkt-header-service__content, .pkt-header-service__user {
|
|
21213
|
+
column-gap: 2rem;
|
|
21214
|
+
}
|
|
21215
|
+
}
|
|
21216
|
+
@container header-service (min-width: 80rem) {
|
|
21217
|
+
.pkt-header-service__logo-area, .pkt-header-service__content, .pkt-header-service__user {
|
|
21218
|
+
column-gap: 2rem;
|
|
21219
|
+
}
|
|
21220
|
+
}
|
|
21221
|
+
.pkt-header-service__logo-area {
|
|
21222
|
+
grid-column: 1;
|
|
21223
|
+
grid-row: 1;
|
|
21224
|
+
align-items: center;
|
|
21225
|
+
display: inline-flex;
|
|
21226
|
+
padding-left: 1rem;
|
|
21227
|
+
}
|
|
21228
|
+
@media screen and (min-width: 80rem) {
|
|
21229
|
+
.pkt-header-service__logo-area {
|
|
21230
|
+
padding-left: 2rem;
|
|
21231
|
+
}
|
|
21232
|
+
}
|
|
21233
|
+
@container header-service (min-width: 80rem) {
|
|
21234
|
+
.pkt-header-service__logo-area {
|
|
21235
|
+
padding-left: 2rem;
|
|
21236
|
+
}
|
|
21237
|
+
}
|
|
21238
|
+
.pkt-header-service__content, .pkt-header-service__user {
|
|
21239
|
+
grid-row: 1;
|
|
21240
|
+
align-items: center;
|
|
21241
|
+
}
|
|
21242
|
+
.pkt-header-service__content .pkt-header-service__user-button .pkt-btn__text, .pkt-header-service__user .pkt-header-service__user-button .pkt-btn__text {
|
|
21243
|
+
min-width: 0;
|
|
21244
|
+
overflow: hidden;
|
|
21245
|
+
text-overflow: ellipsis;
|
|
21246
|
+
white-space: nowrap;
|
|
21247
|
+
}
|
|
21248
|
+
.pkt-header-service__content .pkt-link, .pkt-header-service__user .pkt-link {
|
|
21249
|
+
letter-spacing: -0.2px;
|
|
21250
|
+
font-weight: 500;
|
|
21251
|
+
font-size: 1.125rem;
|
|
21252
|
+
line-height: 1.75rem;
|
|
21253
|
+
}
|
|
21254
|
+
.pkt-header-service__content {
|
|
21255
|
+
grid-column: 2;
|
|
21256
|
+
}
|
|
21257
|
+
.pkt-header-service__user {
|
|
21258
|
+
grid-column: 3;
|
|
21259
|
+
justify-self: end;
|
|
21260
|
+
padding-right: 1rem;
|
|
21261
|
+
}
|
|
21262
|
+
@media screen and (min-width: 80rem) {
|
|
21263
|
+
.pkt-header-service__user {
|
|
21264
|
+
padding-right: 2rem;
|
|
21265
|
+
}
|
|
21266
|
+
}
|
|
21267
|
+
@container header-service (min-width: 80rem) {
|
|
21268
|
+
.pkt-header-service__user {
|
|
21269
|
+
padding-right: 2rem;
|
|
21270
|
+
}
|
|
21271
|
+
}
|
|
21272
|
+
.pkt-header-service__logo {
|
|
21273
|
+
--fg-color: var(--pkt-color-text-body-default);
|
|
21274
|
+
flex: 0 0 auto;
|
|
21275
|
+
display: flex;
|
|
21276
|
+
align-items: center;
|
|
21277
|
+
gap: 0.5rem;
|
|
21278
|
+
}
|
|
21279
|
+
.pkt-header-service__logo a,
|
|
21280
|
+
.pkt-header-service__logo button {
|
|
21281
|
+
display: flex;
|
|
21282
|
+
align-items: center;
|
|
21283
|
+
}
|
|
21284
|
+
.pkt-header-service__logo svg {
|
|
21285
|
+
height: 2.5rem;
|
|
21286
|
+
}
|
|
21287
|
+
.pkt-header-service__logo-area--without-service .pkt-header-service__logo svg {
|
|
21288
|
+
height: 4rem;
|
|
21289
|
+
}
|
|
21290
|
+
.pkt-header-service__service-name {
|
|
21291
|
+
letter-spacing: -0.2px;
|
|
21292
|
+
font-weight: 500;
|
|
21293
|
+
font-size: 1.375rem;
|
|
21294
|
+
line-height: 2.125rem;
|
|
21295
|
+
padding-top: 4px;
|
|
21296
|
+
white-space: normal;
|
|
21297
|
+
display: -webkit-box;
|
|
21298
|
+
-webkit-box-orient: vertical;
|
|
21299
|
+
-webkit-line-clamp: 2;
|
|
21300
|
+
overflow: hidden;
|
|
21301
|
+
text-overflow: ellipsis;
|
|
21302
|
+
min-width: 0;
|
|
21303
|
+
text-wrap: balance;
|
|
21304
|
+
}
|
|
21305
|
+
.pkt-header-service__service-link {
|
|
21306
|
+
color: var(--pkt-color-text-body-default);
|
|
21307
|
+
}
|
|
21308
|
+
.pkt-header-service__service-link .pkt-link {
|
|
21309
|
+
text-decoration: none;
|
|
21310
|
+
}
|
|
21311
|
+
.pkt-header-service .pkt-link {
|
|
21312
|
+
text-decoration: none;
|
|
21313
|
+
}
|
|
21314
|
+
.pkt-header-service .pkt-link--active {
|
|
21315
|
+
text-decoration: underline;
|
|
21316
|
+
text-underline-position: from-font;
|
|
21317
|
+
}
|
|
21318
|
+
.pkt-header-service .pkt-link:active {
|
|
21319
|
+
text-decoration: underline;
|
|
21320
|
+
text-underline-position: from-font;
|
|
21321
|
+
}
|
|
21322
|
+
.pkt-header-service .pkt-link:hover {
|
|
21323
|
+
text-decoration: underline;
|
|
21324
|
+
text-underline-position: from-font;
|
|
21325
|
+
}
|
|
21326
|
+
.pkt-header-service .pkt-link.pkt-header-service--mobile {
|
|
21327
|
+
letter-spacing: -0.2px;
|
|
21328
|
+
font-weight: 500;
|
|
21329
|
+
font-size: 1rem;
|
|
21330
|
+
line-height: 1.5rem;
|
|
21331
|
+
}
|
|
21332
|
+
.pkt-header-service__search-input {
|
|
21333
|
+
background-color: var(--pkt-color-background-default);
|
|
21334
|
+
}
|
|
21335
|
+
.pkt-header-service__search-input .pkt-input-icon:not(button) svg {
|
|
21336
|
+
margin-left: 0;
|
|
21337
|
+
}
|
|
21338
|
+
.pkt-header-service__slot-container, .pkt-header-service__search-container {
|
|
21339
|
+
display: flex;
|
|
21340
|
+
flex-direction: row;
|
|
21341
|
+
align-items: baseline;
|
|
21342
|
+
}
|
|
21343
|
+
.pkt-header-service__slot-container, .pkt-header-service__slot-container .pkt-contents {
|
|
21344
|
+
display: flex;
|
|
21345
|
+
flex-direction: row;
|
|
21346
|
+
align-items: center;
|
|
21347
|
+
}
|
|
21348
|
+
.pkt-header-service__slot-container > * + *, .pkt-header-service__slot-container .pkt-contents > * + * {
|
|
21349
|
+
margin-left: 2rem;
|
|
21350
|
+
}
|
|
21351
|
+
.pkt-header-service__slot-container > .pkt-link + .pkt-link,
|
|
21352
|
+
.pkt-header-service__slot-container > pkt-link + pkt-link,
|
|
21353
|
+
.pkt-header-service__slot-container > a + a, .pkt-header-service__slot-container .pkt-contents > .pkt-link + .pkt-link,
|
|
21354
|
+
.pkt-header-service__slot-container .pkt-contents > pkt-link + pkt-link,
|
|
21355
|
+
.pkt-header-service__slot-container .pkt-contents > a + a {
|
|
21356
|
+
margin-left: 1.5rem;
|
|
21357
|
+
}
|
|
21358
|
+
.pkt-header-service__user-container.is-open, .pkt-header-service__search-container.is-open, .pkt-header-service__slot-container.is-open, .pkt-header-service__user-menu.is-open, .pkt-header-service__mobile-menu.is-open {
|
|
21359
|
+
z-index: 100;
|
|
21360
|
+
}
|
|
21361
|
+
.pkt-header-service__user-container {
|
|
21362
|
+
position: relative;
|
|
21363
|
+
}
|
|
21364
|
+
.pkt-header-service__user-button {
|
|
21365
|
+
max-width: 28.5rem;
|
|
21366
|
+
}
|
|
21367
|
+
.pkt-header-service__user-button .pkt-btn__text {
|
|
21368
|
+
overflow: hidden;
|
|
21369
|
+
text-overflow: ellipsis;
|
|
21370
|
+
white-space: nowrap;
|
|
21371
|
+
min-width: 0;
|
|
21372
|
+
flex: 1 1 auto;
|
|
21373
|
+
}
|
|
21374
|
+
.pkt-header-service__user-menu, .pkt-header-service__slot-menu {
|
|
21375
|
+
position: absolute;
|
|
21376
|
+
right: 0;
|
|
21377
|
+
width: max(15.5rem, 100%);
|
|
21378
|
+
max-width: min(32rem, 90vw);
|
|
21379
|
+
}
|
|
21380
|
+
.pkt-header-service__logout-button {
|
|
21381
|
+
flex: 0 0 auto;
|
|
21382
|
+
}
|
|
21383
|
+
.pkt-header-service__mobile-menu-container {
|
|
21384
|
+
grid-column: 1/-1;
|
|
21385
|
+
grid-row: 2;
|
|
21386
|
+
}
|
|
21387
|
+
.pkt-header-service__mobile-menu {
|
|
21388
|
+
overflow: hidden;
|
|
21389
|
+
max-height: 0;
|
|
21390
|
+
opacity: 0;
|
|
21391
|
+
transform: translateY(-6px);
|
|
21392
|
+
transition: max-height 200ms ease, opacity 150ms ease, transform 200ms ease;
|
|
21393
|
+
will-change: max-height, transform;
|
|
21394
|
+
pointer-events: none;
|
|
21395
|
+
}
|
|
21396
|
+
.pkt-header-service__mobile-menu.is-open {
|
|
21397
|
+
max-height: calc(100dvh - var(--pkt-header-height) - 3.5rem);
|
|
21398
|
+
opacity: 1;
|
|
21399
|
+
overflow: visible;
|
|
21400
|
+
pointer-events: auto;
|
|
21401
|
+
transform: translateY(0);
|
|
21402
|
+
}
|
|
21403
|
+
.pkt-header-service__mobile-menu.is-open > * {
|
|
21404
|
+
max-height: calc(100dvh - var(--pkt-header-height) - 3.5rem);
|
|
21405
|
+
overflow-y: auto;
|
|
21406
|
+
-webkit-overflow-scrolling: touch;
|
|
21407
|
+
}
|
|
21408
|
+
@media (prefers-reduced-motion: reduce) {
|
|
21409
|
+
.pkt-header-service__mobile-menu {
|
|
21410
|
+
transition: none;
|
|
21411
|
+
transform: none;
|
|
21412
|
+
}
|
|
21413
|
+
}
|
|
21414
|
+
|
|
21415
|
+
.pkt-header-service.pkt-header-service--mobile {
|
|
21416
|
+
grid-template-rows: 4rem auto;
|
|
21417
|
+
grid-template-columns: 1fr auto;
|
|
21418
|
+
}
|
|
21419
|
+
@media screen and (min-width: 80rem) {
|
|
21420
|
+
.pkt-header-service.pkt-header-service--mobile {
|
|
21421
|
+
grid-template-rows: 4.5rem auto;
|
|
21422
|
+
}
|
|
21423
|
+
}
|
|
21424
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service--compact {
|
|
21425
|
+
grid-template-rows: 4rem auto;
|
|
21426
|
+
}
|
|
21427
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__logo-area, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__content, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__user {
|
|
21428
|
+
column-gap: 1rem;
|
|
21429
|
+
}
|
|
21430
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__logo-area {
|
|
21431
|
+
grid-column: 1;
|
|
21432
|
+
grid-row: 1;
|
|
21433
|
+
}
|
|
21434
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__content {
|
|
21435
|
+
grid-column: 2;
|
|
21436
|
+
grid-row: 1;
|
|
21437
|
+
padding-right: 1rem;
|
|
21438
|
+
}
|
|
21439
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__user {
|
|
21440
|
+
grid-column: 1/-1;
|
|
21441
|
+
grid-row: 2;
|
|
21442
|
+
justify-self: stretch;
|
|
21443
|
+
padding: 0;
|
|
21444
|
+
}
|
|
21445
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__logo svg {
|
|
21446
|
+
height: 2rem;
|
|
21447
|
+
}
|
|
21448
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__service-name {
|
|
21449
|
+
letter-spacing: -0.2px;
|
|
21450
|
+
font-weight: 500;
|
|
21451
|
+
font-size: 1rem;
|
|
21452
|
+
line-height: 1.5rem;
|
|
21453
|
+
}
|
|
21454
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__mobile-menu {
|
|
21455
|
+
background-color: var(--pkt-color-background-default);
|
|
21456
|
+
}
|
|
21457
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__user-container {
|
|
21458
|
+
background-color: var(--pkt-color-background-default);
|
|
21459
|
+
height: 3.5rem;
|
|
21460
|
+
width: 100%;
|
|
21461
|
+
z-index: 100;
|
|
21462
|
+
}
|
|
21463
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__user-button:is(button), .pkt-header-service.pkt-header-service--mobile .pkt-header-service__user-button button {
|
|
21464
|
+
height: 100%;
|
|
21465
|
+
padding: 0 1.5rem;
|
|
21466
|
+
width: 100%;
|
|
21467
|
+
max-width: 100%;
|
|
21468
|
+
border: none;
|
|
21469
|
+
border-top: 1px solid var(--pkt-color-border-subtle, #f2f2f2);
|
|
21470
|
+
border-bottom: 1px solid var(--pkt-color-border-subtle, #f2f2f2);
|
|
21471
|
+
}
|
|
21472
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__user-button:not(button) {
|
|
21473
|
+
display: contents;
|
|
21474
|
+
}
|
|
21475
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__user-menu {
|
|
21476
|
+
max-width: 100%;
|
|
21477
|
+
position: unset;
|
|
21478
|
+
}
|
|
21479
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-content {
|
|
21480
|
+
display: none;
|
|
21481
|
+
}
|
|
21482
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content {
|
|
21483
|
+
position: absolute;
|
|
21484
|
+
top: 4rem;
|
|
21485
|
+
left: 0;
|
|
21486
|
+
right: 0;
|
|
21487
|
+
max-width: 100vw;
|
|
21488
|
+
}
|
|
21489
|
+
@media screen and (min-width: 80rem) {
|
|
21490
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content {
|
|
21491
|
+
top: 4.5rem;
|
|
21492
|
+
}
|
|
21493
|
+
}
|
|
21494
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu {
|
|
21495
|
+
position: absolute;
|
|
21496
|
+
top: 4rem;
|
|
21497
|
+
left: 0;
|
|
21498
|
+
right: 0;
|
|
21499
|
+
}
|
|
21500
|
+
@media screen and (min-width: 80rem) {
|
|
21501
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu {
|
|
21502
|
+
top: 4.5rem;
|
|
21503
|
+
}
|
|
21504
|
+
}
|
|
21505
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__search-input {
|
|
21506
|
+
padding: 1rem;
|
|
21507
|
+
}
|
|
21508
|
+
|
|
21509
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__mobile-menu.is-open,
|
|
21510
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content,
|
|
21511
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu,
|
|
21512
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__mobile-menu.is-open {
|
|
21513
|
+
background-color: var(--pkt-color-background-default);
|
|
21514
|
+
z-index: 100;
|
|
21515
|
+
border-top: 1px solid var(--pkt-color-border-subtle, #f2f2f2);
|
|
21516
|
+
border-bottom: 1px solid var(--pkt-color-border-subtle, #f2f2f2);
|
|
21517
|
+
}
|
|
21518
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content::after, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu::after, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__mobile-menu.is-open::after,
|
|
21519
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content::after,
|
|
21520
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu::after,
|
|
21521
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__mobile-menu.is-open::after {
|
|
21522
|
+
content: "";
|
|
21523
|
+
position: absolute;
|
|
21524
|
+
bottom: 0;
|
|
21525
|
+
left: 0;
|
|
21526
|
+
right: 0;
|
|
21527
|
+
height: 1.25rem;
|
|
21528
|
+
pointer-events: none;
|
|
21529
|
+
background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.06));
|
|
21530
|
+
transform: translateY(100%);
|
|
21531
|
+
z-index: 101;
|
|
21532
|
+
}
|
|
21533
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content,
|
|
21534
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content {
|
|
21535
|
+
height: max-content;
|
|
21536
|
+
max-height: calc(100dvh - var(--pkt-header-height));
|
|
21537
|
+
overflow: visible;
|
|
21538
|
+
}
|
|
21539
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents,
|
|
21540
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content,
|
|
21541
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents {
|
|
21542
|
+
display: flex;
|
|
21543
|
+
flex-direction: column;
|
|
21544
|
+
align-items: stretch;
|
|
21545
|
+
}
|
|
21546
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content,
|
|
21547
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > ul, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents,
|
|
21548
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents > ul,
|
|
21549
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content,
|
|
21550
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > ul,
|
|
21551
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents,
|
|
21552
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents > ul {
|
|
21553
|
+
margin-left: 0;
|
|
21554
|
+
gap: 1.5rem;
|
|
21555
|
+
}
|
|
21556
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > *,
|
|
21557
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > ul > *, .pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents > *,
|
|
21558
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents > ul > *,
|
|
21559
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > *,
|
|
21560
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > ul > *,
|
|
21561
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents > *,
|
|
21562
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content > .pkt-contents > ul > * {
|
|
21563
|
+
margin-left: 0;
|
|
21564
|
+
}
|
|
21565
|
+
.pkt-header-service.pkt-header-service--mobile .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content .pkt-contents,
|
|
21566
|
+
.pkt-header-service.pkt-header-service--tablet .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content .pkt-contents {
|
|
21567
|
+
padding: 2rem;
|
|
21568
|
+
overflow-y: auto;
|
|
21569
|
+
-webkit-overflow-scrolling: touch;
|
|
21570
|
+
}
|
|
21571
|
+
|
|
21572
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__slot-content {
|
|
21573
|
+
display: none;
|
|
21574
|
+
}
|
|
21575
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__slot-container, .pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__search-container {
|
|
21576
|
+
position: relative;
|
|
21577
|
+
}
|
|
21578
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content,
|
|
21579
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__slot-container.is-open .pkt-header-service__mobile-menu, .pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__search-container.is-open .pkt-header-service__slot-content,
|
|
21580
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu {
|
|
21581
|
+
display: block;
|
|
21582
|
+
position: absolute;
|
|
21583
|
+
top: 100%;
|
|
21584
|
+
left: 0;
|
|
21585
|
+
min-width: 19rem;
|
|
21586
|
+
width: fit-content;
|
|
21587
|
+
max-width: 100%;
|
|
21588
|
+
right: auto;
|
|
21589
|
+
border: 2px solid var(--pkt-color-border-subtle);
|
|
21590
|
+
}
|
|
21591
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__slot-container.is-open .pkt-header-service__slot-content.align-right,
|
|
21592
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__slot-container.is-open .pkt-header-service__mobile-menu.align-right, .pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__search-container.is-open .pkt-header-service__slot-content.align-right,
|
|
21593
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__search-container.is-open .pkt-header-service__mobile-menu.align-right {
|
|
21594
|
+
left: auto;
|
|
21595
|
+
right: 0;
|
|
21596
|
+
}
|
|
21597
|
+
.pkt-header-service.pkt-header-service--tablet:not(.pkt-header-service--mobile) .pkt-header-service__search-input {
|
|
21598
|
+
padding: 1rem;
|
|
21599
|
+
}
|
|
21600
|
+
|
|
21601
|
+
/*
|
|
21602
|
+
* Header User Menu component
|
|
21603
|
+
*/
|
|
21604
|
+
.pkt-header-service__user-menu::after {
|
|
21605
|
+
content: "";
|
|
21606
|
+
position: absolute;
|
|
21607
|
+
bottom: 0;
|
|
21608
|
+
left: 0;
|
|
21609
|
+
right: 0;
|
|
21610
|
+
height: 1.25rem;
|
|
21611
|
+
pointer-events: none;
|
|
21612
|
+
background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.06));
|
|
21613
|
+
transform: translateY(100%);
|
|
21614
|
+
}
|
|
21615
|
+
|
|
21616
|
+
.pkt-user-menu,
|
|
21617
|
+
.pkt-header-service__slot-menu {
|
|
21618
|
+
background-color: var(--pkt-color-background-default);
|
|
21619
|
+
border: 2px solid var(--pkt-color-border-subtle);
|
|
21620
|
+
position: relative;
|
|
21621
|
+
display: flex;
|
|
21622
|
+
flex-direction: column;
|
|
21623
|
+
gap: 1rem;
|
|
21624
|
+
}
|
|
21625
|
+
.pkt-user-menu .pkt-header-service__slot-list,
|
|
21626
|
+
.pkt-header-service__slot-menu .pkt-header-service__slot-list {
|
|
21627
|
+
margin: 2rem;
|
|
21628
|
+
list-style: none;
|
|
21629
|
+
display: flex;
|
|
21630
|
+
flex-direction: column;
|
|
21631
|
+
gap: 2rem;
|
|
21632
|
+
padding: 0;
|
|
21633
|
+
}
|
|
21634
|
+
.pkt-user-menu__list,
|
|
21635
|
+
.pkt-header-service__slot-menu__list {
|
|
21636
|
+
display: flex;
|
|
21637
|
+
flex-direction: column;
|
|
21638
|
+
list-style: none;
|
|
21639
|
+
margin: 0;
|
|
21640
|
+
padding: 0;
|
|
21641
|
+
}
|
|
21642
|
+
.pkt-user-menu__sublist,
|
|
21643
|
+
.pkt-header-service__slot-menu__sublist {
|
|
21644
|
+
display: flex;
|
|
21645
|
+
flex-direction: column;
|
|
21646
|
+
list-style: none;
|
|
21647
|
+
margin: 0;
|
|
21648
|
+
padding: 0;
|
|
21649
|
+
gap: 1.5rem;
|
|
21650
|
+
}
|
|
21651
|
+
.pkt-user-menu__item,
|
|
21652
|
+
.pkt-header-service__slot-menu__item {
|
|
21653
|
+
display: block;
|
|
21654
|
+
padding: 1.5rem 2rem;
|
|
21655
|
+
}
|
|
21656
|
+
.pkt-user-menu__item:nth-child(odd),
|
|
21657
|
+
.pkt-header-service__slot-menu__item:nth-child(odd) {
|
|
21658
|
+
background-color: var(--pkt-color-background-subtle);
|
|
21659
|
+
}
|
|
21660
|
+
[data-mode=dark] .pkt-user-menu__item:not(:last-child),
|
|
21661
|
+
[data-mode=dark] .pkt-header-service__slot-menu__item:not(:last-child) {
|
|
21662
|
+
border-bottom: 1px solid var(--pkt-color-border-gray);
|
|
21663
|
+
}
|
|
21664
|
+
|
|
21665
|
+
.pkt-user-menu__subitem,
|
|
21666
|
+
.pkt-header-service__slot-menu__subitem {
|
|
21667
|
+
display: block;
|
|
21668
|
+
}
|
|
21669
|
+
.pkt-user-menu__subitem:nth-child(odd),
|
|
21670
|
+
.pkt-header-service__slot-menu__subitem:nth-child(odd) {
|
|
21671
|
+
background-color: transparent;
|
|
21672
|
+
}
|
|
21673
|
+
.pkt-user-menu__label,
|
|
21674
|
+
.pkt-header-service__slot-menu__label {
|
|
21675
|
+
letter-spacing: -0.2px;
|
|
21676
|
+
font-weight: 500;
|
|
21677
|
+
font-size: 0.875rem;
|
|
21678
|
+
line-height: 1.375rem;
|
|
21679
|
+
color: var(--pkt-color-text-placeholder);
|
|
21680
|
+
margin-bottom: 0.5rem;
|
|
21681
|
+
}
|
|
21682
|
+
.pkt-user-menu__name,
|
|
21683
|
+
.pkt-header-service__slot-menu__name {
|
|
21684
|
+
letter-spacing: -0.2px;
|
|
21685
|
+
font-weight: 500;
|
|
21686
|
+
font-size: 1.125rem;
|
|
21687
|
+
line-height: 1.75rem;
|
|
21688
|
+
}
|
|
21689
|
+
.pkt-user-menu__description,
|
|
21690
|
+
.pkt-header-service__slot-menu__description {
|
|
21691
|
+
letter-spacing: -0.2px;
|
|
21692
|
+
font-weight: 300;
|
|
21693
|
+
font-size: 1rem;
|
|
21694
|
+
line-height: 1.5rem;
|
|
21695
|
+
}
|
|
21696
|
+
.pkt-user-menu__action,
|
|
21697
|
+
.pkt-header-service__slot-menu__action {
|
|
21698
|
+
margin-top: 1rem;
|
|
21699
|
+
}
|
|
21700
|
+
.pkt-user-menu__button,
|
|
21701
|
+
.pkt-header-service__slot-menu__button {
|
|
21702
|
+
font-weight: normal;
|
|
21703
|
+
}
|
|
21704
|
+
.pkt-user-menu__button:hover,
|
|
21705
|
+
.pkt-header-service__slot-menu__button:hover {
|
|
21706
|
+
background-color: none;
|
|
21707
|
+
}
|
|
21708
|
+
.pkt-user-menu__link,
|
|
21709
|
+
.pkt-header-service__slot-menu__link {
|
|
21710
|
+
letter-spacing: -0.2px;
|
|
21711
|
+
font-weight: 300;
|
|
21712
|
+
font-size: 1.125rem;
|
|
21713
|
+
line-height: 1.75rem;
|
|
21714
|
+
width: 100%;
|
|
21715
|
+
display: flex;
|
|
21716
|
+
align-items: center;
|
|
21717
|
+
text-decoration: none;
|
|
21718
|
+
transition: color 0.2s ease;
|
|
21719
|
+
}
|
|
21720
|
+
.pkt-user-menu__link .pkt-link span,
|
|
21721
|
+
.pkt-header-service__slot-menu__link .pkt-link span {
|
|
21722
|
+
align-self: anchor-center;
|
|
21723
|
+
}
|
|
21724
|
+
.pkt-user-menu__link .pkt-link__icon,
|
|
21725
|
+
.pkt-header-service__slot-menu__link .pkt-link__icon {
|
|
21726
|
+
margin-right: 0.5rem;
|
|
21727
|
+
align-self: baseline;
|
|
21728
|
+
}
|
|
21729
|
+
|
|
20996
21730
|
pkt-heading {
|
|
20997
21731
|
display: block;
|
|
20998
21732
|
}
|