@postnord/pn-marketweb-components 2.0.89 → 2.0.91
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/cjs/loader.cjs.js +1 -1
- package/cjs/pn-market-web-components.cjs.js +1 -1
- package/cjs/pn-marketweb-siteheader.cjs.entry.js +72 -50
- package/cjs/pn-teaser-card.cjs.entry.js +26 -0
- package/collection/collection-manifest.json +1 -0
- package/collection/components/cards/pn-teaser-card/pn-teaser-card.css +123 -0
- package/collection/components/cards/pn-teaser-card/pn-teaser-card.js +105 -0
- package/collection/components/cards/pn-teaser-card/pn-teaser-card.stories.js +128 -0
- package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.css +131 -0
- package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.js +91 -68
- package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.stories.js +91 -71
- package/custom-elements/index.d.ts +6 -0
- package/custom-elements/index.js +158 -114
- package/esm/loader.js +1 -1
- package/esm/pn-market-web-components.js +1 -1
- package/esm/pn-marketweb-siteheader.entry.js +72 -50
- package/esm/pn-teaser-card.entry.js +22 -0
- package/esm-es5/loader.js +1 -1
- package/esm-es5/pn-market-web-components.js +1 -1
- package/esm-es5/pn-marketweb-siteheader.entry.js +1 -1
- package/esm-es5/pn-teaser-card.entry.js +1 -0
- package/package.json +1 -1
- package/pn-market-web-components/p-1e7c4c50.system.entry.js +1 -0
- package/pn-market-web-components/p-2e633fdb.entry.js +1 -0
- package/pn-market-web-components/p-67887512.system.js +1 -1
- package/pn-market-web-components/p-ab60d37d.entry.js +1 -0
- package/pn-market-web-components/p-f15cac52.system.entry.js +1 -0
- package/pn-market-web-components/pn-market-web-components.esm.js +1 -1
- package/types/components/cards/pn-teaser-card/pn-teaser-card.d.ts +8 -0
- package/types/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.d.ts +4 -4
- package/types/components.d.ts +21 -0
- package/umd/pn-marketweb-salesforce.js +2 -2
- package/pn-market-web-components/p-5482774f.entry.js +0 -1
- package/pn-market-web-components/p-6d08e5cc.system.entry.js +0 -1
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
pn-teaser-card {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
}
|
|
6
|
+
pn-teaser-card .pn-teaser-card__container {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
justify-content: flex-start;
|
|
10
|
+
border-radius: 2.4rem;
|
|
11
|
+
}
|
|
12
|
+
pn-teaser-card .pn-teaser-card__container__image__container {
|
|
13
|
+
width: 100%;
|
|
14
|
+
position: relative;
|
|
15
|
+
}
|
|
16
|
+
pn-teaser-card .pn-teaser-card__container__image__container > [slot=illustration] {
|
|
17
|
+
width: 100%;
|
|
18
|
+
height: auto;
|
|
19
|
+
border-top-left-radius: 2.4rem;
|
|
20
|
+
border-top-right-radius: 2.4rem;
|
|
21
|
+
clip-path: ellipse(100% 90% at 50% 0%);
|
|
22
|
+
aspect-ratio: 16/9;
|
|
23
|
+
}
|
|
24
|
+
pn-teaser-card .pn-teaser-card__container__content {
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
justify-content: space-between;
|
|
28
|
+
flex: 1 1 100%;
|
|
29
|
+
gap: 32px;
|
|
30
|
+
padding: 2.4rem 2.4rem;
|
|
31
|
+
padding-top: 0;
|
|
32
|
+
}
|
|
33
|
+
pn-teaser-card .pn-teaser-card__container__content__text__container > h1 {
|
|
34
|
+
font-weight: 700;
|
|
35
|
+
font-size: 2.4rem;
|
|
36
|
+
line-height: 2.64rem;
|
|
37
|
+
}
|
|
38
|
+
pn-teaser-card .pn-teaser-card__container__content__text__container > p {
|
|
39
|
+
padding-top: 1.6rem;
|
|
40
|
+
font-weight: 400;
|
|
41
|
+
font-size: 1.6rem;
|
|
42
|
+
line-height: 2.24rem;
|
|
43
|
+
}
|
|
44
|
+
pn-teaser-card .pn-teaser-card__container__content__cta > pn-button {
|
|
45
|
+
align-self: flex-end;
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
pn-teaser-card[data-card-color=coral] > .pn-teaser-card__container {
|
|
50
|
+
background-color: #FDEFEE;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
pn-teaser-card[data-card-color=green] > .pn-teaser-card__container {
|
|
54
|
+
background-color: #DCF6E7;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@media screen and (min-width: 1200px) {
|
|
58
|
+
.halfwidth pn-teaser-card .pn-teaser-card__container__content {
|
|
59
|
+
padding: 0 5.6rem 5.6rem;
|
|
60
|
+
}
|
|
61
|
+
.halfwidth pn-teaser-card .pn-teaser-card__container__content__text__container > h1 {
|
|
62
|
+
font-weight: 700;
|
|
63
|
+
font-size: 3.2rem;
|
|
64
|
+
line-height: 3.52rem;
|
|
65
|
+
}
|
|
66
|
+
.halfwidth pn-teaser-card .pn-teaser-card__container__content__text__container > p {
|
|
67
|
+
font-weight: 400;
|
|
68
|
+
font-size: 2rem;
|
|
69
|
+
line-height: 2.8rem;
|
|
70
|
+
}
|
|
71
|
+
.halfwidth pn-teaser-card .pn-teaser-card__container__content__cta > pn-button {
|
|
72
|
+
width: fit-content;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
@media screen and (min-width: 768px) {
|
|
76
|
+
.fullwidth pn-teaser-card {
|
|
77
|
+
min-height: 350px;
|
|
78
|
+
}
|
|
79
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container {
|
|
80
|
+
flex-direction: row;
|
|
81
|
+
}
|
|
82
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container__content {
|
|
83
|
+
align-self: center;
|
|
84
|
+
gap: 2.4rem;
|
|
85
|
+
padding-top: 2.4rem;
|
|
86
|
+
}
|
|
87
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container__image__container > [slot=illustration] {
|
|
88
|
+
height: 100%;
|
|
89
|
+
border-top-left-radius: 2.4rem;
|
|
90
|
+
border-bottom-left-radius: 2.4rem;
|
|
91
|
+
clip-path: ellipse(100% 100% at 0% 50%);
|
|
92
|
+
object-fit: cover;
|
|
93
|
+
}
|
|
94
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container__content__cta > pn-button {
|
|
95
|
+
width: fit-content;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
@media screen and (min-width: 1200px) {
|
|
99
|
+
.fullwidth pn-teaser-card {
|
|
100
|
+
min-height: 450px;
|
|
101
|
+
}
|
|
102
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container__content {
|
|
103
|
+
padding: 3.6rem;
|
|
104
|
+
}
|
|
105
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container__content__text__container > h1 {
|
|
106
|
+
font-weight: 700;
|
|
107
|
+
font-size: 4.8rem;
|
|
108
|
+
line-height: 5.28rem;
|
|
109
|
+
}
|
|
110
|
+
.fullwidth pn-teaser-card .pn-teaser-card__container__content__text__container > p {
|
|
111
|
+
font-size: 2rem;
|
|
112
|
+
line-height: 2.8rem;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
@media screen and (min-width: 768px) {
|
|
116
|
+
.fullwidth pn-teaser-card[data-card-alignment=right] .pn-teaser-card__container {
|
|
117
|
+
flex-direction: row-reverse;
|
|
118
|
+
}
|
|
119
|
+
.fullwidth pn-teaser-card[data-card-alignment=right] .pn-teaser-card__container__image__container > [slot=illustration] {
|
|
120
|
+
border-bottom-right-radius: 2.4rem;
|
|
121
|
+
clip-path: ellipse(100% 100% at 100% 50%);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Component, Element, h, Host, Prop, } from '@stencil/core';
|
|
2
|
+
export class PnTeaserCard {
|
|
3
|
+
constructor() {
|
|
4
|
+
//props
|
|
5
|
+
this.text = 'some short text describing whatever';
|
|
6
|
+
this.heading = 'some heading';
|
|
7
|
+
this.dataCardColor = 'coral';
|
|
8
|
+
this.dataCardAlignment = 'left';
|
|
9
|
+
}
|
|
10
|
+
//render
|
|
11
|
+
render() {
|
|
12
|
+
return (h(Host, null,
|
|
13
|
+
h("div", { class: "pn-teaser-card__container" },
|
|
14
|
+
h("div", { class: "pn-teaser-card__container__image__container" },
|
|
15
|
+
h("slot", { name: "illustration" })),
|
|
16
|
+
h("div", { class: "pn-teaser-card__container__content" },
|
|
17
|
+
h("div", { class: "pn-teaser-card__container__content__text__container" },
|
|
18
|
+
h("h1", null, this.heading),
|
|
19
|
+
h("p", null, this.text)),
|
|
20
|
+
h("div", { class: "pn-teaser-card__container__content__cta" },
|
|
21
|
+
h("slot", { name: "cta" }))))));
|
|
22
|
+
}
|
|
23
|
+
static get is() { return "pn-teaser-card"; }
|
|
24
|
+
static get originalStyleUrls() { return {
|
|
25
|
+
"$": ["pn-teaser-card.scss"]
|
|
26
|
+
}; }
|
|
27
|
+
static get styleUrls() { return {
|
|
28
|
+
"$": ["pn-teaser-card.css"]
|
|
29
|
+
}; }
|
|
30
|
+
static get properties() { return {
|
|
31
|
+
"text": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"mutable": false,
|
|
34
|
+
"complexType": {
|
|
35
|
+
"original": "string",
|
|
36
|
+
"resolved": "string",
|
|
37
|
+
"references": {}
|
|
38
|
+
},
|
|
39
|
+
"required": false,
|
|
40
|
+
"optional": false,
|
|
41
|
+
"docs": {
|
|
42
|
+
"tags": [],
|
|
43
|
+
"text": ""
|
|
44
|
+
},
|
|
45
|
+
"attribute": "text",
|
|
46
|
+
"reflect": false,
|
|
47
|
+
"defaultValue": "'some short text describing whatever'"
|
|
48
|
+
},
|
|
49
|
+
"heading": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"mutable": false,
|
|
52
|
+
"complexType": {
|
|
53
|
+
"original": "string",
|
|
54
|
+
"resolved": "string",
|
|
55
|
+
"references": {}
|
|
56
|
+
},
|
|
57
|
+
"required": false,
|
|
58
|
+
"optional": false,
|
|
59
|
+
"docs": {
|
|
60
|
+
"tags": [],
|
|
61
|
+
"text": ""
|
|
62
|
+
},
|
|
63
|
+
"attribute": "heading",
|
|
64
|
+
"reflect": false,
|
|
65
|
+
"defaultValue": "'some heading'"
|
|
66
|
+
},
|
|
67
|
+
"dataCardColor": {
|
|
68
|
+
"type": "string",
|
|
69
|
+
"mutable": false,
|
|
70
|
+
"complexType": {
|
|
71
|
+
"original": "string",
|
|
72
|
+
"resolved": "string",
|
|
73
|
+
"references": {}
|
|
74
|
+
},
|
|
75
|
+
"required": false,
|
|
76
|
+
"optional": false,
|
|
77
|
+
"docs": {
|
|
78
|
+
"tags": [],
|
|
79
|
+
"text": ""
|
|
80
|
+
},
|
|
81
|
+
"attribute": "data-card-color",
|
|
82
|
+
"reflect": true,
|
|
83
|
+
"defaultValue": "'coral'"
|
|
84
|
+
},
|
|
85
|
+
"dataCardAlignment": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"mutable": false,
|
|
88
|
+
"complexType": {
|
|
89
|
+
"original": "string",
|
|
90
|
+
"resolved": "string",
|
|
91
|
+
"references": {}
|
|
92
|
+
},
|
|
93
|
+
"required": false,
|
|
94
|
+
"optional": false,
|
|
95
|
+
"docs": {
|
|
96
|
+
"tags": [],
|
|
97
|
+
"text": ""
|
|
98
|
+
},
|
|
99
|
+
"attribute": "data-card-alignment",
|
|
100
|
+
"reflect": true,
|
|
101
|
+
"defaultValue": "'left'"
|
|
102
|
+
}
|
|
103
|
+
}; }
|
|
104
|
+
static get elementRef() { return "hostElement"; }
|
|
105
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import readme from './readme.md';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: 'Cards/Teaser Card',
|
|
5
|
+
parameters: {
|
|
6
|
+
notes: readme,
|
|
7
|
+
layout: 'centered',
|
|
8
|
+
},
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const TemplateOneThird = ({ cards, ...args }) => {
|
|
12
|
+
return `
|
|
13
|
+
<div style="width:100%; display:flex; flex-direction:row; gap:16px;">
|
|
14
|
+
<div class="onethirdwidth" style="width:33%; padding:16px 0;">
|
|
15
|
+
<pn-teaser-card heading="${cards[0].heading}" text="${cards[0].text}" data-card-color="coral">
|
|
16
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/1.-skicka/inspecting-containers-in-a-shipping-terminal-1.jpg" />
|
|
17
|
+
<pn-button slot="cta">${cards[0].buttonLabel}</button>
|
|
18
|
+
</pn-teaser-card>
|
|
19
|
+
</div>
|
|
20
|
+
<div class="onethirdwidth" style="width:33%; padding:16px 0;">
|
|
21
|
+
<pn-teaser-card heading="${cards[1].heading}" text="${cards[1].text}" data-card-color="green">
|
|
22
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/images-new/start-page/kvinna-hamtar-paket-ur-paketbox-3840x2140.jpg" />
|
|
23
|
+
<pn-button slot="cta">${cards[1].buttonLabel}</button>
|
|
24
|
+
</pn-teaser-card>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="onethirdwidth" style="width:33%; padding:16px 0;">
|
|
27
|
+
<pn-teaser-card heading="${cards[2].heading}" text="${cards[2].text}" data-card-color="coral">
|
|
28
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/images-new/start-page/kvinna-hamtar-paket-ur-paketbox-3840x2140.jpg" />
|
|
29
|
+
<pn-button slot="cta">${cards[2].buttonLabel}</button>
|
|
30
|
+
</pn-teaser-card>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
`;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const TemplateOneHalf = ({ cards, ...args }) => {
|
|
37
|
+
return `
|
|
38
|
+
<div style="width:100%; display:flex; flex-direction:row; gap:16px;">
|
|
39
|
+
<div class="halfwidth" style="width:50%; padding:16px 0;">
|
|
40
|
+
<pn-teaser-card heading="${cards[0].heading}" text="${cards[0].text}" data-card-color="green">
|
|
41
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/1.-skicka/inspecting-containers-in-a-shipping-terminal-1.jpg" />
|
|
42
|
+
<pn-button slot="cta">${cards[0].buttonLabel}</button>
|
|
43
|
+
</pn-teaser-card>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="halfwidth" style="width:50%; padding:16px 0;">
|
|
46
|
+
<pn-teaser-card heading="${cards[1].heading}" text="${cards[1].text}" data-card-color="coral">
|
|
47
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/1.-skicka/colleagues-in-meeting.jpg" />
|
|
48
|
+
<pn-button slot="cta">${cards[1].buttonLabel}</button>
|
|
49
|
+
</pn-teaser-card>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
`;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
const TemplateFullWidth = ({ cards, ...args }) => {
|
|
56
|
+
return `
|
|
57
|
+
<div style="width:100%; display:flex; flex-direction:row; gap:16px;">
|
|
58
|
+
<div class="fullwidth" style="width:100%; padding:16px 0;">
|
|
59
|
+
<pn-teaser-card heading="${cards[0].heading}" text="${cards[0].text}" data-card-color="green" data-card-alignment="left">
|
|
60
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/1.-skicka/inspecting-containers-in-a-shipping-terminal-1.jpg" />
|
|
61
|
+
<pn-button slot="cta">${cards[0].buttonLabel}</button>
|
|
62
|
+
</pn-teaser-card>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
<div style="width:100%; display:flex; flex-direction:row; gap:16px;">
|
|
67
|
+
<div class="fullwidth" style="width:100%; padding:16px 0;">
|
|
68
|
+
<pn-teaser-card heading="${cards[1].heading}" text="${cards[1].text}" data-card-color="coral" data-card-alignment="right">
|
|
69
|
+
<img slot="illustration" src="https://www.postnord.se/siteassets/1.-skicka/inspecting-containers-in-a-shipping-terminal-1.jpg" />
|
|
70
|
+
<pn-button slot="cta">${cards[1].buttonLabel}</button>
|
|
71
|
+
</pn-teaser-card>
|
|
72
|
+
</div>
|
|
73
|
+
</div>`;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const OneThird = TemplateOneThird.bind({});
|
|
77
|
+
export const Half = TemplateOneHalf.bind({});
|
|
78
|
+
export const FullWidth = TemplateFullWidth.bind({});
|
|
79
|
+
|
|
80
|
+
OneThird.args = {
|
|
81
|
+
cards: [
|
|
82
|
+
{
|
|
83
|
+
heading: 'E-commerce & Logistics',
|
|
84
|
+
text: 'Pellentesque lectus orci, ullamcorper a quam in, malesuada efficitur nulla. Duis rhoncus suscipit tortor, at volutpat magna posuere scelerisque. Fusce vitae sem tristique',
|
|
85
|
+
buttonLabel: 'Some button',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
heading: 'Lorem ipsum dolor sit amet',
|
|
89
|
+
text: 'Pellentesque lectus orci, ullamcorper a quam in, malesuada efficitur nulla. Duis rhoncus suscipit tortor, at volutpat magna posuere scelerisque. Fusce vitae sem tristique Pellentesque lectus orci',
|
|
90
|
+
buttonLabel: 'Some button',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
heading: 'Communications',
|
|
94
|
+
text: 'Pellentesque lectus orci, ullamcorper a quam in eargareg aergarea aerg aergaeg a aer gaerg ',
|
|
95
|
+
buttonLabel: 'Some button',
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
Half.args = {
|
|
101
|
+
cards: [
|
|
102
|
+
{
|
|
103
|
+
heading: 'Communications',
|
|
104
|
+
text: 'Pellentesque lectus orci, ullamcorper a quam in eargareg aergarea aerg aergaeg a aer gaerg ',
|
|
105
|
+
buttonLabel: 'Some button',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
heading: 'Green by PostNord -Sustainable logistics',
|
|
109
|
+
text: 'PostNord is a leading provider of parcel and logistics services to, from, and within the Nordic region. We ensure that our business and non-business customers are able to communicate with their recipients reliably, efficiently and on time – regardless of whether this involves a global logistics solution, an ad campaign or birthday greetings.',
|
|
110
|
+
buttonLabel: 'Learn more our customer value proposition',
|
|
111
|
+
},
|
|
112
|
+
],
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
FullWidth.args = {
|
|
116
|
+
cards: [
|
|
117
|
+
{
|
|
118
|
+
heading: 'Green by PostNord -Sustainable logistics',
|
|
119
|
+
text: 'Pellentesque lectus orci, ullamcorper a quam in eargareg aergarea aerg aergaeg a aer gaerg ',
|
|
120
|
+
buttonLabel: 'More about our sustainability work',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
heading: 'Communications',
|
|
124
|
+
text: 'PostNord is a leading provider of parcel and logistics services to, from, and within the Nordic region. We ensure that our business and non-business customers are able to communicate with their recipients reliably, efficiently and on time – regardless of whether this involves a global logistics solution, an ad campaign or birthday greetings.',
|
|
125
|
+
buttonLabel: 'Learn more our customer value proposition',
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
};
|
package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.css
CHANGED
|
@@ -210,4 +210,135 @@ pn-marketweb-siteheader pn-nav-dropdown:not(.hydrated) .nav-dropdown-content-con
|
|
|
210
210
|
}
|
|
211
211
|
.siteheader-menu-footer > * {
|
|
212
212
|
margin: 1.6rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header {
|
|
216
|
+
background-color: #0D234B;
|
|
217
|
+
}
|
|
218
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-row:not(:last-child) {
|
|
219
|
+
border-bottom: 0.1rem solid #0D234B;
|
|
220
|
+
}
|
|
221
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topleft pn-site-selector .pn-nav-dropdown-label {
|
|
222
|
+
color: #FFFFFF;
|
|
223
|
+
}
|
|
224
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topleft pn-site-selector .pn-nav-dropdown-label pn-icon svg > path {
|
|
225
|
+
fill: #FFFFFF;
|
|
226
|
+
}
|
|
227
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topleft button.pn-nav-dropdown-label:hover {
|
|
228
|
+
background-color: #005D92;
|
|
229
|
+
}
|
|
230
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topleft button.pn-nav-dropdown-label:active {
|
|
231
|
+
background-color: #00A0D6;
|
|
232
|
+
}
|
|
233
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topleft button.pn-nav-dropdown-label:focus {
|
|
234
|
+
background-color: #00A0D6;
|
|
235
|
+
}
|
|
236
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-logocontainer {
|
|
237
|
+
background-color: #0D234B;
|
|
238
|
+
}
|
|
239
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-logocontainer svg.siteheader-logo > path {
|
|
240
|
+
fill: #FFFFFF;
|
|
241
|
+
}
|
|
242
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright * {
|
|
243
|
+
color: #FFFFFF;
|
|
244
|
+
}
|
|
245
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright .siteheader-logindialog svg > path {
|
|
246
|
+
fill: #FFFFFF;
|
|
247
|
+
}
|
|
248
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright pn-language-selector pn-icon svg > path {
|
|
249
|
+
fill: #FFFFFF;
|
|
250
|
+
}
|
|
251
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright button:hover {
|
|
252
|
+
background-color: #005D92;
|
|
253
|
+
}
|
|
254
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright button:active {
|
|
255
|
+
background-color: #00A0D6;
|
|
256
|
+
}
|
|
257
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright button:focus {
|
|
258
|
+
background-color: #00A0D6;
|
|
259
|
+
}
|
|
260
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright [slot=toprightend] {
|
|
261
|
+
align-self: center;
|
|
262
|
+
margin-left: 1rem;
|
|
263
|
+
}
|
|
264
|
+
@media screen and (max-width: 48em) {
|
|
265
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-topright [slot=toprightend] {
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu .mainnav-toggle button {
|
|
270
|
+
background-color: transparent;
|
|
271
|
+
}
|
|
272
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu .first-level_icon svg > path {
|
|
273
|
+
fill: #FFFFFF;
|
|
274
|
+
}
|
|
275
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-search form pn-search-field input {
|
|
276
|
+
background-color: #0D234B;
|
|
277
|
+
color: #FFFFFF;
|
|
278
|
+
border: 0.1rem solid #FFFFFF;
|
|
279
|
+
}
|
|
280
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-search form pn-search-field input:hover {
|
|
281
|
+
border-color: #FFFFFF;
|
|
282
|
+
}
|
|
283
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-search form pn-search-field input::placeholder {
|
|
284
|
+
color: #FFFFFF;
|
|
285
|
+
}
|
|
286
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav {
|
|
287
|
+
background-color: #0D234B;
|
|
288
|
+
}
|
|
289
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav a {
|
|
290
|
+
color: #FFFFFF;
|
|
291
|
+
}
|
|
292
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level[data-level="1"] pn-mainnav-list > pn-mainnav-link a,
|
|
293
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level[data-level="1"] pn-mainnav-list > pn-mainnav-link button {
|
|
294
|
+
background-color: #0D234B;
|
|
295
|
+
color: #FFFFFF;
|
|
296
|
+
border-bottom: 0.1rem solid rgba(0, 93, 146, 0.5);
|
|
297
|
+
}
|
|
298
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level:not([data-level="1"]) {
|
|
299
|
+
background-color: #0D234B;
|
|
300
|
+
}
|
|
301
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level:not([data-level="1"]) pn-mainnav-list {
|
|
302
|
+
color: #FFFFFF;
|
|
303
|
+
}
|
|
304
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level:not([data-level="1"]) pn-mainnav-list a:hover {
|
|
305
|
+
background-color: #00A0D6;
|
|
306
|
+
}
|
|
307
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level [slot=top].siteheader-menu-top pn-marketweb-siteheader-search {
|
|
308
|
+
background-color: #0D234B;
|
|
309
|
+
}
|
|
310
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level [slot=top].siteheader-menu-top pn-marketweb-siteheader-search .button-container {
|
|
311
|
+
border-top: 1px solid #FFFFFF;
|
|
312
|
+
border-bottom: 1px solid #FFFFFF;
|
|
313
|
+
border-right: 1px solid white;
|
|
314
|
+
border-top-right-radius: 50%;
|
|
315
|
+
border-bottom-right-radius: 50%;
|
|
316
|
+
}
|
|
317
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .mainnav pn-mainnav-level [slot=top].siteheader-menu-top pn-marketweb-siteheader-search .button-container button.clear {
|
|
318
|
+
border: 2px solid #FFFFFF;
|
|
319
|
+
border-radius: 50%;
|
|
320
|
+
padding: 0.5rem;
|
|
321
|
+
}
|
|
322
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header [data-level="1"] pn-mainnav-link pn-icon.first-level_arrow svg > path {
|
|
323
|
+
fill: #FFFFFF;
|
|
324
|
+
}
|
|
325
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu-footer button {
|
|
326
|
+
color: #FFFFFF;
|
|
327
|
+
}
|
|
328
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu-footer button:hover {
|
|
329
|
+
background-color: #005D92;
|
|
330
|
+
}
|
|
331
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu-footer button:active {
|
|
332
|
+
background-color: #00A0D6;
|
|
333
|
+
}
|
|
334
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu-footer button:focus {
|
|
335
|
+
background-color: #00A0D6;
|
|
336
|
+
}
|
|
337
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu-footer button svg > path {
|
|
338
|
+
fill: #FFFFFF;
|
|
339
|
+
}
|
|
340
|
+
@media screen and (min-width: 48em) {
|
|
341
|
+
header[data-header-theme=dotcom] > pn-marketweb-siteheader > header .siteheader-menu-footer [slot=menu-footer-cta] {
|
|
342
|
+
display: none;
|
|
343
|
+
}
|
|
213
344
|
}
|