@eeacms/volto-cca-policy 0.2.98 → 0.2.100

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.
@@ -1,3 +1,8 @@
1
+ @type: 'extra';
2
+ @element: 'custom';
3
+
4
+ @import (multiple, reference, optional) '../../theme.config';
5
+
1
6
  // Organisation Cards Listing
2
7
  div.organisationCards {
3
8
  div.card.u-card {
@@ -46,23 +51,31 @@ div.indicatorCards {
46
51
  }
47
52
 
48
53
  // Event Cards Listing
49
- div.eventCards {
50
- div.simple-listing-item {
51
- border-bottom: 1px solid #ddd !important;
54
+ .eventCards {
55
+ .u-item.listing-item.simple-listing-item {
56
+ border-bottom: 1px solid #ddd;
52
57
  }
53
58
 
54
- a {
55
- color: #006bb8 !important;
59
+ .u-item.listing-item a {
60
+ color: @linkColor !important;
56
61
  }
57
62
 
58
- div.start-date {
59
- max-width: 80px;
60
-
63
+ .start-date {
61
64
  .day {
62
- border-bottom: 3px solid #ef7000;
63
- color: #ef7000;
65
+ position: relative;
66
+ color: @ccaOrangeColor;
64
67
  font-size: 2.5em;
65
68
  font-weight: 900;
69
+
70
+ &:after {
71
+ position: absolute;
72
+ bottom: -2px;
73
+ left: 0;
74
+ width: 80px;
75
+ height: 3px;
76
+ background-color: @ccaOrangeColor;
77
+ content: '';
78
+ }
66
79
  }
67
80
 
68
81
  .date {
@@ -71,15 +84,14 @@ div.eventCards {
71
84
  }
72
85
  }
73
86
 
74
- div.bottom-info {
87
+ .bottom-info {
75
88
  display: flex;
76
89
  flex-wrap: wrap;
77
90
  align-items: center;
78
91
  justify-content: flex-start;
92
+ gap: 1em;
79
93
 
80
94
  .sep {
81
- position: relative;
82
- top: -2px;
83
95
  color: #ddd;
84
96
  }
85
97
 
@@ -89,15 +101,33 @@ div.eventCards {
89
101
  justify-content: flex-start;
90
102
  }
91
103
 
92
- div.subjects {
104
+ .subjects {
93
105
  .label {
94
- margin-right: 0.3em;
95
- margin-bottom: 0.3em;
106
+ padding: 5px 7px;
107
+ margin-right: 0.5em;
96
108
  background: #eee;
97
109
  color: #3d5265;
98
110
  }
99
111
  }
100
112
  }
113
+
114
+ .u-item.listing-item {
115
+ .ui.image.eea-logo {
116
+ width: 100px;
117
+ max-width: none;
118
+ height: 45px;
119
+ object-fit: initial;
120
+ object-position: unset;
121
+ }
122
+
123
+ .event-organisation {
124
+ display: flex;
125
+ align-items: center;
126
+ margin: 1em 0;
127
+ gap: 0.5em;
128
+ // flex-direction: column;
129
+ }
130
+ }
101
131
  }
102
132
 
103
133
  .dropdown.listing {
@@ -56,7 +56,10 @@ const messages = defineMessages({
56
56
  id: 'Costs and benefits',
57
57
  defaultMessage: 'Costs and benefits',
58
58
  },
59
- Relevance: { id: 'Relevance', defaultMessage: 'Relevance' },
59
+ 'Policy context of the adaptation measure': {
60
+ id: 'Policy context of the adaptation measure',
61
+ defaultMessage: 'Policy context of the adaptation measure',
62
+ },
60
63
  'Legal Aspects': { id: 'Legal aspects', defaultMessage: 'Legal aspects' },
61
64
  'Implementation Time': {
62
65
  id: 'Implementation time',
@@ -88,7 +91,7 @@ const messages = defineMessages({
88
91
  const PrimaryPhoto = ({ content }) => {
89
92
  const { primary_photo, primary_photo_copyright, title } = content;
90
93
 
91
- return primary_photo !== null ? (
94
+ return primary_photo ? (
92
95
  <div className="case-studies-review-image-wrapper">
93
96
  <Image src={primary_photo?.scales?.mini?.download} alt={title} />
94
97
  <p>{primary_photo_copyright}</p>
@@ -111,6 +114,13 @@ const dataDisplay = [
111
114
  title: 'Policy and legal background',
112
115
  group: 1,
113
116
  },
117
+ {
118
+ type: 'RelevanceItems',
119
+ field: 'relevance',
120
+ section: 'relevance_anchor',
121
+ title: 'Policy context of the adaptation measure',
122
+ group: 1,
123
+ },
114
124
  {
115
125
  type: 'HTMLField',
116
126
  field: 'objectives',
@@ -132,14 +142,6 @@ const dataDisplay = [
132
142
  title: 'Solutions',
133
143
  group: 1,
134
144
  },
135
- {
136
- type: 'RelevanceItems',
137
- field: 'relevance',
138
- section: 'relevance_anchor',
139
- title: 'Importance and Relevance of Adaptation',
140
- contentTitle: 'Relevance', // override the title in content section
141
- group: 1,
142
- },
143
145
  {
144
146
  type: 'HTMLField',
145
147
  field: 'stakeholder_participation',
@@ -212,21 +214,10 @@ const groups = {
212
214
  3: 'Reference Information',
213
215
  };
214
216
 
215
- const findSection = (title) => {
216
- const found = dataDisplay.filter((item) => item.title === title);
217
- if (found.length > 0) {
218
- return found[0];
219
- }
220
- return null;
221
- };
217
+ export const findSection = (title) =>
218
+ dataDisplay.find((item) => item.title === title) || null;
222
219
 
223
- const sectionID = (title) => {
224
- const found = findSection(title);
225
- if (found === null) {
226
- return title;
227
- }
228
- return found.section;
229
- };
220
+ export const sectionID = (title) => findSection(title)?.section || title;
230
221
 
231
222
  const PhotoGallery = ({ content }) => {
232
223
  const { cca_gallery } = content;
@@ -325,29 +316,20 @@ function CaseStudyView(props) {
325
316
  const { long_description, updating_notes, logo, title } = content;
326
317
 
327
318
  const hasValue = (field) => {
328
- if (!content.hasOwnProperty(field)) {
329
- return false;
330
- }
331
- if (content[field] === undefined || content[field] === null) {
332
- return false;
333
- }
334
- if (Array.isArray(content[field]) && content[field].length === 0) {
335
- return false;
336
- }
319
+ const fieldValue = content[field];
320
+ if (!content.hasOwnProperty(field) || fieldValue == null) return false;
321
+ if (Array.isArray(fieldValue) && fieldValue.length === 0) return false;
337
322
  if (
338
- typeof content[field]?.data === 'string' &&
339
- content[field]?.data.replace('<p></p>', '').length === 0
340
- ) {
323
+ typeof fieldValue?.data === 'string' &&
324
+ fieldValue?.data.replace('<p></p>', '').length === 0
325
+ )
341
326
  return false;
342
- }
327
+
343
328
  return true;
344
329
  };
345
330
 
346
- const usedSections = (group) => {
347
- return dataDisplay.filter(
348
- (data) => data.group === group && hasValue(data.field),
349
- );
350
- };
331
+ const usedSections = (group) =>
332
+ dataDisplay.filter((data) => data.group === group && hasValue(data.field));
351
333
 
352
334
  return (
353
335
  <div className="db-item-view case-study-view">
@@ -397,43 +379,39 @@ function CaseStudyView(props) {
397
379
  <Divider />
398
380
  <div className="adaptation-details">
399
381
  <Grid columns="12">
400
- <Grid.Column mobile={12} tablet={12} computer={4}>
401
- <SectionsMenu
402
- sections={usedSections(1)}
403
- title={groups['1']}
404
- />
405
- </Grid.Column>
406
- <Grid.Column mobile={12} tablet={12} computer={4}>
407
- <SectionsMenu
408
- sections={usedSections(2)}
409
- title={groups['2']}
410
- />
411
- </Grid.Column>
412
- <Grid.Column mobile={12} tablet={12} computer={4}>
413
- <SectionsMenu
414
- sections={usedSections(3)}
415
- title={groups['3']}
416
- />
417
- </Grid.Column>
382
+ {[1, 2, 3].map((groupID) => (
383
+ <Grid.Column
384
+ key={groupID}
385
+ mobile={12}
386
+ tablet={12}
387
+ computer={4}
388
+ >
389
+ <SectionsMenu
390
+ sections={usedSections(groupID)}
391
+ title={groups[groupID]}
392
+ />
393
+ </Grid.Column>
394
+ ))}
418
395
  </Grid>
419
396
  </div>
420
397
  <Divider />
421
- {[1, 2, 3].map(
422
- (groupID, index) =>
423
- usedSections(groupID).length > 0 && (
424
- <Fragment key={index}>
425
- <h2>{intl.formatMessage(messages[groups[groupID]])}</h2>
426
- {usedSections(groupID).map((data, index) => (
427
- <SectionContent
428
- sectionData={data}
429
- content={content}
430
- key={index}
431
- />
432
- ))}
433
- {groupID !== 3 ? <Divider /> : null}
434
- </Fragment>
435
- ),
436
- )}
398
+ {[1, 2, 3].map((groupID) => {
399
+ const sections = usedSections(groupID);
400
+ if (sections.length === 0) return null;
401
+ return (
402
+ <Fragment key={groupID}>
403
+ <h2>{intl.formatMessage(messages[groups[groupID]])}</h2>
404
+ {sections.map((data, index) => (
405
+ <SectionContent
406
+ key={index}
407
+ sectionData={data}
408
+ content={content}
409
+ />
410
+ ))}
411
+ {groupID !== 3 && <Divider />}
412
+ </Fragment>
413
+ );
414
+ })}
437
415
  <PublishedModifiedInfo {...props} />
438
416
  <Divider />
439
417
  <p>
@@ -35,6 +35,9 @@ export const serializeText = (text) => {
35
35
  return isArray(text) ? serializeNodes(text) : text;
36
36
  };
37
37
 
38
+ export const capitalizeFirstLetter = (str) =>
39
+ str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
40
+
38
41
  export const makeContributionsSearchQuery = (props) => {
39
42
  const { id } = props;
40
43
  const organisation = OBSERVATORY_PARTNERS[id];
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.2" viewBox="0 0 350 129" width="350" height="129"><style>.a{fill:#004b7f}.b{fill:#007b6c}</style><path class="a" d="m62.4 95.3c-4.1 0-7.9-0.9-11.5-2.5l4.1-7.5c2.3 1 4.8 1.5 7.4 1.5 11.1 0 20-9.5 20-21.2 0-6.7-3.3-12.4-7.9-16.3l4.4-7.8c1.2 0.9 2.3 1.9 3.4 3 5.3 5.6 8.2 13.1 8.2 21.1 0 16.4-12.6 29.7-28.1 29.7z"/><path class="b" d="m69.9 46.5l-0.2 0.2-0.3-0.1c-0.5-0.3-1-0.5-1.6-0.7q-0.7-0.2-1.5-0.4l-0.2-0.1-0.1-0.3c-2.5-9.5 1.8-24.7 10.1-36 1.6-2.2 3.3-4.1 5-5.8l0.6-0.5 0.1 0.8q0.7 3.6 0.8 7.7c0.1 14.2-5.2 29-12.7 35.2z"/><path class="b" d="m58.6 7.5c6.1 12.6 7.5 28.4 3.3 37.5l-0.1 0.2h-0.3c-0.5 0.1-1.1 0.1-1.7 0.2q-0.7 0.1-1.5 0.4h-0.3l-0.1-0.2c-6.3-7.4-8.8-23-6.1-37 0.6-2.7 1.3-5.3 2.1-7.6l0.3-0.8 0.5 0.7c1.4 1.9 2.7 4.2 3.9 6.6z"/><path class="b" d="m53.3 47.4v0.3l-0.2 0.1q-0.8 0.5-1.5 1-0.7 0.4-1.2 1l-0.2 0.2-0.3-0.1c-8.7-3.8-17.5-16.6-20.9-30.4q-1-4.1-1.3-7.8l-0.1-0.8 0.7 0.3c2.1 1.1 4.2 2.5 6.3 4.1 10.7 8.5 18.6 22 18.7 32.1z"/><path class="b" d="m8.7 33.5l-0.4-0.7h0.8c2.2 0 4.7 0.3 7.3 0.8 13.2 2.5 25.9 11 30.1 20l0.1 0.2-0.1 0.2c-0.4 0.5-0.7 1.1-0.9 1.6q-0.4 0.7-0.7 1.5l-0.1 0.2-0.3 0.1c-9.4 0.7-22.6-6.7-31.5-17.5-1.7-2.1-3.2-4.2-4.3-6.4z"/><path class="b" d="m7.2 65.6c-2.4-1-4.6-2.3-6.6-3.6l-0.6-0.5 0.7-0.3c2-1.1 4.4-2 6.8-2.8 13-3.8 27.9-2.2 35.5 3.9l0.2 0.2v0.3c-0.1 0.6-0.2 1.2-0.2 1.8q0 0.8 0 1.6l0.1 0.3-0.3 0.1c-8.1 5-23 4.6-35.6-1z"/><path class="b" d="m12.7 91.6q-3.9 0.3-7.4-0.1l-0.8-0.1 0.5-0.7c1.4-2 3.1-3.9 5-5.7 10-9.4 24-15 33.4-13.1l0.2 0.1 0.1 0.3q0.3 0.8 0.6 1.7c0.2 0.5 0.4 0.9 0.7 1.4l0.1 0.3-0.1 0.2c-5.2 8.3-18.7 14.9-32.3 15.7z"/><path class="b" d="m50.8 82.6l0.2 0.2v0.3c-1.2 9.8-10.6 22.1-22.4 29.2-2.3 1.3-4.6 2.5-6.8 3.3l-0.7 0.3 0.1-0.9c0.5-2.4 1.2-4.9 2.2-7.4 4.9-13.2 15.2-24.7 24.4-27.4h0.3l0.2 0.2q0.6 0.7 1.2 1.3c0.4 0.3 0.8 0.6 1.3 0.9z"/><path class="a" d="m102.5 75.8c-0.7 3.2-0.2 1.5-1.2 4.5 3.2 2.1 7.7 5.3 10.5 8.3 1.5 1.6 2.9 3.3 4 4.9q-1.8 4-4.2 7.6c-1.9-0.1-4.1-0.6-6.2-1.1-3.9-1-8.8-3.5-12.1-5.3-2 2.4-0.9 1.2-3.1 3.4 1.9 3.4 4.4 8.5 5.6 12.5 0.6 2.1 1.1 4.2 1.4 6.1-2.3 1.7-4.7 3.3-7.2 4.7-1.6-1-3.4-2.4-4.9-3.9-3-2.8-6.2-7.5-8.4-10.8-2.9 1.2-1.3 0.8-4.2 1.6 0.1 3.9 0.1 9.7-0.7 13.8-0.3 2-0.8 4.3-1.4 6-2.7 0.4-8.5 0.6-8.7 0.6-0.8-1.6-1.6-3.8-2.3-5.8-1.4-4-2.2-9.7-2.6-13.7-3.1-0.4-1.5 0-4.4-0.8-1.7 3.6-4.2 8.7-6.7 11.9-1.3 1.6-2.6 3-3.9 4.3q-3.1-1.2-6.1-2.8l13-23.7c4.2 1.9 8.9 3 13.6 3 9 0 17.5-3.7 23.8-10.4 6.4-6.7 9.9-15.7 9.9-25.2 0-9.5-3.5-18.4-9.9-25.1q-1.8-2-3.9-3.6l12.9-23.5c1.9 1.3 3.7 2.7 5.5 4.3-0.4 2-0.8 3.8-1.6 6-1.3 4-4.2 8.9-6.3 12.2 2.2 2.4 1.2 1.1 2.9 3.6 3.5-1.6 8.5-3.8 12.4-4.5 2.1-0.5 4.1-0.7 6-0.7q2.1 3.8 3.6 7.9c-1.2 1.6-2.6 3.2-4.2 4.8-2.9 2.8-7.7 5.7-11 7.6 0.9 3.2 0.5 1.5 1 4.6 3.7 0.3 9.1 0.9 12.9 2.1 2 0.7 4 1.6 5.7 2.5 0 0.7 0 6.4-0.2 8.7-1.8 0.8-3.9 1.5-6.1 2.1-3.8 1.1-9.3 1.2-13.2 1.3z"/><path d="m171.9 29.4h-9.7v6.5h11.4v4.1h-16.5v-24.5h16.5v4.1h-11.4v5.8h9.7z"/><path d="m186.9 38.1q-1.8 2.2-5 2.2-2.9 0-4.5-1.6-1.5-1.7-1.5-5v-11.9h4.8v11.8q0 2.8 2.6 2.8 2.4 0 3.4-1.7v-12.9h4.9v18.2h-4.6z"/><path d="m205.5 26.4q-1-0.2-1.7-0.2-2.8 0-3.7 1.9v11.9h-4.8v-18.2h4.6l0.1 2.2c1-1.7 2.4-2.5 4.1-2.5q0.8 0 1.5 0.2z"/><path fill-rule="evenodd" d="m206.5 30.7q0-2.7 1-4.8 1.1-2.1 3-3.3c1.3-0.7 2.8-1.1 4.6-1.1 2.4 0 4.5 0.7 6 2.2 1.6 1.5 2.4 3.6 2.6 6.1v1.2q0 4.2-2.3 6.7c-1.6 1.7-3.7 2.6-6.3 2.6q-4 0-6.3-2.6c-1.6-1.6-2.4-3.9-2.4-6.8v-0.2zm4.9 0.4q0 2.6 1 3.9c0.6 1 1.6 1.4 2.8 1.4q1.7 0 2.8-1.3 1-1.4 1-4.3 0-2.6-1-4-1-1.4-2.8-1.4-1.8 0-2.8 1.4-1 1.4-1 4.3z"/><path fill-rule="evenodd" d="m243.2 31.1q0 4.2-2 6.7c-1.3 1.7-3 2.5-5.1 2.5q-2.8 0-4.5-1.9v8.6h-4.9v-25.2h4.5l0.2 1.8q1.8-2.1 4.6-2.1 3.4 0 5.3 2.5 1.8 2.4 1.9 6.8zm-4.9-0.4c0-1.7-0.3-2.9-0.9-3.9-0.6-0.9-1.5-1.3-2.6-1.3-1.6 0-2.6 0.5-3.2 1.7v7.4q0.9 1.8 3.2 1.8c2.3 0 3.5-1.9 3.5-5.7z"/><path fill-rule="evenodd" d="m254.6 40.3q-4 0-6.6-2.4c-1.6-1.6-2.5-3.8-2.5-6.5v-0.5q0-2.7 1.1-4.9 1-2.2 3-3.3 1.9-1.2 4.4-1.2 3.8 0 5.9 2.4 2.2 2.3 2.2 6.6v2h-11.6c0.1 1.2 0.6 2.1 1.4 2.9q1.2 1 3 1 2.8 0 4.4-2l2.4 2.7c-0.7 1-1.7 1.8-2.9 2.4-1.4 0.5-2.7 0.8-4.2 0.8zm-0.6-14.9q-1.4 0-2.3 1-1 1-1.2 2.8h6.8v-0.4q-0.1-1.6-0.9-2.5-0.9-0.9-2.4-0.9z"/><path fill-rule="evenodd" d="m275.4 40c-0.2-0.4-0.4-1-0.5-1.7q-1.8 2-4.6 2-2.7 0-4.5-1.6-1.7-1.5-1.7-3.9 0-2.8 2.1-4.4 2.2-1.5 6.3-1.6h2.2v-1q0-1.3-0.6-2-0.7-0.7-2.1-0.7-1.2 0-1.9 0.6-0.7 0.5-0.7 1.6h-4.9q0-1.6 1-3 0.9-1.3 2.7-2c1.2-0.5 2.6-0.8 4-0.8q3.4 0 5.4 1.7c1.3 1.1 2 2.7 2 4.7v7.9c0 1.7 0.2 3 0.7 3.9v0.3zm-4-3.4c0.7 0 1.4-0.1 2-0.5q0.9-0.5 1.3-1.3v-3.1h-1.8q-3.7 0-3.9 2.5v0.3q0 0.9 0.7 1.5 0.5 0.6 1.7 0.6z"/><path d="m287.8 21.8l0.1 2.1q2-2.4 5.3-2.4c1.9 0 3.3 0.5 4.3 1.7 0.9 1.1 1.4 2.8 1.4 5v11.8h-4.9v-11.6q0.1-1.6-0.6-2.3-0.7-0.7-2.3-0.7c-1.4 0-2.3 0.6-3.1 1.7v12.8h-4.8v-18.1h4.6z"/><path d="m171.9 66.9h-9.7v6.6h11.4v4h-16.5v-24.4h16.5v4.1h-11.4v5.8h9.7z"/><path d="m180.7 59.4l0.2 2.1q1.9-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.4 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.6z"/><path d="m202.4 71.6l3.4-12.2h5.1l-6.2 18.1h-4.7l-6.1-18.1h5.1z"/><path d="m213 54.7c0-0.8 0.2-1.3 0.7-1.8 0.5-0.5 1.1-0.7 2-0.7q1.2 0 2 0.7 0.7 0.7 0.7 1.8 0 1.1-0.7 1.8-0.8 0.7-2 0.7-1.2 0-2-0.7-0.7-0.7-0.7-1.8zm0.3 4.7h4.8v18.1h-4.8z"/><path d="m232.4 63.9q-1-0.1-1.8-0.1-2.7 0-3.6 1.9v11.8h-4.9v-18.1h4.6l0.2 2.2c0.9-1.7 2.3-2.6 4-2.6q0.8 0 1.5 0.3z"/><path fill-rule="evenodd" d="m233.4 68.3q0-2.7 1-4.8 1.1-2.2 3-3.3c1.3-0.8 2.8-1.2 4.6-1.2 2.4 0 4.5 0.8 6 2.3 1.6 1.5 2.4 3.5 2.6 6.1v1.2q0 4.2-2.3 6.7c-1.6 1.7-3.7 2.5-6.3 2.5q-4 0-6.3-2.5c-1.6-1.7-2.4-4-2.4-6.8v-0.2zm4.9 0.3q0 2.6 1 4c0.6 0.9 1.6 1.4 2.8 1.4q1.7 0 2.8-1.3 1-1.4 0.9-4.4 0.1-2.5-0.9-3.9-1.1-1.4-2.9-1.4-1.7 0-2.7 1.4-1 1.3-1 4.2z"/><path d="m258.1 59.4l0.2 2.1q1.9-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.4 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.6z"/><path d="m277.5 59.4l0.2 2q1.9-2.4 5.2-2.4 3.5 0 4.8 2.8 1.9-2.8 5.5-2.8 3 0 4.4 1.8 1.5 1.7 1.5 5.2v11.5h-4.9v-11.5q0-1.6-0.6-2.3-0.6-0.7-2.1-0.7-2.2 0-3.1 2.1v12.4h-4.8v-11.5q0-1.6-0.7-2.3-0.6-0.7-2.1-0.7-2.1 0-3 1.7v12.8h-4.9v-18.1z"/><path fill-rule="evenodd" d="m311.2 77.9q-4 0-6.5-2.4c-1.7-1.7-2.5-3.9-2.5-6.6v-0.4q0-2.7 1-4.9 1.1-2.2 3.1-3.4 1.9-1.1 4.4-1.1 3.7 0 5.9 2.3 2.1 2.4 2.1 6.7v2h-11.6c0.2 1.1 0.7 2.1 1.5 2.8q1.1 1.1 3 1.1 2.8 0 4.4-2l2.4 2.6c-0.8 1.1-1.7 1.9-3 2.4-1.2 0.6-2.7 0.9-4.2 0.9zm-0.5-14.9q-1.5 0-2.4 1c-0.6 0.6-1 1.6-1.1 2.8h6.7v-0.4q0-1.6-0.9-2.5-0.8-0.9-2.3-0.9z"/><path d="m326 59.4l0.1 2.1q2-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.5 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.7z"/><path d="m346.6 54.9v4.5h3.2v3.5h-3.2v9.1q0 1 0.4 1.5 0.4 0.4 1.5 0.4c0.5 0 1 0 1.4-0.1v3.7c-0.9 0.3-1.9 0.4-2.9 0.4q-5.1 0-5.3-5.1v-9.8h-2.6v-3.6h2.6v-4.5z"/><path fill-rule="evenodd" d="m171 110.1h-8.8l-1.7 5h-5.4l9.1-24.4h4.7l9.2 24.4h-5.4zm-7.5-4.1h6.1l-3.1-9.1z"/><path fill-rule="evenodd" d="m179.3 105.9q0-4.2 2-6.7c1.3-1.7 3.2-2.6 5.4-2.6q3 0 4.7 2.1l0.2-1.7h4.4v17.5q0 2.4-1.1 4.2-1.1 1.7-3.1 2.6c-1.3 0.7-2.8 1-4.6 1-1.4 0-2.6-0.3-3.9-0.8q-1.9-0.8-2.9-2.1l2.2-2.9q1.8 2 4.4 2c1.3 0 2.3-0.3 3-1q1.1-1 1.1-3v-0.9c-1.2 1.3-2.6 1.9-4.5 1.9-2.2 0-3.9-0.9-5.3-2.6q-2-2.5-2-6.8v-0.2zm4.9 0.3c0 1.7 0.3 3 1 3.9 0.6 0.9 1.5 1.4 2.7 1.4q2.3 0 3.2-1.6v-7.7q-1-1.6-3.2-1.7-1.7 0-2.7 1.5c-0.7 1-1 2.4-1 4.2z"/><path fill-rule="evenodd" d="m208.1 115.5q-4 0-6.5-2.5c-1.7-1.6-2.6-3.8-2.6-6.5v-0.5q0-2.7 1.1-4.9 1.1-2.1 3-3.3 2-1.2 4.5-1.2 3.7 0 5.9 2.4 2.1 2.3 2.1 6.6v2h-11.6c0.2 1.2 0.7 2.2 1.4 2.9q1.2 1.1 3.1 1.1 2.8 0 4.4-2.1l2.4 2.7c-0.8 1-1.7 1.8-3 2.4-1.2 0.6-2.7 0.9-4.2 0.9zm-0.5-15q-1.5 0-2.4 1-0.9 1-1.1 2.8h6.8v-0.4q-0.1-1.6-0.9-2.5-0.9-0.9-2.4-0.9z"/><path d="m222.9 97l0.1 2.1q2-2.5 5.2-2.5c2 0 3.4 0.6 4.4 1.7 0.9 1.1 1.4 2.8 1.4 5.1v11.7h-4.9v-11.6q0-1.6-0.6-2.2-0.7-0.7-2.3-0.8c-1.4 0-2.4 0.6-3.1 1.8v12.8h-4.8v-18.2h4.6z"/><path d="m245.3 111.5q1.3 0 2.2-0.7 0.8-0.8 0.9-2h4.5c0 1.3-0.3 2.4-1 3.4q-1 1.5-2.7 2.4-1.7 0.8-3.8 0.8-3.9 0-6.1-2.5-2.3-2.4-2.3-6.8v-0.3q0-4.2 2.3-6.7 2.2-2.5 6.1-2.5 3.4 0 5.5 1.9c1.4 1.3 2.1 3 2.1 5.2h-4.5c-0.1-1-0.4-1.7-0.9-2.3q-0.9-0.9-2.3-0.9-1.7 0-2.5 1.2-0.9 1.3-0.9 4.1v0.4q0 2.9 0.9 4.1c0.5 0.8 1.3 1.2 2.5 1.2z"/><path d="m262.5 108.2l3.4-11.3h5.2l-7.3 21-0.4 1c-1.1 2.3-2.9 3.5-5.4 3.5q-1.1 0-2.2-0.3v-3.7h0.8q1.3 0 2-0.4 0.7-0.4 1.1-1.4l0.6-1.5-6.4-18.2h5.2z"/></svg>
@@ -11,6 +11,7 @@
11
11
  // @primaryColor: @green-6;
12
12
  @secondaryColor: #005c97;
13
13
  @ccaGreenColor: #8a9c39;
14
+ @ccaOrangeColor: #ef7000;
14
15
 
15
16
  @linkColor: #006bb8;
16
17
  @linkHoverColor: #004b7f;