Adds options for metadata sections.
This commit is contained in:
parent
f1df8dd97e
commit
1e69ddc2ac
|
@ -19,6 +19,21 @@ $options = [
|
|||
'title' => __( 'General', 'blocksy' ),
|
||||
'type' => 'tab',
|
||||
'options' => [
|
||||
[
|
||||
blocksy_rand_md5() => [
|
||||
'type' => 'ct-title',
|
||||
'label' => __( 'Metadata Sections', 'tainacan-blocksy' ),
|
||||
],
|
||||
],
|
||||
blocksy_get_options(TAINACAN_BLOCKSY_PLUGIN_DIR_PATH . '/inc/options/single-elements/metadata-sections.php', [
|
||||
'prefix' => $prefix
|
||||
], false),
|
||||
[
|
||||
blocksy_rand_md5() => [
|
||||
'type' => 'ct-title',
|
||||
'label' => __( 'Metadata List', 'tainacan-blocksy' ),
|
||||
],
|
||||
],
|
||||
blocksy_get_options(TAINACAN_BLOCKSY_PLUGIN_DIR_PATH . '/inc/options/single-elements/metadata-list-structure.php', [
|
||||
'prefix' => $prefix
|
||||
], false),
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
if (! isset($prefix)) {
|
||||
$prefix = '';
|
||||
}
|
||||
|
||||
$options = [
|
||||
$prefix . 'metadata_sections_layout_type' => [
|
||||
'label' => false,
|
||||
'type' => 'ct-image-picker',
|
||||
'value' => 'metadata-section-type-1',
|
||||
'design' => 'block',
|
||||
'setting' => [ 'transport' => 'postMessage' ],
|
||||
'choices' => [
|
||||
'metadata-section-type-1' => [
|
||||
'src' => tainacan_blocksy_image_picker_url( 'metadata-section-type-1.svg' ),
|
||||
'title' => __( 'Default', 'tainacan-blocksy' ),
|
||||
],
|
||||
'metadata-section-type-2' => [
|
||||
'src' => tainacan_blocksy_image_picker_url( 'metadata-section-type-2.svg' ),
|
||||
'title' => __( 'Tabs', 'tainacan-blocksy' ),
|
||||
],
|
||||
'metadata-section-type-3' => [
|
||||
'src' => tainacan_blocksy_image_picker_url( 'metadata-section-type-3.svg' ),
|
||||
'title' => __( 'Collapses', 'tainacan-blocksy' ),
|
||||
],
|
||||
'metadata-section-type-4' => [
|
||||
'src' => tainacan_blocksy_image_picker_url( 'metadata-section-type-4.svg' ),
|
||||
'title' => __( 'Accordion', 'tainacan-blocksy' ),
|
||||
]
|
||||
],
|
||||
'sync' => blocksy_sync_single_post_container([
|
||||
'prefix' => $prefix
|
||||
])
|
||||
],
|
||||
];
|
|
@ -24,7 +24,7 @@ $options = [
|
|||
'type' => 'ct-typography',
|
||||
'label' => __( 'Section labels font', 'blocksy' ),
|
||||
'value' => blocksy_typography_default_values([
|
||||
'size' => '26px',
|
||||
'size' => '22px',
|
||||
'variation' => 'n6',
|
||||
'line-height' => '1.3'
|
||||
]),
|
||||
|
|
|
@ -93,8 +93,8 @@
|
|||
h1 {
|
||||
--fontSize: 30px;
|
||||
}
|
||||
h2 {
|
||||
--fontSize: 24px;
|
||||
h2:not(.tainacan-single-item-section) {
|
||||
--fontSize: 22px;
|
||||
}
|
||||
h3:not(.tainacan-metadata-label) {
|
||||
--fontSize: 20px;
|
||||
|
@ -450,6 +450,112 @@
|
|||
}
|
||||
}
|
||||
|
||||
/* Metadata section layouts */
|
||||
.tainacan-metadata-sections-container {
|
||||
&.metadata-section-layout--tabs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
box-sizing: border-box;
|
||||
|
||||
.tainacan-item-section {
|
||||
width: 100%;
|
||||
display: none;
|
||||
padding: 2rem 4.16667vw 1rem 4.16667vw;
|
||||
border-top: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
}
|
||||
label {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
opacity: 0.85;
|
||||
border-bottom: 3px solid transparent;
|
||||
transition: border-bottom 0.2s ease;
|
||||
|
||||
h1,h2,h3,h4 {
|
||||
font-size: 1.0rem !important;
|
||||
margin: 0.75rem 1.5rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 1.0;
|
||||
}
|
||||
}
|
||||
input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
}
|
||||
input:checked+label {
|
||||
opacity: 1.0;
|
||||
border-bottom-color: var(--paletteColor1, #3eaf7c);
|
||||
}
|
||||
input:checked+label+.tainacan-item-section {
|
||||
display: block;
|
||||
}
|
||||
@media screen and (min-width: 768px) {
|
||||
label {
|
||||
width: auto;
|
||||
}
|
||||
.tainacan-item-section {
|
||||
order: 99;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.metadata-section-layout--collapses,
|
||||
&.metadata-section-layout--accordion {
|
||||
box-sizing: border-box;
|
||||
|
||||
.tainacan-item-section {
|
||||
width: 100%;
|
||||
display: none;
|
||||
padding: 2rem 4.16667vw 1rem 4.16667vw;
|
||||
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
opacity: 0.85;
|
||||
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
transition: opacity 0.2s ease;
|
||||
|
||||
h1,h2,h3,h4 {
|
||||
margin: 0.75rem;
|
||||
}
|
||||
.tainacan-icon {
|
||||
color: var(--paletteColor1, #3eaf7c);
|
||||
transform: rotate(0deg);
|
||||
transition: transform 0.2s ease;
|
||||
|
||||
&::before {
|
||||
font-size: 1.75em;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
opacity: 1.0;
|
||||
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
}
|
||||
}
|
||||
input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
}
|
||||
input:checked+label {
|
||||
opacity: 1.0;
|
||||
|
||||
.tainacan-icon {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
input:checked+label+.tainacan-item-section {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Items related to this section */
|
||||
.tainacan-item-section--items-related-to-this .wp-block-tainacan-dynamic-items-list {
|
||||
margin-top: 0.25em;
|
||||
|
|
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
viewBox="0 0 100 70"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs13" />
|
||||
<style
|
||||
id="style2">.st2{fill:#e6e7e8}</style>
|
||||
<path
|
||||
id="path4"
|
||||
fill="#fff"
|
||||
d="M13 73.5c-1.4 0-2.5-1.1-2.5-2.5V13c0-1.4 1.1-2.5 2.5-2.5h74c1.4 0 2.5 1.1 2.5 2.5v58c0 1.4-1.1 2.5-2.5 2.5H13z" />
|
||||
<path
|
||||
id="path6"
|
||||
fill="#565d66"
|
||||
d="M87 11c1.1 0 2 .9 2 2v58c0 1.1-.9 2-2 2H13c-1.1 0-2-.9-2-2V13c0-1.1.9-2 2-2h74m0-1H13c-1.7 0-3 1.3-3 3v58c0 1.7 1.3 3 3 3h74c1.6 0 3-1.3 3-3V13c0-1.7-1.4-3-3-3z" />
|
||||
<g
|
||||
transform="translate(0,15.015949)"
|
||||
id="g946">
|
||||
<path
|
||||
d="M 47.59211,42.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path863"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.59211,45.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path861"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.59211,48.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path859"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02252"
|
||||
id="path895"
|
||||
d="m 43.934682,39.309733 h -21.12004 c -0.20911,0 -0.348516,-0.3 -0.348516,-0.75 0,-0.45 0.139406,-0.75 0.348516,-0.75 h 21.12004 c 0.20911,0 0.348516,0.3 0.348516,0.75 0,0.45 -0.139406,0.75 -0.348516,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path897"
|
||||
d="M 47.59211,42.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path899"
|
||||
d="M 47.59211,45.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path901"
|
||||
d="M 47.59211,48.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.934682,51.277288 h -21.12004 c -0.20911,0 -0.348516,-0.2 -0.348516,-0.5 0,-0.3 0.139406,-0.5 0.348516,-0.5 h 21.12004 c 0.20911,0 0.348516,0.2 0.348516,0.5 0,0.3 -0.139406,0.5 -0.348516,0.5 z"
|
||||
id="path911"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.834884" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.834884"
|
||||
id="path921"
|
||||
d="m 43.934682,48.309733 h -21.12004 c -0.20911,0 -0.348516,-0.2 -0.348516,-0.5 0,-0.3 0.139406,-0.5 0.348516,-0.5 h 21.12004 c 0.20911,0 0.348516,0.2 0.348516,0.5 0,0.3 -0.139406,0.5 -0.348516,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g1275"
|
||||
transform="translate(0,1.0237372)">
|
||||
<path
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z"
|
||||
id="path867"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path893"
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path941"
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path945"
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path947"
|
||||
d="M 47.538962,34 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path951"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path955"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path961"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path963"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z"
|
||||
id="path965"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035" />
|
||||
<path
|
||||
d="m 43.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path969"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path983"
|
||||
d="m 43.373558,34 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path987"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,18.376619)"
|
||||
id="g980">
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path853"
|
||||
d="M 77.59211,38.949063 H 52.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 77.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 73.934682,35.949063 h -21.12004 c -0.20911,0 -0.348516,-0.3 -0.348516,-0.75 0,-0.45 0.139406,-0.75 0.348516,-0.75 h 21.12004 c 0.20911,0 0.348516,0.3 0.348516,0.75 0,0.45 -0.139406,0.75 -0.348516,0.75 z"
|
||||
id="path862"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02252" />
|
||||
<path
|
||||
d="M 77.59211,38.949063 H 52.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 77.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path864"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 72.563403,41.949063 H 52.792381 c -0.195753,0 -0.326255,-0.2 -0.326255,-0.5 0,-0.3 0.130502,-0.5 0.326255,-0.5 h 19.771022 c 0.195753,0 0.326255,0.2 0.326255,0.5 0,0.3 -0.130502,0.5 -0.326255,0.5 z"
|
||||
id="path866"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.80778" />
|
||||
</g>
|
||||
<g
|
||||
id="g974"
|
||||
transform="translate(0,7.0237372)">
|
||||
<path
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path877"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path879"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,28 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path881"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path887"
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path889"
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path891"
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path894"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035"
|
||||
id="path896"
|
||||
d="m 73.373558,16 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path898"
|
||||
d="m 73.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
d="m 73.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path900"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path902"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
</g>
|
||||
<path
|
||||
d="M 37.252426,18 H 22.653879 c -0.144541,0 -0.240901,-0.485339 -0.240901,-1.213347 0,-0.728007 0.09636,-1.213346 0.240901,-1.213346 h 14.598547 c 0.14454,0 0.2409,0.485339 0.2409,1.213346 0,0.728008 -0.09636,1.213347 -0.2409,1.213347 z"
|
||||
id="path907"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.08129" />
|
||||
<path
|
||||
d="M 40.180789,49.099768 H 22.701418 c -0.173065,0 -0.28844,-0.485339 -0.28844,-1.213347 0,-0.728007 0.115375,-1.213346 0.28844,-1.213346 h 17.479371 c 0.173063,0 0.288438,0.485339 0.288438,1.213346 0,0.728008 -0.115375,1.213347 -0.288438,1.213347 z"
|
||||
id="path1277"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.18318" />
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
|
@ -0,0 +1,293 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
viewBox="0 0 100 70"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs13" />
|
||||
<style
|
||||
id="style2">.st2{fill:#e6e7e8}</style>
|
||||
<path
|
||||
id="path4"
|
||||
fill="#fff"
|
||||
d="M13 73.5c-1.4 0-2.5-1.1-2.5-2.5V13c0-1.4 1.1-2.5 2.5-2.5h74c1.4 0 2.5 1.1 2.5 2.5v58c0 1.4-1.1 2.5-2.5 2.5H13z" />
|
||||
<g
|
||||
transform="translate(-0.053148,25.466753)"
|
||||
id="g946">
|
||||
<path
|
||||
d="M 47.59211,42.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path863"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.59211,45.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path861"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.59211,48.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path859"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02252"
|
||||
id="path895"
|
||||
d="m 43.934682,39.309733 h -21.12004 c -0.20911,0 -0.348516,-0.3 -0.348516,-0.75 0,-0.45 0.139406,-0.75 0.348516,-0.75 h 21.12004 c 0.20911,0 0.348516,0.3 0.348516,0.75 0,0.45 -0.139406,0.75 -0.348516,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path897"
|
||||
d="M 47.59211,42.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path899"
|
||||
d="M 47.59211,45.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path901"
|
||||
d="M 47.59211,48.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.934682,51.277288 h -21.12004 c -0.20911,0 -0.348516,-0.2 -0.348516,-0.5 0,-0.3 0.139406,-0.5 0.348516,-0.5 h 21.12004 c 0.20911,0 0.348516,0.2 0.348516,0.5 0,0.3 -0.139406,0.5 -0.348516,0.5 z"
|
||||
id="path911"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.834884" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.834884"
|
||||
id="path921"
|
||||
d="m 43.934682,48.309733 h -21.12004 c -0.20911,0 -0.348516,-0.2 -0.348516,-0.5 0,-0.3 0.139406,-0.5 0.348516,-0.5 h 21.12004 c 0.20911,0 0.348516,0.2 0.348516,0.5 0,0.3 -0.139406,0.5 -0.348516,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-0.053148,25.434845)"
|
||||
id="g980">
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path853"
|
||||
d="M 77.59211,38.949063 H 52.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 77.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 73.934682,35.949063 h -21.12004 c -0.20911,0 -0.348516,-0.3 -0.348516,-0.75 0,-0.45 0.139406,-0.75 0.348516,-0.75 h 21.12004 c 0.20911,0 0.348516,0.3 0.348516,0.75 0,0.45 -0.139406,0.75 -0.348516,0.75 z"
|
||||
id="path862"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02252" />
|
||||
<path
|
||||
d="M 77.59211,38.949063 H 52.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 77.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path864"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 72.563403,41.949063 H 52.792381 c -0.195753,0 -0.326255,-0.2 -0.326255,-0.5 0,-0.3 0.130502,-0.5 0.326255,-0.5 h 19.771022 c 0.195753,0 0.326255,0.2 0.326255,0.5 0,0.3 -0.130502,0.5 -0.326255,0.5 z"
|
||||
id="path866"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.80778" />
|
||||
</g>
|
||||
<path
|
||||
id="path6"
|
||||
fill="#565d66"
|
||||
d="M87 11c1.1 0 2 .9 2 2v58c0 1.1-.9 2-2 2H13c-1.1 0-2-.9-2-2V13c0-1.1.9-2 2-2h74m0-1H13c-1.7 0-3 1.3-3 3v58c0 1.7 1.3 3 3 3h74c1.6 0 3-1.3 3-3V13c0-1.7-1.4-3-3-3z" />
|
||||
<g
|
||||
id="g1275"
|
||||
transform="translate(0,17.023737)">
|
||||
<path
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z"
|
||||
id="path867"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path893"
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path941"
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path945"
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path947"
|
||||
d="M 47.538962,34 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path951"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path955"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path961"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path963"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z"
|
||||
id="path965"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035" />
|
||||
<path
|
||||
d="m 43.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path969"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path983"
|
||||
d="m 43.373558,34 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path987"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g974"
|
||||
transform="translate(0,23.023737)">
|
||||
<path
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path877"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path879"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,28 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path881"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path887"
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path889"
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path891"
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path894"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035"
|
||||
id="path896"
|
||||
d="m 73.373558,16 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path898"
|
||||
d="m 73.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
d="m 73.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path900"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path902"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
</g>
|
||||
<path
|
||||
d="M 34.124529,30.263033 H 22.417157 c -0.115922,0 -0.193192,-0.320549 -0.193192,-0.801373 0,-0.480823 0.07727,-0.801372 0.193192,-0.801372 h 11.707372 c 0.11591,0 0.193191,0.320549 0.193191,0.801372 0,0.480824 -0.07727,0.801373 -0.193191,0.801373 z"
|
||||
id="path907"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.786941" />
|
||||
<rect
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2732"
|
||||
width="5.7273903"
|
||||
height="0.71896839"
|
||||
x="26.597965"
|
||||
y="-39.494907"
|
||||
transform="rotate(90)" />
|
||||
<rect
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2734"
|
||||
width="5.7273903"
|
||||
height="0.71896839"
|
||||
x="26.597965"
|
||||
y="-17.765747"
|
||||
transform="rotate(90)" />
|
||||
<path
|
||||
d="M 57.367091,30.263033 H 42.632915 c -0.145892,0 -0.243139,-0.320549 -0.243139,-0.801373 0,-0.480823 0.09725,-0.801372 0.243139,-0.801372 h 14.734176 c 0.145877,0 0.243139,0.320549 0.243139,0.801372 0,0.480824 -0.09725,0.801373 -0.243139,0.801373 z"
|
||||
id="path2818"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.882827" />
|
||||
<path
|
||||
d="m 75.638712,30.263033 h -7.819105 c -0.07742,0 -0.129028,-0.320549 -0.129028,-0.801373 0,-0.480823 0.05161,-0.801372 0.129028,-0.801372 h 7.819105 c 0.07741,0 0.129028,0.320549 0.129028,0.801372 0,0.480824 -0.05161,0.801373 -0.129028,0.801373 z"
|
||||
id="path2820"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.643119" />
|
||||
<rect
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2822"
|
||||
width="22.448126"
|
||||
height="0.71896839"
|
||||
x="38.77594"
|
||||
y="25.878998" />
|
||||
<rect
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2824"
|
||||
width="5.7273903"
|
||||
height="0.71896839"
|
||||
x="26.597965"
|
||||
y="-61.224068"
|
||||
transform="rotate(90)" />
|
||||
<rect
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2826"
|
||||
width="5.7273903"
|
||||
height="0.71896839"
|
||||
x="26.597965"
|
||||
y="-39.494907"
|
||||
transform="rotate(90)" />
|
||||
<rect
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2828"
|
||||
width="22.448126"
|
||||
height="0.71896839"
|
||||
x="60.505096"
|
||||
y="25.878998" />
|
||||
<rect
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2830"
|
||||
width="5.7273903"
|
||||
height="0.71896839"
|
||||
x="26.597965"
|
||||
y="-82.953217"
|
||||
transform="rotate(90)" />
|
||||
<rect
|
||||
style="fill:#e6e6e6;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2832"
|
||||
width="5.7273903"
|
||||
height="0.71896839"
|
||||
x="26.597965"
|
||||
y="-61.224064"
|
||||
transform="rotate(90)" />
|
||||
<rect
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect969"
|
||||
width="77.997292"
|
||||
height="0.71896839"
|
||||
x="11.00828"
|
||||
y="31.878998" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2834"
|
||||
width="21.006899"
|
||||
height="1.3244373"
|
||||
x="17.765749"
|
||||
y="31.576263" />
|
||||
<rect
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect2730"
|
||||
width="22.448126"
|
||||
height="0.71896839"
|
||||
x="17.04678"
|
||||
y="25.878998" />
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,236 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
viewBox="0 0 100 70"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs13" />
|
||||
<style
|
||||
id="style2">.st2{fill:#e6e7e8}</style>
|
||||
<path
|
||||
id="path4"
|
||||
fill="#fff"
|
||||
d="M13 73.5c-1.4 0-2.5-1.1-2.5-2.5V13c0-1.4 1.1-2.5 2.5-2.5h74c1.4 0 2.5 1.1 2.5 2.5v58c0 1.4-1.1 2.5-2.5 2.5H13z" />
|
||||
<path
|
||||
id="path6"
|
||||
fill="#565d66"
|
||||
d="M87 11c1.1 0 2 .9 2 2v58c0 1.1-.9 2-2 2H13c-1.1 0-2-.9-2-2V13c0-1.1.9-2 2-2h74m0-1H13c-1.7 0-3 1.3-3 3v58c0 1.7 1.3 3 3 3h74c1.6 0 3-1.3 3-3V13c0-1.7-1.4-3-3-3z" />
|
||||
<g
|
||||
transform="translate(0,24.290363)"
|
||||
id="g946">
|
||||
<path
|
||||
d="M 47.59211,42.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path863"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.59211,45.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path861"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.59211,48.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path859"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02252"
|
||||
id="path895"
|
||||
d="m 43.934682,39.309733 h -21.12004 c -0.20911,0 -0.348516,-0.3 -0.348516,-0.75 0,-0.45 0.139406,-0.75 0.348516,-0.75 h 21.12004 c 0.20911,0 0.348516,0.3 0.348516,0.75 0,0.45 -0.139406,0.75 -0.348516,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path897"
|
||||
d="M 47.59211,42.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path899"
|
||||
d="M 47.59211,45.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path901"
|
||||
d="M 47.59211,48.309733 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.934682,51.277288 h -21.12004 c -0.20911,0 -0.348516,-0.2 -0.348516,-0.5 0,-0.3 0.139406,-0.5 0.348516,-0.5 h 21.12004 c 0.20911,0 0.348516,0.2 0.348516,0.5 0,0.3 -0.139406,0.5 -0.348516,0.5 z"
|
||||
id="path911"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.834884" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.834884"
|
||||
id="path921"
|
||||
d="m 43.934682,48.309733 h -21.12004 c -0.20911,0 -0.348516,-0.2 -0.348516,-0.5 0,-0.3 0.139406,-0.5 0.348516,-0.5 h 21.12004 c 0.20911,0 0.348516,0.2 0.348516,0.5 0,0.3 -0.139406,0.5 -0.348516,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g1275"
|
||||
transform="translate(0,4.0820866)">
|
||||
<path
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z"
|
||||
id="path867"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path893"
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path941"
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path945"
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path947"
|
||||
d="M 47.538962,34 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path951"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path955"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path961"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path963"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z"
|
||||
id="path965"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035" />
|
||||
<path
|
||||
d="m 43.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path969"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path983"
|
||||
d="m 43.373558,34 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path987"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,27.651033)"
|
||||
id="g980">
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path853"
|
||||
d="M 77.59211,38.949063 H 52.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 77.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 73.934682,35.949063 h -21.12004 c -0.20911,0 -0.348516,-0.3 -0.348516,-0.75 0,-0.45 0.139406,-0.75 0.348516,-0.75 h 21.12004 c 0.20911,0 0.348516,0.3 0.348516,0.75 0,0.45 -0.139406,0.75 -0.348516,0.75 z"
|
||||
id="path862"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02252" />
|
||||
<path
|
||||
d="M 77.59211,38.949063 H 52.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 77.59211 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path864"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 72.563403,41.949063 H 52.792381 c -0.195753,0 -0.326255,-0.2 -0.326255,-0.5 0,-0.3 0.130502,-0.5 0.326255,-0.5 h 19.771022 c 0.195753,0 0.326255,0.2 0.326255,0.5 0,0.3 -0.130502,0.5 -0.326255,0.5 z"
|
||||
id="path866"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.80778" />
|
||||
</g>
|
||||
<g
|
||||
id="g974"
|
||||
transform="translate(0,10.082087)">
|
||||
<path
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path877"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path879"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,28 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path881"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path887"
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path889"
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path891"
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path894"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035"
|
||||
id="path896"
|
||||
d="m 73.373558,16 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path898"
|
||||
d="m 73.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
d="m 73.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path900"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path902"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
</g>
|
||||
<path
|
||||
d="M 37.152989,18 H 22.554442 c -0.144541,0 -0.240901,-0.485339 -0.240901,-1.213347 0,-0.728007 0.09636,-1.213346 0.240901,-1.213346 h 14.598547 c 0.14454,0 0.2409,0.485339 0.2409,1.213346 0,0.728008 -0.09636,1.213347 -0.2409,1.213347 z"
|
||||
id="path907"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.08129" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect889"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="20.186007" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect4054"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="49.34071" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="path4078"
|
||||
d="m 15.850018,17.60136 -0.470371,-0.814706 -0.470371,-0.814706 0.940742,0 0.940741,0 -0.470371,0.814706 z" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect6699"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="57.21701" />
|
||||
<path
|
||||
d="m 41.676671,54.792206 h -18.95097 c -0.187634,0 -0.312723,-0.485339 -0.312723,-1.213347 0,-0.728007 0.125089,-1.213346 0.312723,-1.213346 h 18.95097 c 0.187633,0 0.312722,0.485339 0.312722,1.213346 0,0.728008 -0.125089,1.213347 -0.312722,1.213347 z"
|
||||
id="path6697"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.23198" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="path6701"
|
||||
transform="translate(0,0.03187731)"
|
||||
d="m 15.949455,54.361688 -0.470371,-0.814706 -0.47037,-0.814706 0.940741,0 0.940742,0 -0.470371,0.814706 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,192 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.1"
|
||||
viewBox="0 0 100 70"
|
||||
id="Layer_1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs13" />
|
||||
<style
|
||||
id="style2">.st2{fill:#e6e7e8}</style>
|
||||
<path
|
||||
id="path4"
|
||||
fill="#fff"
|
||||
d="M13 73.5c-1.4 0-2.5-1.1-2.5-2.5V13c0-1.4 1.1-2.5 2.5-2.5h74c1.4 0 2.5 1.1 2.5 2.5v58c0 1.4-1.1 2.5-2.5 2.5H13z" />
|
||||
<path
|
||||
id="path6"
|
||||
fill="#565d66"
|
||||
d="M87 11c1.1 0 2 .9 2 2v58c0 1.1-.9 2-2 2H13c-1.1 0-2-.9-2-2V13c0-1.1.9-2 2-2h74m0-1H13c-1.7 0-3 1.3-3 3v58c0 1.7 1.3 3 3 3h74c1.6 0 3-1.3 3-3V13c0-1.7-1.4-3-3-3z" />
|
||||
<g
|
||||
id="g1275"
|
||||
transform="translate(0,4.0820866)">
|
||||
<path
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z"
|
||||
id="path867"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path893"
|
||||
d="M 47.59211,40 H 22.874016 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 47.59211 C 47.836844,39 48,39.2 48,39.5 48,39.8 47.836844,40 47.59211,40 Z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path941"
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path945"
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path947"
|
||||
d="M 47.538962,34 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 47.538962,25 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path951"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,31 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path955"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path961"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path963"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="m 43.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z"
|
||||
id="path965"
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035" />
|
||||
<path
|
||||
d="m 43.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path969"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path983"
|
||||
d="m 43.373558,34 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path987"
|
||||
d="M 47.538962,36.967555 H 22.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g974"
|
||||
transform="translate(0,10.082087)">
|
||||
<path
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path877"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path879"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
d="M 77.538962,28 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path881"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path887"
|
||||
d="M 77.538962,19 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path889"
|
||||
d="M 77.538962,25 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205"
|
||||
id="path891"
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path894"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035"
|
||||
id="path896"
|
||||
d="m 73.373558,16 h -20.62031 c -0.204162,0 -0.34027,-0.3 -0.34027,-0.75 0,-0.45 0.136108,-0.75 0.34027,-0.75 h 20.62031 c 0.204162,0 0.34027,0.3 0.34027,0.75 0,0.45 -0.136108,0.75 -0.34027,0.75 z" />
|
||||
<path
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948"
|
||||
id="path898"
|
||||
d="m 73.373558,22 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z" />
|
||||
<path
|
||||
d="m 73.373558,28 h -20.62031 c -0.204162,0 -0.34027,-0.2 -0.34027,-0.5 0,-0.3 0.136108,-0.5 0.34027,-0.5 h 20.62031 c 0.204162,0 0.34027,0.2 0.34027,0.5 0,0.3 -0.136108,0.5 -0.34027,0.5 z"
|
||||
id="path900"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.824948" />
|
||||
<path
|
||||
d="M 77.538962,30.967555 H 52.820868 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 h 24.718094 c 0.244734,0 0.40789,0.2 0.40789,0.5 0,0.3 -0.163156,0.5 -0.40789,0.5 z"
|
||||
id="path902"
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.903205" />
|
||||
</g>
|
||||
<path
|
||||
d="M 37.152989,18 H 22.554442 c -0.144541,0 -0.240901,-0.485339 -0.240901,-1.213347 0,-0.728007 0.09636,-1.213346 0.240901,-1.213346 h 14.598547 c 0.14454,0 0.2409,0.485339 0.2409,1.213346 0,0.728008 -0.09636,1.213347 -0.2409,1.213347 z"
|
||||
id="path907"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.08129" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect889"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="20.186007" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect4054"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="49.34071" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="path4078"
|
||||
d="m 15.850018,17.60136 -0.470371,-0.814706 -0.470371,-0.814706 0.940742,0 0.940741,0 -0.470371,0.814706 z" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect6699"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="57.21701" />
|
||||
<path
|
||||
d="m 41.676671,54.792206 h -18.95097 c -0.187634,0 -0.312723,-0.485339 -0.312723,-1.213347 0,-0.728007 0.125089,-1.213346 0.312723,-1.213346 h 18.95097 c 0.187633,0 0.312722,0.485339 0.312722,1.213346 0,0.728008 -0.125089,1.213347 -0.312722,1.213347 z"
|
||||
id="path6697"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.23198" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="path6701"
|
||||
transform="rotate(-90,15.965394,53.291351)"
|
||||
d="m 15.949455,54.361688 -0.470371,-0.814706 -0.47037,-0.814706 0.940741,0 0.940742,0 -0.470371,0.814706 z" />
|
||||
<rect
|
||||
style="fill:#e6e7e8;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="rect954"
|
||||
width="78.008156"
|
||||
height="0.59999913"
|
||||
x="10.994801"
|
||||
y="65.093307" />
|
||||
<path
|
||||
d="m 34.241063,62.668503 h -11.63607 c -0.115209,0 -0.192015,-0.485339 -0.192015,-1.213347 0,-0.728007 0.07681,-1.213346 0.192015,-1.213346 h 11.63607 c 0.115208,0 0.192014,0.485339 0.192014,1.213346 0,0.728008 -0.07681,1.213347 -0.192014,1.213347 z"
|
||||
id="path956"
|
||||
style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.965364" />
|
||||
<path
|
||||
style="fill:#d6d8d9;fill-opacity:1;stroke:#ffca47;stroke-width:0;stroke-opacity:0"
|
||||
id="path958"
|
||||
transform="rotate(-90,19.903542,57.229499)"
|
||||
d="m 15.949455,54.361688 -0.470371,-0.814706 -0.47037,-0.814706 0.940741,0 0.940742,0 -0.470371,0.814706 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
|
@ -372,6 +372,7 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
|||
|
||||
/* Single Item Page */
|
||||
.tainacan-item-single-page {
|
||||
/* Metadata section layouts */
|
||||
/* Items related to this section */
|
||||
}
|
||||
|
||||
|
@ -457,7 +458,7 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
|||
--fontSize: 30px;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-item-single h2 {
|
||||
.tainacan-item-single-page .tainacan-item-single h2:not(.tainacan-single-item-section) {
|
||||
--fontSize: 24px;
|
||||
}
|
||||
|
||||
|
@ -834,6 +835,120 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs .tainacan-item-section {
|
||||
width: 100%;
|
||||
display: none;
|
||||
padding: 2rem 4.16667vw 1rem 4.16667vw;
|
||||
border-top: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
opacity: 0.85;
|
||||
border-bottom: 3px solid transparent;
|
||||
transition: border-bottom 0.2s ease;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label h1, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label h2, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label h3, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label h4 {
|
||||
font-size: 1.0rem !important;
|
||||
margin: 0.75rem 1.5rem;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label:hover {
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs input:checked + label {
|
||||
opacity: 1.0;
|
||||
border-bottom-color: var(--paletteColor1, #3eaf7c);
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs input:checked + label + .tainacan-item-section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs label {
|
||||
width: auto;
|
||||
}
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--tabs .tainacan-item-section {
|
||||
order: 99;
|
||||
}
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses .tainacan-item-section, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion .tainacan-item-section {
|
||||
width: 100%;
|
||||
display: none;
|
||||
padding: 2rem 4.16667vw 1rem 4.16667vw;
|
||||
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
opacity: 0.85;
|
||||
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label h1, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label h2, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label h3, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label h4, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label h1, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label h2, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label h3, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label h4 {
|
||||
margin: 0.75rem;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label .tainacan-icon, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label .tainacan-icon {
|
||||
color: var(--paletteColor1, #3eaf7c);
|
||||
transform: rotate(0deg);
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label .tainacan-icon::before, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label .tainacan-icon::before {
|
||||
font-size: 1.75em;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses label:hover, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion label:hover {
|
||||
opacity: 1.0;
|
||||
border-bottom: 1px solid var(--formBorderInitialColor, #e0e5eb);
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input:checked + label, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input:checked + label {
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input:checked + label .tainacan-icon, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input:checked + label .tainacan-icon {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--collapses input:checked + label + .tainacan-item-section, .tainacan-item-single-page .tainacan-metadata-sections-container.metadata-section-layout--accordion input:checked + label + .tainacan-item-section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tainacan-item-single-page .tainacan-item-section--items-related-to-this .wp-block-tainacan-dynamic-items-list {
|
||||
margin-top: 0.25em;
|
||||
margin-bottom: 0.5em;
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -75,18 +75,119 @@
|
|||
'after_value' => '</p>',
|
||||
'exclude_title' => (get_theme_mod($prefix . '_show_title_metadata', 'yes') === 'no')
|
||||
);
|
||||
$args = array(
|
||||
'before' => '<section class="tainacan-item-section tainacan-item-section--metadata">',
|
||||
'after' => '</section>',
|
||||
'before_name' => '<h2 class="tainacan-single-item-section">',
|
||||
'after_name' => '</h2>',
|
||||
'hide_name' => !get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes',
|
||||
'before_metadata_list' => do_action( 'tainacan-blocksy-single-item-metadata-begin' ) . '<div class="tainacan-item-section__metadata ' . get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') . '">',
|
||||
'after_metadata_list' => '</div>' . do_action( 'tainacan-blocksy-single-item-metadata-end' ),
|
||||
'metadata_list_args' => $metadata_args
|
||||
);
|
||||
|
||||
|
||||
$section_layout = get_theme_mod($prefix . '_metadata_sections_layout_type', 'metadata-section-type-1');
|
||||
|
||||
echo '<div class="tainacan-metadata-sections-container">';
|
||||
tainacan_the_metadata_sections( $args );
|
||||
echo '</div>';
|
||||
if ( $section_layout == 'metadata-section-type-2') {
|
||||
|
||||
add_filter('tainacan-get-metadata-section-as-html-before-name--index-0', function($before, $item_metadatum) {
|
||||
return str_replace('<input', '<input checked="checked"', $before);
|
||||
}, 10, 2);
|
||||
|
||||
$args = array(
|
||||
'before' => '',
|
||||
'after' => '',
|
||||
'before_name' => '<input name="tabs" type="radio" id="tab-section-$id" />
|
||||
<label for="tab-section-$id">
|
||||
<h2 class="tainacan-single-item-section" id="metadata-section-$slug">',
|
||||
'after_name' => '</h2>
|
||||
</label>',
|
||||
'before_metadata_list' => '<section class="tainacan-item-section tainacan-item-section--metadata">' .do_action( 'tainacan-blocksy-single-item-metadata-begin' ). '
|
||||
<div class="tainacan-item-section__metadata ' . get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') . '" aria-labelledby="metadata-section-$slug">
|
||||
<div class="single-item-collection--information justify-content-center">
|
||||
<div class="row">
|
||||
<div class="col s-item-collection--metadata">',
|
||||
'after_metadata_list' => '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>' . do_action( 'tainacan-blocksy-single-item-metadata-end' ) . '</section>',
|
||||
'metadata_list_args' => $metadata_args
|
||||
);
|
||||
|
||||
echo '<div class="tainacan-metadata-sections-container metadata-section-layout--tabs">';
|
||||
tainacan_the_metadata_sections( $args );
|
||||
echo '</div>';
|
||||
|
||||
} else if ( $section_layout == 'metadata-section-type-3') {
|
||||
|
||||
add_filter('tainacan-get-metadata-section-as-html-before-name--index-0', function($before, $item_metadatum) {
|
||||
return str_replace('<input', '<input checked="checked"', $before);
|
||||
}, 10, 2);
|
||||
|
||||
$args = array(
|
||||
'before' => '',
|
||||
'after' => '',
|
||||
'before_name' => '<input name="collapses" type="checkbox" id="collapse-section-$id"/>
|
||||
<label for="collapse-section-$id">
|
||||
<i class="tainacan-icon tainacan-icon-arrowright"></i>
|
||||
<h2 class="tainacan-single-item-section" id="metadata-section-$slug">',
|
||||
'after_name' => '</h2>
|
||||
</label>',
|
||||
'before_metadata_list' => '<section class="tainacan-item-section tainacan-item-section--metadata">' .do_action( 'tainacan-blocksy-single-item-metadata-begin' ). '
|
||||
<div class="tainacan-item-section__metadata ' . get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') . '" aria-labelledby="metadata-section-$slug">
|
||||
<div class="single-item-collection--information justify-content-center">
|
||||
<div class="row">
|
||||
<div class="col s-item-collection--metadata">',
|
||||
'after_metadata_list' => '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>' . do_action( 'tainacan-blocksy-single-item-metadata-end' ) . '</section>',
|
||||
'metadata_list_args' => $metadata_args
|
||||
);
|
||||
|
||||
echo '<div class="tainacan-metadata-sections-container metadata-section-layout--collapses">';
|
||||
tainacan_the_metadata_sections( $args );
|
||||
echo '</div>';
|
||||
|
||||
} else if ( $section_layout == 'metadata-section-type-4') {
|
||||
|
||||
add_filter('tainacan-get-metadata-section-as-html-before-name--index-0', function($before, $item_metadatum) {
|
||||
return str_replace('<input', '<input checked="checked"', $before);
|
||||
}, 10, 2);
|
||||
|
||||
$args = array(
|
||||
'before' => '',
|
||||
'after' => '',
|
||||
'before_name' => '<input name="accordion" type="radio" id="accordion-section-$id"/>
|
||||
<label for="accordion-section-$id">
|
||||
<i class="tainacan-icon tainacan-icon-arrowright"></i>
|
||||
<h2 class="tainacan-single-item-section" id="metadata-section-$slug">',
|
||||
'after_name' => '</h2>
|
||||
</label>',
|
||||
'before_metadata_list' => '<section class="tainacan-item-section tainacan-item-section--metadata">' .do_action( 'tainacan-blocksy-single-item-metadata-begin' ). '
|
||||
<div class="tainacan-item-section__metadata ' . get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') . '" aria-labelledby="metadata-section-$slug">
|
||||
<div class="single-item-collection--information justify-content-center">
|
||||
<div class="row">
|
||||
<div class="col s-item-collection--metadata">',
|
||||
'after_metadata_list' => '
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>' . do_action( 'tainacan-blocksy-single-item-metadata-end' ) . '</section>',
|
||||
'metadata_list_args' => $metadata_args
|
||||
);
|
||||
|
||||
echo '<div class="tainacan-metadata-sections-container metadata-section-layout--accordion">';
|
||||
tainacan_the_metadata_sections( $args );
|
||||
echo '</div>';
|
||||
|
||||
} else {
|
||||
$args = array(
|
||||
'before' => '<section class="tainacan-item-section tainacan-item-section--metadata">',
|
||||
'after' => '</section>',
|
||||
'before_name' => '<h2 class="tainacan-single-item-section" id="metadata-section-$slug">',
|
||||
'after_name' => '</h2>',
|
||||
'hide_name' => !get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes',
|
||||
'before_metadata_list' => do_action( 'tainacan-blocksy-single-item-metadata-begin' ) . '<div class="tainacan-item-section__metadata ' . get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') . '">',
|
||||
'after_metadata_list' => '</div>' . do_action( 'tainacan-blocksy-single-item-metadata-end' ),
|
||||
'metadata_list_args' => $metadata_args
|
||||
);
|
||||
|
||||
echo '<div class="tainacan-metadata-sections-container">';
|
||||
tainacan_the_metadata_sections( $args );
|
||||
echo '</div>';
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue