govuk_publishing_components 21.7.0 → 21.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/govuk_publishing_components/components/_chevron-banner.scss +75 -86
- data/app/views/govuk_publishing_components/components/_chevron_banner.html.erb +7 -11
- data/app/views/govuk_publishing_components/components/_fieldset.html.erb +2 -1
- data/app/views/govuk_publishing_components/components/_summary_list.html.erb +5 -6
- data/app/views/govuk_publishing_components/components/docs/chevron_banner.yml +1 -1
- data/app/views/govuk_publishing_components/components/docs/fieldset.yml +11 -0
- data/config/initializers/assets.rb +1 -6
- data/lib/govuk_publishing_components/version.rb +1 -1
- metadata +2 -6
- data/app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-focus.svg +0 -12
- data/app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-hover-border.svg +0 -13
- data/app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-hover.svg +0 -14
- data/app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner.svg +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 243a1ba1ed048a28c3a8bbdb807bf4bdc2559d62b0930eb60c8da8fe84aa4704
|
4
|
+
data.tar.gz: 2ffc2bbb16b3f671a0540718cafaff466ccb33406aaabb80fad8ef89cb493070
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c2f88b727500e388f0e1589a6c90cdc8bf52c3aa9aeff1ec723e1478c81d25c38d0e322db3c16210b19de37a2f03013e1f84586d97aa5cd8299d543146418f3
|
7
|
+
data.tar.gz: cda886664d08e1d7899bc62e41a043ddd44f493f1f8e39ab23905760abe718694a8cefd968c81629a77685d09a649c5169e6bb3b6beeda30afec1cc471bdf9e4
|
@@ -6,75 +6,80 @@ $yellow: #ffdd00;
|
|
6
6
|
position: relative;
|
7
7
|
}
|
8
8
|
|
9
|
-
.gem-c-chevron-
|
10
|
-
|
9
|
+
.gem-c-chevron-banner__chevron-point,
|
10
|
+
.gem-c-chevron-banner__chevron-base {
|
11
|
+
stroke: $red;
|
12
|
+
stroke-width: 2.4;
|
13
|
+
}
|
14
|
+
|
15
|
+
.gem-c-chevron-banner:hover,
|
16
|
+
.gem-c-chevron-banner--hover-border:hover {
|
17
|
+
.gem-c-chevron-banner__text {
|
11
18
|
background-color: $dark-red;
|
19
|
+
border-color: $dark-red;
|
12
20
|
}
|
13
21
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
22
|
+
.gem-c-chevron-banner__chevron-point,
|
23
|
+
.gem-c-chevron-banner__chevron-base {
|
24
|
+
fill: $dark-red;
|
25
|
+
stroke: $dark-red;
|
18
26
|
}
|
19
27
|
}
|
20
28
|
|
21
29
|
.gem-c-chevron-banner--hover-border:hover {
|
22
|
-
.gem-c-chevron-
|
23
|
-
border-right: 2px solid;
|
30
|
+
.gem-c-chevron-banner__text {
|
24
31
|
border-color: govuk-colour("white");
|
25
|
-
|
26
|
-
@include govuk-media-query($from: mobile) {
|
27
|
-
border-right: 0;
|
28
|
-
}
|
29
32
|
}
|
30
33
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
}
|
34
|
+
.gem-c-chevron-banner__chevron-point,
|
35
|
+
.gem-c-chevron-banner__chevron-base {
|
36
|
+
stroke: govuk-colour("white");
|
35
37
|
}
|
36
38
|
}
|
37
39
|
|
38
|
-
.gem-c-chevron-
|
39
|
-
|
40
|
-
|
41
|
-
|
40
|
+
.gem-c-chevron-banner__link:focus {
|
41
|
+
background-color: transparent; // This is to override some generic link styling which sets a background colour on focus
|
42
|
+
text-decoration: none;
|
43
|
+
outline: 0;
|
42
44
|
|
43
|
-
|
44
|
-
|
45
|
+
.gem-c-chevron-banner__text {
|
46
|
+
color: govuk-colour("black");
|
47
|
+
background-color: $yellow;
|
48
|
+
border-color: govuk-colour("black");
|
45
49
|
}
|
46
|
-
}
|
47
50
|
|
48
|
-
.gem-c-chevron-
|
49
|
-
|
51
|
+
.gem-c-chevron-banner__text:after {
|
52
|
+
background-image: image-url("govuk_publishing_components/chevron-banner/chevron-banner-small-focus.svg");
|
53
|
+
}
|
50
54
|
|
51
|
-
|
52
|
-
|
55
|
+
.gem-c-chevron-banner__chevron-point,
|
56
|
+
.gem-c-chevron-banner__chevron-base {
|
57
|
+
fill: $yellow;
|
58
|
+
stroke: govuk-colour("black");
|
53
59
|
}
|
54
60
|
}
|
55
61
|
|
56
|
-
.gem-c-chevron-
|
57
|
-
|
58
|
-
padding: govuk-spacing(4);
|
59
|
-
border-radius: 5px;
|
60
|
-
border: 2px solid transparent;
|
61
|
-
border-right: 0;
|
62
|
+
.gem-c-chevron-banner__chevron {
|
63
|
+
display: none;
|
62
64
|
|
63
|
-
@include govuk-media-query(
|
64
|
-
|
65
|
-
|
66
|
-
|
65
|
+
@include govuk-media-query(450px) {
|
66
|
+
display: inline-block;
|
67
|
+
height: 100%;
|
68
|
+
position: absolute;
|
69
|
+
left: 70%;
|
70
|
+
margin-left: (45px + govuk-spacing(4));
|
71
|
+
top: 0;
|
67
72
|
}
|
68
73
|
|
69
|
-
@include govuk-media-query($from: desktop) {
|
70
|
-
|
74
|
+
@include govuk-media-query($from: 450px, $until: desktop) {
|
75
|
+
margin-left: (25px + govuk-spacing(2));
|
71
76
|
}
|
72
77
|
}
|
73
78
|
|
74
|
-
.gem-c-chevron-
|
79
|
+
.gem-c-chevron-banner__text:after {
|
75
80
|
content: "";
|
76
81
|
position: absolute;
|
77
|
-
right:
|
82
|
+
right: 15px;
|
78
83
|
top: 0;
|
79
84
|
width: 25px;
|
80
85
|
height: 100%;
|
@@ -83,42 +88,31 @@ $yellow: #ffdd00;
|
|
83
88
|
background-repeat: no-repeat;
|
84
89
|
background-position: center right;
|
85
90
|
|
86
|
-
@include govuk-media-query(
|
87
|
-
|
88
|
-
display: block;
|
89
|
-
position: absolute;
|
90
|
-
top: 0;
|
91
|
-
right: 0;
|
92
|
-
height: 100%;
|
93
|
-
min-width: 120px;
|
94
|
-
background-image: image-url("govuk_publishing_components/chevron-banner/chevron-banner.svg");
|
95
|
-
background-repeat: no-repeat;
|
96
|
-
background-position: -1px center;
|
97
|
-
background-size: auto 100%;
|
98
|
-
}
|
99
|
-
|
100
|
-
// Target IE 9-11
|
101
|
-
@media screen and (min-width: 0\0) and (min-width: 320px) and (max-width: 364px) {
|
102
|
-
background-position: -15px center;
|
103
|
-
}
|
104
|
-
|
105
|
-
@media screen and (min-width: 0\0) and (min-width: 365px) and (max-width: 640px) {
|
106
|
-
background-position: -28px center;
|
91
|
+
@include govuk-media-query(450px) {
|
92
|
+
display: none;
|
107
93
|
}
|
94
|
+
}
|
108
95
|
|
109
|
-
|
110
|
-
|
111
|
-
|
96
|
+
.gem-c-chevron-banner__text {
|
97
|
+
display: block;
|
98
|
+
position: relative;
|
99
|
+
padding: govuk-spacing(4) 45px govuk-spacing(4) govuk-spacing(4);
|
100
|
+
background-color: $red;
|
101
|
+
border-radius: 5px;
|
102
|
+
box-sizing: border-box;
|
103
|
+
width: 100%;
|
104
|
+
border: 2px solid $red;
|
105
|
+
z-index: 1;
|
112
106
|
|
113
|
-
@media
|
114
|
-
|
107
|
+
@include govuk-media-query($from: 450px, $until: desktop) {
|
108
|
+
padding: govuk-spacing(2) 25px govuk-spacing(2) govuk-spacing(2);
|
115
109
|
}
|
116
|
-
}
|
117
110
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
width:
|
111
|
+
@include govuk-media-query($from: 450px) {
|
112
|
+
border-radius: 5px 0 0 5px;
|
113
|
+
border-right: 0;
|
114
|
+
width: 70%;
|
115
|
+
box-sizing: content-box;
|
122
116
|
}
|
123
117
|
}
|
124
118
|
|
@@ -130,20 +124,15 @@ $yellow: #ffdd00;
|
|
130
124
|
text-decoration: none;
|
131
125
|
}
|
132
126
|
|
133
|
-
//
|
134
|
-
|
135
|
-
.gem-c-chevron-
|
136
|
-
|
137
|
-
|
138
|
-
box-shadow: 0 -2px $yellow, 0 4px govuk-colour("black");
|
127
|
+
// IE "hack" to stop the chevron SVG being stretched
|
128
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
129
|
+
.gem-c-chevron-banner__chevron {
|
130
|
+
max-width: 160px;
|
131
|
+
}
|
139
132
|
}
|
140
133
|
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
top: 0;
|
146
|
-
left: 0;
|
147
|
-
width: 100%;
|
148
|
-
height: 100%;
|
134
|
+
@media screen and (min-width: 0\0) {
|
135
|
+
.gem-c-chevron-banner__chevron {
|
136
|
+
max-width: 160px;
|
137
|
+
}
|
149
138
|
}
|
@@ -7,17 +7,13 @@
|
|
7
7
|
data_attributes[:module] = 'track-click' if data_attributes.any?
|
8
8
|
%>
|
9
9
|
<% if href && text %>
|
10
|
-
<% #This assumes the application calling the component supports passing :extra_headers into the layout. %>
|
11
|
-
<% #If not, add the following to your application layout file: `yield :extra_headers` %>
|
12
|
-
<% content_for :extra_headers do %>
|
13
|
-
<link rel="preload" as="image" href="<%= asset_path 'govuk_publishing_components/chevron-banner/chevron-banner-hover.svg' %>" type="image/svg+xml">
|
14
|
-
<link rel="preload" as="image" href="<%= asset_path 'govuk_publishing_components/chevron-banner/chevron-banner-hover-border.svg' %>" type="image/svg+xml">
|
15
|
-
<link rel="preload" as="image" href="<%= asset_path 'govuk_publishing_components/chevron-banner/chevron-banner-focus.svg' %>" type="image/svg+xml">
|
16
|
-
<% end %>
|
17
|
-
|
18
10
|
<div class="gem-c-chevron-banner <%= "gem-c-chevron-banner--hover-border" if hover_border %>">
|
19
|
-
|
20
|
-
|
21
|
-
|
11
|
+
<%= link_to href, class: "gem-c-chevron-banner__link", data: data_attributes, role: "link" do %>
|
12
|
+
<span class="gem-c-chevron-banner__text"><%= text %></span>
|
13
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 175 109" class="gem-c-chevron-banner__chevron" preserveAspectRatio="xMidYMid meet">
|
14
|
+
<path class="gem-c-chevron-banner__chevron-point" fill="#E61E32" fill-rule="nonzero" d="M91.611 51.664c1.0371 1.1432 1.0375 2.8869.000802 4.0305l-44.991 49.634c-.37092.40919-.33989 1.0416.069307 1.4125.18394.16674.42334.25909.6716.25909h36.892c.55978 0 1.0939-.2346 1.4727-.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-.000709-4.0604L85.3617.64689c-.37873-.41188-.91268-.64628-1.4722-.64628h-36.891c-.55228 0-1 .44772-1 1 0 .24841.092454.48792.25936.6719l45.352 49.992z" transform="translate(0 1)"></path>
|
15
|
+
<path class="gem-c-chevron-banner__chevron-base" fill="#E61E32" fill-rule="nonzero" d="M-37.997 1l.35768 107h40.408c.55978 0 1.0939-.2346 1.4727-.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-.0007095-4.0604l-46.898-51.003c-.37873-.41188-.91268-.64628-1.4722-.64628h-40.402z" vector-effect="non-scaling-stroke"></path>
|
16
|
+
</svg>
|
17
|
+
<% end %>
|
22
18
|
</div>
|
23
19
|
<% end %>
|
@@ -5,6 +5,7 @@
|
|
5
5
|
heading_size = false unless ['s', 'm', 'l', 'xl'].include?(heading_size)
|
6
6
|
error_message ||= nil
|
7
7
|
error_id ||= nil
|
8
|
+
id ||= nil
|
8
9
|
|
9
10
|
if error_message
|
10
11
|
error_id = "error-#{SecureRandom.hex(4)}" unless error_id
|
@@ -20,7 +21,7 @@
|
|
20
21
|
legend_classes << "govuk-fieldset__legend--#{heading_size}" if heading_size
|
21
22
|
%>
|
22
23
|
<%= tag.div class: css_classes do %>
|
23
|
-
<%= tag.fieldset class: fieldset_classes, aria: { describedby: describedby }, role: role do %>
|
24
|
+
<%= tag.fieldset class: fieldset_classes, aria: { describedby: describedby }, role: role, id: id do %>
|
24
25
|
<%= tag.legend class: legend_classes do %>
|
25
26
|
<%= legend_text %>
|
26
27
|
<% end %>
|
@@ -15,9 +15,9 @@
|
|
15
15
|
<%= tag.li class: "govuk-summary-list__actions-list-item" do %>
|
16
16
|
<%= link_to edit.fetch(:href),
|
17
17
|
class: "govuk-link gem-c-summary-list__edit-section-link",
|
18
|
-
title: "#{edit.fetch(:link_text, "
|
18
|
+
title: "#{edit.fetch(:link_text, "Change")} #{title}",
|
19
19
|
data: edit.fetch(:data_attributes, {}) do %>
|
20
|
-
<%= edit.fetch(:link_text, "
|
20
|
+
<%= edit.fetch(:link_text, "Change") %> <%= tag.span title, class: "govuk-visually-hidden" %>
|
21
21
|
<% end %>
|
22
22
|
<% end %>
|
23
23
|
<% end %>
|
@@ -39,10 +39,9 @@
|
|
39
39
|
<%= tag.li class: "govuk-summary-list__actions-list-item" do %>
|
40
40
|
<%= link_to item[:edit].fetch(:href),
|
41
41
|
class: "govuk-link",
|
42
|
-
title: "
|
42
|
+
title: "Change #{item[:field]}",
|
43
43
|
data: item[:edit].fetch(:data_attributes, {}) do %>
|
44
|
-
|
45
|
-
<% end %>
|
44
|
+
Change<%= tag.span " " + item[:field], class: "govuk-visually-hidden" %><% end %>
|
46
45
|
<% end %>
|
47
46
|
<% end %>
|
48
47
|
<% if item.fetch(:delete, {}).any? %>
|
@@ -51,7 +50,7 @@
|
|
51
50
|
class: "govuk-link",
|
52
51
|
title: "Delete #{item[:field]}",
|
53
52
|
data: item[:delete].fetch(:data_attributes, {}) do %>
|
54
|
-
Delete
|
53
|
+
Delete<%= tag.span " " + item[:field], class: "govuk-visually-hidden" %>
|
55
54
|
<% end %>
|
56
55
|
<% end %>
|
57
56
|
<% end %>
|
@@ -17,6 +17,17 @@ examples:
|
|
17
17
|
|
18
18
|
<input type="radio" id="default-no" name="default">
|
19
19
|
<label for="default-no">No</label>
|
20
|
+
with_id_attribute:
|
21
|
+
data:
|
22
|
+
legend_text: 'Do you have a passport?'
|
23
|
+
id: passports
|
24
|
+
text: |
|
25
|
+
<!-- Use the radio component, this is hardcoded only for this example -->
|
26
|
+
<input type="radio" id="passport-yes" name="default">
|
27
|
+
<label for="passport-yes">Yes</label>
|
28
|
+
|
29
|
+
<input type="radio" id="passport-no" name="default">
|
30
|
+
<label for="passport-no">No</label>
|
20
31
|
with_custom_legend_size:
|
21
32
|
description: Make the legend different sizes. Valid options are 's', 'm', 'l' and 'xl'.
|
22
33
|
data:
|
@@ -22,12 +22,7 @@ Rails.application.config.assets.precompile += %w(
|
|
22
22
|
govuk_publishing_components/search-button.png
|
23
23
|
govuk_publishing_components/icon-file-download.svg
|
24
24
|
govuk_publishing_components/icon-important.svg
|
25
|
-
govuk_publishing_components/chevron-banner
|
26
|
-
govuk_publishing_components/chevron-banner-focus.svg
|
27
|
-
govuk_publishing_components/chevron-banner-hover-border.svg
|
28
|
-
govuk_publishing_components/chevron-banner-hover.svg
|
29
|
-
govuk_publishing_components/chevron-banner-small.svg
|
30
|
-
govuk_publishing_components/chevron-banner-small-focus.svg
|
25
|
+
govuk_publishing_components/chevron-banner/*.svg
|
31
26
|
govuk_publishing_components/crests/*.png
|
32
27
|
)
|
33
28
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: govuk_publishing_components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 21.
|
4
|
+
version: 21.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GOV.UK Dev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gds-api-adapters
|
@@ -329,12 +329,8 @@ files:
|
|
329
329
|
- README.md
|
330
330
|
- Rakefile
|
331
331
|
- app/assets/config/govuk_publishing_components_manifest.js
|
332
|
-
- app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-focus.svg
|
333
|
-
- app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-hover-border.svg
|
334
|
-
- app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-hover.svg
|
335
332
|
- app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-small-focus.svg
|
336
333
|
- app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-small.svg
|
337
|
-
- app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner.svg
|
338
334
|
- app/assets/images/govuk_publishing_components/crests/bis_crest_13px.png
|
339
335
|
- app/assets/images/govuk_publishing_components/crests/bis_crest_13px_x2-2.png
|
340
336
|
- app/assets/images/govuk_publishing_components/crests/bis_crest_13px_x2.png
|
@@ -1,12 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 140 109">
|
2
|
-
<defs>
|
3
|
-
<path id="a" d="M0 0h93v109H0z"/>
|
4
|
-
</defs>
|
5
|
-
<g fill="none" fill-rule="evenodd" stroke-width="2" shape-rendering="geometricPrecision" vector-effect="non-scaling-stroke">
|
6
|
-
<path fill="#FD0" fill-rule="nonzero" stroke="#000" stroke-width="2.5" d="M91.611237 52.6639273c1.037118 1.1432316 1.037466 2.8868605.000802 4.0305048L46.6210236 106.328396c-.3709165.409194-.3398864 1.041599.0693073 1.412515.1839444.166737.4233355.259089.6716035.259089H84.254263c.559784 0 1.093946-.234599 1.472697-.646795l46.534281-50.643363c1.054879-1.1480276 1.05457-2.9127296-.000709-4.0603883L85.36275 1.64627982C84.98402 1.23439602 84.450067 1 83.890527 1H47c-.5522848 0-1 .44771525-1 1 0 .24840526.0924536.48791876.2593567.67189844L91.611237 52.6639273z" vector-effect="non-scaling-stroke"/>
|
7
|
-
<mask id="b" fill="#fff">
|
8
|
-
<use xlink:href="#a"/>
|
9
|
-
</mask>
|
10
|
-
<path fill="#FD0" fill-rule="nonzero" stroke="#000" stroke-width="2.5" d="M-37.9966516 1l.3576762 107H2.7689834c.559783 0 1.0939457-.234599 1.4726965-.646795l46.5342804-50.6433632c1.0548793-1.1480275 1.054571-2.9127293-.0007095-4.0603881L3.8774704 1.64628002C3.4987402 1.2343961 2.9647868 1 2.4052469 1h-40.4018985z" mask="url(#b)" vector-effect="non-scaling-stroke"/>
|
11
|
-
</g>
|
12
|
-
</svg>
|
data/app/assets/images/govuk_publishing_components/chevron-banner/chevron-banner-hover-border.svg
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<svg viewBox="0 0 140 109" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
-
<defs>
|
4
|
-
<path id="d" d="M0 0h93v109H0z"/>
|
5
|
-
</defs>
|
6
|
-
<g fill="#B31424" shape-rendering="geometricPrecision" stroke="#FFF" stroke-width="2.5" vector-effect="non-scaling-stroke">
|
7
|
-
<path d="m91.611 52.664c1.0371 1.1432 1.0375 2.8869 8.02e-4 4.0305l-44.991 49.634c-0.37092 0.40919-0.33989 1.0416 0.069307 1.4125 0.18394 0.16674 0.42334 0.25909 0.6716 0.25909h36.892c0.55978 0 1.0939-0.2346 1.4727-0.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-7.09e-4 -4.0604l-46.898-51.003c-0.37873-0.41188-0.91268-0.64628-1.4722-0.64628h-36.891c-0.55228 0-1 0.44772-1 1 0 0.24841 0.092454 0.48792 0.25936 0.6719l45.352 49.992z" vector-effect="non-scaling-stroke"/>
|
8
|
-
<mask id="c" fill="#fff">
|
9
|
-
<use xlink:href="#d"/>
|
10
|
-
</mask>
|
11
|
-
<path d="m-37.997 1l0.35768 107h40.408c0.55978 0 1.0939-0.2346 1.4727-0.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-7.095e-4 -4.0604l-46.898-51.003c-0.37873-0.41188-0.91268-0.64628-1.4722-0.64628h-40.402z" mask="url(#c)" vector-effect="non-scaling-stroke"/>
|
12
|
-
</g>
|
13
|
-
</svg>
|
@@ -1,14 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 134 107">
|
2
|
-
<defs>
|
3
|
-
<path id="a" d="M0 0h93v109H0z"/>
|
4
|
-
</defs>
|
5
|
-
<g fill="none" fill-rule="evenodd">
|
6
|
-
<path fill="#b31424" fill-rule="nonzero" d="M91.611 51.664c1.0371 1.1432 1.0375 2.8869.000802 4.0305l-44.991 49.634c-.37092.40919-.33989 1.0416.069307 1.4125.18394.16674.42334.25909.6716.25909h36.892c.55978 0 1.0939-.2346 1.4727-.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-.000709-4.0604L85.3617.64689c-.37873-.41188-.91268-.64628-1.4722-.64628h-36.891c-.55228 0-1 .44772-1 1 0 .24841.092454.48792.25936.6719l45.352 49.992z"/>
|
7
|
-
<g transform="translate(0 -1)">
|
8
|
-
<mask id="b" fill="#fff">
|
9
|
-
<use xlink:href="#a"/>
|
10
|
-
</mask>
|
11
|
-
<path fill="#b31424" fill-rule="nonzero" d="M-37.997 1l.35768 107h40.408c.55978 0 1.0939-.2346 1.4727-.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-.0007095-4.0604l-46.898-51.003c-.37873-.41188-.91268-.64628-1.4722-.64628h-40.402z" mask="url(#b)"/>
|
12
|
-
</g>
|
13
|
-
</g>
|
14
|
-
</svg>
|
@@ -1,14 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 134 107">
|
2
|
-
<defs>
|
3
|
-
<path id="a" d="M0 0h93v109H0z"/>
|
4
|
-
</defs>
|
5
|
-
<g fill="none" fill-rule="evenodd">
|
6
|
-
<path fill="#E61E32" fill-rule="nonzero" d="M91.611 51.664c1.0371 1.1432 1.0375 2.8869.000802 4.0305l-44.991 49.634c-.37092.40919-.33989 1.0416.069307 1.4125.18394.16674.42334.25909.6716.25909h36.892c.55978 0 1.0939-.2346 1.4727-.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-.000709-4.0604L85.3617.64689c-.37873-.41188-.91268-.64628-1.4722-.64628h-36.891c-.55228 0-1 .44772-1 1 0 .24841.092454.48792.25936.6719l45.352 49.992z"/>
|
7
|
-
<g transform="translate(0 -1)">
|
8
|
-
<mask id="b" fill="#fff">
|
9
|
-
<use xlink:href="#a"/>
|
10
|
-
</mask>
|
11
|
-
<path fill="#E61E32" fill-rule="nonzero" d="M-37.997 1l.35768 107h40.408c.55978 0 1.0939-.2346 1.4727-.6468l46.534-50.643c1.0549-1.148 1.0546-2.9127-.0007095-4.0604l-46.898-51.003c-.37873-.41188-.91268-.64628-1.4722-.64628h-40.402z" mask="url(#b)"/>
|
12
|
-
</g>
|
13
|
-
</g>
|
14
|
-
</svg>
|