Adds border settings to metadata values.
This commit is contained in:
parent
7802fcbedb
commit
540d24cca3
20
global.php
20
global.php
|
@ -7,7 +7,7 @@ blc_call_fnc(['fnc' => 'blocksy_output_responsive'], [
|
||||||
'tablet_css' => $tablet_css,
|
'tablet_css' => $tablet_css,
|
||||||
'mobile_css' => $mobile_css,
|
'mobile_css' => $mobile_css,
|
||||||
'selector' => blocksy_prefix_selector('.tainacan-item-section__metadata', $prefix),
|
'selector' => blocksy_prefix_selector('.tainacan-item-section__metadata', $prefix),
|
||||||
'variableName' => 'column-width',
|
'variableName' => 'metadata-column-width',
|
||||||
'value' => get_theme_mod( $prefix . '_tainacan_metadata_columns', [
|
'value' => get_theme_mod( $prefix . '_tainacan_metadata_columns', [
|
||||||
'mobile' => '200px',
|
'mobile' => '200px',
|
||||||
'tablet' => '300px',
|
'tablet' => '300px',
|
||||||
|
@ -30,6 +30,24 @@ blc_call_fnc(['fnc' => 'blocksy_output_font_css'], [
|
||||||
)
|
)
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
|
blc_call_fnc(['fnc' => 'blocksy_output_border'], [
|
||||||
|
'css' => $css,
|
||||||
|
'tablet_css' => $tablet_css,
|
||||||
|
'mobile_css' => $mobile_css,
|
||||||
|
'selector' => blocksy_prefix_selector('.tainacan-item-section__metadata', $prefix),
|
||||||
|
'variableName' => 'metadata-border',
|
||||||
|
'value' => get_theme_mod( $prefix . '_metadata_border', [
|
||||||
|
'width' => 1,
|
||||||
|
'style' => 'solid',
|
||||||
|
'color' => [
|
||||||
|
'color' => '#e0e5eb',
|
||||||
|
],
|
||||||
|
]),
|
||||||
|
'responsive' => true
|
||||||
|
]);
|
||||||
|
|
||||||
|
|
||||||
blc_call_fnc(['fnc' => 'blocksy_output_font_css'], [
|
blc_call_fnc(['fnc' => 'blocksy_output_font_css'], [
|
||||||
'css' => $css,
|
'css' => $css,
|
||||||
'tablet_css' => $tablet_css,
|
'tablet_css' => $tablet_css,
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (! isset($prefix)) {
|
||||||
|
$prefix = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
$options = [
|
||||||
|
$prefix . 'metadata_border' => [
|
||||||
|
'label' => __( 'Border', 'blocksy' ),
|
||||||
|
'type' => 'ct-border',
|
||||||
|
'design' => 'block',
|
||||||
|
'responsive' => true,
|
||||||
|
'setting' => [ 'transport' => 'postMessage' ],
|
||||||
|
'value' => [
|
||||||
|
'width' => 1,
|
||||||
|
'style' => 'solid',
|
||||||
|
'color' => [
|
||||||
|
'color' => '#e0e5eb',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'sync' => blocksy_sync_single_post_container([
|
||||||
|
'prefix' => $prefix
|
||||||
|
])
|
||||||
|
],
|
||||||
|
];
|
|
@ -26,7 +26,7 @@ $options = [
|
||||||
],
|
],
|
||||||
]),
|
]),
|
||||||
'responsive' => true,
|
'responsive' => true,
|
||||||
'divider' => 'top',
|
'divider' => 'bottom',
|
||||||
'sync' => blocksy_sync_single_post_container([
|
'sync' => blocksy_sync_single_post_container([
|
||||||
'prefix' => $prefix
|
'prefix' => $prefix
|
||||||
])
|
])
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (! isset($prefix)) {
|
||||||
|
$prefix = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
$options = [
|
||||||
|
$prefix . 'metadata_list_structure_type' => [
|
||||||
|
'label' => false,
|
||||||
|
'type' => 'ct-image-picker',
|
||||||
|
'value' => 'metadata-type-1',
|
||||||
|
'design' => 'block',
|
||||||
|
'setting' => [ 'transport' => 'postMessage' ],
|
||||||
|
'choices' => [
|
||||||
|
'metadata-type-1' => [
|
||||||
|
'src' => blocksy_tainacan_image_picker_url( 'metadata-type-1.svg' ),
|
||||||
|
'title' => __( 'Label above values', 'blocksy-tainacan' ),
|
||||||
|
],
|
||||||
|
|
||||||
|
'metadata-type-2' => [
|
||||||
|
'src' => blocksy_tainacan_image_picker_url( 'metadata-type-2.svg' ),
|
||||||
|
'title' => __( 'Label aside values', 'blocksy-tainacan' ),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'sync' => blocksy_sync_single_post_container([
|
||||||
|
'prefix' => $prefix
|
||||||
|
])
|
||||||
|
],
|
||||||
|
];
|
|
@ -14,20 +14,40 @@ $options = [
|
||||||
'prefix' => $prefix,
|
'prefix' => $prefix,
|
||||||
]),
|
]),
|
||||||
'inner-options' => [
|
'inner-options' => [
|
||||||
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-title-metadata.php', [
|
|
||||||
'prefix' => $prefix,
|
blocksy_rand_md5() => [
|
||||||
'enabled' => 'yes'
|
'title' => __( 'General', 'blocksy' ),
|
||||||
], false),
|
'type' => 'tab',
|
||||||
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-thumbnail.php', [
|
'options' => [
|
||||||
'prefix' => $prefix,
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-list-structure.php', [
|
||||||
'enabled' => 'no'
|
'prefix' => $prefix
|
||||||
], false),
|
], false),
|
||||||
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-columns.php', [
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-columns.php', [
|
||||||
'prefix' => $prefix
|
'prefix' => $prefix
|
||||||
], false),
|
], false),
|
||||||
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-typography.php', [
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-title-metadata.php', [
|
||||||
'prefix' => $prefix
|
'prefix' => $prefix,
|
||||||
], false)
|
'enabled' => 'yes'
|
||||||
|
], false),
|
||||||
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-thumbnail.php', [
|
||||||
|
'prefix' => $prefix,
|
||||||
|
'enabled' => 'no'
|
||||||
|
], false),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
blocksy_rand_md5() => [
|
||||||
|
'title' => __( 'Design', 'blocksy' ),
|
||||||
|
'type' => 'tab',
|
||||||
|
'options' => [
|
||||||
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-typography.php', [
|
||||||
|
'prefix' => $prefix
|
||||||
|
], false),
|
||||||
|
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-border.php', [
|
||||||
|
'prefix' => $prefix
|
||||||
|
], false)
|
||||||
|
],
|
||||||
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
];
|
];
|
|
@ -10,25 +10,25 @@ if (! isset($enabled)) {
|
||||||
$options = [
|
$options = [
|
||||||
$prefix . 'tainacan_metadata_label_font' => [
|
$prefix . 'tainacan_metadata_label_font' => [
|
||||||
'type' => 'ct-typography',
|
'type' => 'ct-typography',
|
||||||
'label' => __( 'Metadata label', 'blocksy' ),
|
'label' => __( 'Metadata label', 'blocksy-tainacan' ),
|
||||||
'value' => blocksy_typography_default_values([
|
'value' => blocksy_typography_default_values([
|
||||||
'size' => '22px',
|
'size' => '22px',
|
||||||
'variation' => 'n6',
|
'variation' => 'n6',
|
||||||
'line-height' => '1.2'
|
'line-height' => '1.2'
|
||||||
]),
|
]),
|
||||||
'divider' => 'top',
|
|
||||||
'sync' => blocksy_sync_single_post_container([
|
'sync' => blocksy_sync_single_post_container([
|
||||||
'prefix' => $prefix
|
'prefix' => $prefix
|
||||||
])
|
])
|
||||||
],
|
],
|
||||||
$prefix . 'tainacan_metadata_value_font' => [
|
$prefix . 'tainacan_metadata_value_font' => [
|
||||||
'type' => 'ct-typography',
|
'type' => 'ct-typography',
|
||||||
'label' => __( 'Metadata value', 'blocksy' ),
|
'label' => __( 'Metadata value', 'blocksy-tainacan' ),
|
||||||
'value' => blocksy_typography_default_values([
|
'value' => blocksy_typography_default_values([
|
||||||
'size' => '17px'
|
'size' => '17px'
|
||||||
]),
|
]),
|
||||||
'sync' => blocksy_sync_single_post_container([
|
'sync' => blocksy_sync_single_post_container([
|
||||||
'prefix' => $prefix
|
'prefix' => $prefix
|
||||||
])
|
]),
|
||||||
|
'divider' => 'bottom',
|
||||||
],
|
],
|
||||||
];
|
];
|
|
@ -291,9 +291,9 @@
|
||||||
// Metadata list -------------------------------------
|
// Metadata list -------------------------------------
|
||||||
.tainacan-item-section__metadata {
|
.tainacan-item-section__metadata {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
-moz-column-width: var(--column-width, 400);
|
-moz-column-width: var(--metadata-column-width, 400px);
|
||||||
-webkit-column-width: var(--column-width, 400);
|
-webkit-column-width: var(--metadata-column-width, 400px);
|
||||||
column-width: var(--column-width, 400);
|
column-width: var(--metadata-column-width, 400px);
|
||||||
|
|
||||||
div {
|
div {
|
||||||
-webkit-column-break-inside: avoid;
|
-webkit-column-break-inside: avoid;
|
||||||
|
@ -354,6 +354,9 @@
|
||||||
text-transform: var(--textTransform);
|
text-transform: var(--textTransform);
|
||||||
-webkit-text-decoration: var(--textDecoration);
|
-webkit-text-decoration: var(--textDecoration);
|
||||||
text-decoration: var(--textDecoration);
|
text-decoration: var(--textDecoration);
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
border-bottom: var(--metadata-border, 1px solid #e0e5eb);
|
||||||
}
|
}
|
||||||
.tainacan-item-section__metadata-thumbnail img {
|
.tainacan-item-section__metadata-thumbnail img {
|
||||||
border-radius: var(--borderRadius, 3px);
|
border-radius: var(--borderRadius, 3px);
|
||||||
|
@ -381,7 +384,37 @@
|
||||||
}
|
}
|
||||||
.tainacan-compound-group {
|
.tainacan-compound-group {
|
||||||
padding-left: 1.5rem;
|
padding-left: 1.5rem;
|
||||||
border-left: 1px solid #f2f2f2;
|
border-left: 1px solid #e0e5eb;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.metadata-type-2 {
|
||||||
|
&>div {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
|
||||||
|
.tainacan-metadata-label {
|
||||||
|
flex-basis: 40%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
border-right: var(--metadata-border, 1px solid #e0e5eb);
|
||||||
|
}
|
||||||
|
.tainacan-metadata-value {
|
||||||
|
flex-basis: 60%;
|
||||||
|
padding-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 767px) {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.tainacan-metadata-label {
|
||||||
|
flex-basis: 100%;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
}
|
||||||
|
.tainacan-metadata-value {
|
||||||
|
flex-basis: 100%;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,285 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 100 70"
|
||||||
|
id="Layer_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" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</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,1.3613567)"
|
||||||
|
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.90320474" />
|
||||||
|
<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.90320474" />
|
||||||
|
<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.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02251983"
|
||||||
|
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.90320474"
|
||||||
|
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.90320474"
|
||||||
|
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.90320474"
|
||||||
|
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.83488393" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
|
||||||
|
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="g961">
|
||||||
|
<path
|
||||||
|
d="M 47.59211,34 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,33 48,33.2 48,33.5 48,33.8 47.836844,34 47.59211,34 Z"
|
||||||
|
id="path867"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path893"
|
||||||
|
d="M 47.59211,34 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,33 48,33.2 48,33.5 48,33.8 47.836844,34 47.59211,34 Z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path941"
|
||||||
|
d="M 47.538962,19 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.90320474"
|
||||||
|
id="path945"
|
||||||
|
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.90320474"
|
||||||
|
id="path947"
|
||||||
|
d="M 47.538962,28 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,19 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.90320474" />
|
||||||
|
<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="path955"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
d="M 47.538962,30.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.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path963"
|
||||||
|
d="M 47.538962,30.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,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"
|
||||||
|
id="path965"
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035035" />
|
||||||
|
<path
|
||||||
|
d="m 43.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"
|
||||||
|
id="path969"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754"
|
||||||
|
id="path983"
|
||||||
|
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" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path987"
|
||||||
|
d="M 47.538962,30.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,4)"
|
||||||
|
id="g935">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path870"
|
||||||
|
d="M 47.59211,58.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.90320474"
|
||||||
|
id="path872"
|
||||||
|
d="M 47.59211,61.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.90320474"
|
||||||
|
id="path874"
|
||||||
|
d="M 47.59211,64.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,55.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"
|
||||||
|
id="path876"
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02251983" />
|
||||||
|
<path
|
||||||
|
d="M 47.59211,58.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="path878"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
d="M 47.59211,61.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="path880"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
d="M 47.59211,64.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="path882"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
|
||||||
|
id="path884"
|
||||||
|
d="m 43.934682,67.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" />
|
||||||
|
<path
|
||||||
|
d="m 43.934682,64.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"
|
||||||
|
id="path886"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0,1.976146)"
|
||||||
|
id="g980">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
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.02251983" />
|
||||||
|
<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.90320474" />
|
||||||
|
<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.80778033" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0,4.8144531e-6)"
|
||||||
|
id="g974">
|
||||||
|
<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.90320474" />
|
||||||
|
<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.90320474" />
|
||||||
|
<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.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
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.90320474"
|
||||||
|
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.90320474"
|
||||||
|
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.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035023"
|
||||||
|
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.82494754"
|
||||||
|
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.82494754" />
|
||||||
|
<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.90320474" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0,4)"
|
||||||
|
id="g992">
|
||||||
|
<g
|
||||||
|
id="g1004">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path860"
|
||||||
|
d="M 77.59211,61.882858 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
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path904"
|
||||||
|
d="M 77.59211,49.882858 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
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path906"
|
||||||
|
d="M 77.59211,52.882858 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
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
|
||||||
|
id="path908"
|
||||||
|
d="M 77.59211,55.882858 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,46.882858 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="path910"
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.02251983" />
|
||||||
|
<path
|
||||||
|
d="M 77.59211,49.882858 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="path912"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
d="M 77.59211,52.882858 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="path914"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
d="M 77.59211,55.882858 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="path916"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
|
||||||
|
id="path918"
|
||||||
|
d="m 73.934682,58.850413 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" />
|
||||||
|
<path
|
||||||
|
d="m 73.934682,55.882858 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="path920"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,174 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
id="Layer_1"
|
||||||
|
viewBox="0 0 100 70"
|
||||||
|
version="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" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs13" />
|
||||||
|
<style
|
||||||
|
id="style2">.st2{fill:#e6e7e8}</style>
|
||||||
|
<path
|
||||||
|
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"
|
||||||
|
fill="#fff"
|
||||||
|
id="path4" />
|
||||||
|
<path
|
||||||
|
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"
|
||||||
|
fill="#565d66"
|
||||||
|
id="path6" />
|
||||||
|
<g
|
||||||
|
transform="translate(0,1.0917969e-6)"
|
||||||
|
id="g972">
|
||||||
|
<path
|
||||||
|
d="M 76.486343,15.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path941"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,21.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path945"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 67.342773,24.386443 H 47.721922 c -0.194266,0 -0.323777,-0.2 -0.323777,-0.5 0,-0.3 0.129511,-0.5 0.323777,-0.5 h 19.620851 c 0.194266,0 0.323777,0.2 0.323777,0.5 0,0.3 -0.129511,0.5 -0.323777,0.5 z"
|
||||||
|
id="path947"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.80470675" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path951"
|
||||||
|
d="M 76.486343,15.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path955"
|
||||||
|
d="M 76.486343,21.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035035"
|
||||||
|
id="path965"
|
||||||
|
d="m 43.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.88761204"
|
||||||
|
id="path969"
|
||||||
|
d="M 71.664079,18.386443 H 47.792074 c -0.236357,0 -0.393929,-0.2 -0.393929,-0.5 0,-0.3 0.157572,-0.5 0.393929,-0.5 h 23.872005 c 0.236358,0 0.393929,0.2 0.393929,0.5 0,0.3 -0.157571,0.5 -0.393929,0.5 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0,0.34661102)"
|
||||||
|
id="g977">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path893"
|
||||||
|
d="M 76.486343,29.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,29.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path899"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="m 38.395393,30 h -15.72296 c -0.155673,0 -0.259455,-0.3 -0.259455,-0.75 0,-0.45 0.103782,-0.75 0.259455,-0.75 h 15.72296 c 0.155673,0 0.259455,0.3 0.259455,0.75 0,0.45 -0.103782,0.75 -0.259455,0.75 z"
|
||||||
|
id="path903"
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:0.88224977" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0,0.30677905)"
|
||||||
|
id="g985">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path907"
|
||||||
|
d="M 76.486343,35.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path909"
|
||||||
|
d="M 76.486343,41.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,35.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path913"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,41.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path915"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="m 43.373558,36 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="path917"
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:1.01035035" />
|
||||||
|
<path
|
||||||
|
d="M 71.664079,38.386443 H 47.792074 c -0.236357,0 -0.393929,-0.2 -0.393929,-0.5 0,-0.3 0.157572,-0.5 0.393929,-0.5 h 23.872005 c 0.236358,0 0.393929,0.2 0.393929,0.5 0,0.3 -0.157571,0.5 -0.393929,0.5 z"
|
||||||
|
id="path919"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.88761204" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0,-0.34661088)"
|
||||||
|
id="g994">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path927"
|
||||||
|
d="M 76.486343,47.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path929"
|
||||||
|
d="M 76.486343,53.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.80470675"
|
||||||
|
id="path931"
|
||||||
|
d="M 67.342773,56.386443 H 47.721922 c -0.194266,0 -0.323777,-0.2 -0.323777,-0.5 0,-0.3 0.129511,-0.5 0.323777,-0.5 h 19.620851 c 0.194266,0 0.323777,0.2 0.323777,0.5 0,0.3 -0.129511,0.5 -0.323777,0.5 z" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,47.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path933"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,53.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path935"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 39.106559,48 H 22.683978 c -0.1626,0 -0.271,-0.3 -0.271,-0.75 0,-0.45 0.1084,-0.75 0.271,-0.75 h 16.422581 c 0.1626,0 0.271,0.3 0.271,0.75 0,0.45 -0.1084,0.75 -0.271,0.75 z"
|
||||||
|
id="path937"
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:0.90166479" />
|
||||||
|
<path
|
||||||
|
d="M 71.664079,50.386443 H 47.792074 c -0.236357,0 -0.393929,-0.2 -0.393929,-0.5 0,-0.3 0.157572,-0.5 0.393929,-0.5 h 23.872005 c 0.236358,0 0.393929,0.2 0.393929,0.5 0,0.3 -0.157571,0.5 -0.393929,0.5 z"
|
||||||
|
id="path939"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.88761204" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g963">
|
||||||
|
<path
|
||||||
|
d="M 76.486343,61.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path942"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 76.486343,67.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z"
|
||||||
|
id="path944"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386" />
|
||||||
|
<path
|
||||||
|
d="M 67.342773,70.386443 H 47.721922 c -0.194266,0 -0.323777,-0.2 -0.323777,-0.5 0,-0.3 0.129511,-0.5 0.323777,-0.5 h 19.620851 c 0.194266,0 0.323777,0.2 0.323777,0.5 0,0.3 -0.129511,0.5 -0.323777,0.5 z"
|
||||||
|
id="path946"
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.80470675" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path948"
|
||||||
|
d="M 76.486343,61.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.97181386"
|
||||||
|
id="path950"
|
||||||
|
d="M 76.486343,67.386443 H 47.870357 c -0.283327,0 -0.472212,-0.2 -0.472212,-0.5 0,-0.3 0.188885,-0.5 0.472212,-0.5 h 28.615986 c 0.283326,0 0.472211,0.2 0.472211,0.5 0,0.3 -0.188885,0.5 -0.472211,0.5 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#d6d8d9;fill-opacity:1;stroke-width:0.99803245"
|
||||||
|
id="path952"
|
||||||
|
d="M 42.865582,62 H 22.745001 c -0.199214,0 -0.332023,-0.3 -0.332023,-0.75 0,-0.45 0.132809,-0.75 0.332023,-0.75 h 20.120581 c 0.199214,0 0.332023,0.3 0.332023,0.75 0,0.45 -0.132809,0.75 -0.332023,0.75 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.88761204"
|
||||||
|
id="path954"
|
||||||
|
d="M 71.664079,64.386443 H 47.792074 c -0.236357,0 -0.393929,-0.2 -0.393929,-0.5 0,-0.3 0.157572,-0.5 0.393929,-0.5 h 23.872005 c 0.236358,0 0.393929,0.2 0.393929,0.5 0,0.3 -0.157571,0.5 -0.393929,0.5 z" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 10 KiB |
|
@ -1 +0,0 @@
|
||||||
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 70"><style>.st2{fill:#e6e7e8}</style><path 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" fill="#fff"/><path 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" fill="#565d66"/><path class="st2" d="M77.5 13h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 16h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 19h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 43h-55c-.3 0-.5-.2-.5-.5v-21c0-.3.2-.5.5-.5h55c.3 0 .5.2.5.5v21c0 .3-.2.5-.5.5zM77.5 46h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 49h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5zM42.9 64H22.5c-.3 0-.5-.2-.5-.5v-12c0-.3.2-.5.5-.5h20.4c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5zM77.5 52H47.2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h30.3c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 55H47.2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h30.3c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 58H47.2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h30.3c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 61H47.2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h30.3c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 64H47.2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h30.3c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 67h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5zM77.5 70h-55c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h55c.3 0 .5.2.5.5s-.2.5-.5.5z"/></svg>
|
|
Before Width: | Height: | Size: 1.5 KiB |
41
style.css
41
style.css
|
@ -638,9 +638,9 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
||||||
|
|
||||||
.tainacan-item-single .tainacan-item-section__metadata {
|
.tainacan-item-single .tainacan-item-section__metadata {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
-moz-column-width: var(--column-width, 400);
|
-moz-column-width: var(--metadata-column-width, 400px);
|
||||||
-webkit-column-width: var(--column-width, 400);
|
-webkit-column-width: var(--metadata-column-width, 400px);
|
||||||
column-width: var(--column-width, 400);
|
column-width: var(--metadata-column-width, 400px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tainacan-item-single .tainacan-item-section__metadata div {
|
.tainacan-item-single .tainacan-item-section__metadata div {
|
||||||
|
@ -716,6 +716,9 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
||||||
text-transform: var(--textTransform);
|
text-transform: var(--textTransform);
|
||||||
-webkit-text-decoration: var(--textDecoration);
|
-webkit-text-decoration: var(--textDecoration);
|
||||||
text-decoration: var(--textDecoration);
|
text-decoration: var(--textDecoration);
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
border-bottom: var(--metadata-border, 1px solid #e0e5eb);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tainacan-item-single .tainacan-item-section__metadata .tainacan-item-section__metadata-thumbnail img {
|
.tainacan-item-single .tainacan-item-section__metadata .tainacan-item-section__metadata-thumbnail img {
|
||||||
|
@ -744,7 +747,37 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
||||||
|
|
||||||
.tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group {
|
.tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group {
|
||||||
padding-left: 1.5rem;
|
padding-left: 1.5rem;
|
||||||
border-left: 1px solid #f2f2f2;
|
border-left: 1px solid #e0e5eb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-label {
|
||||||
|
flex-basis: 40%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
border-right: var(--metadata-border, 1px solid #e0e5eb);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-value {
|
||||||
|
flex-basis: 60%;
|
||||||
|
padding-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 767px) {
|
||||||
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-label {
|
||||||
|
flex-basis: 100%;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
}
|
||||||
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-value {
|
||||||
|
flex-basis: 100%;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tainacan-item-single .tainacan-item-file-download {
|
.tainacan-item-single .tainacan-item-file-download {
|
||||||
|
|
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
|
@ -8,7 +8,7 @@
|
||||||
<?php echo esc_html( get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'blocksy-tainacan' ) ) ); ?>
|
<?php echo esc_html( get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'blocksy-tainacan' ) ) ); ?>
|
||||||
</h2>
|
</h2>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<div class="tainacan-item-section__metadata">
|
<div class="tainacan-item-section__metadata <?php echo get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') ?>">
|
||||||
<?php if (has_post_thumbnail() && (get_theme_mod($prefix . '_show_thumbnail', 'no') === 'yes') ): ?>
|
<?php if (has_post_thumbnail() && (get_theme_mod($prefix . '_show_thumbnail', 'no') === 'yes') ): ?>
|
||||||
<div class="tainacan-item-section__metadata-thumbnail">
|
<div class="tainacan-item-section__metadata-thumbnail">
|
||||||
<h3 class="tainacan-metadata-label"><?php _e( 'Thumbnail', 'blocksy-tainacan' ); ?></h3>
|
<h3 class="tainacan-metadata-label"><?php _e( 'Thumbnail', 'blocksy-tainacan' ); ?></h3>
|
||||||
|
@ -18,10 +18,10 @@
|
||||||
<?php do_action( 'blocksy-tainacan-single-item-metadata-begin' ); ?>
|
<?php do_action( 'blocksy-tainacan-single-item-metadata-begin' ); ?>
|
||||||
<?php
|
<?php
|
||||||
$args = array(
|
$args = array(
|
||||||
'before_title' => '<div><h3 class="tainacan-metadata-label">',
|
'before_title' => '<h3 class="tainacan-metadata-label">',
|
||||||
'after_title' => '</h3>',
|
'after_title' => '</h3>',
|
||||||
'before_value' => '<p class="tainacan-metadata-value">',
|
'before_value' => '<p class="tainacan-metadata-value">',
|
||||||
'after_value' => '</p></div>',
|
'after_value' => '</p>',
|
||||||
'exclude_title' => (get_theme_mod($prefix . '_show_title_metadata', 'yes') === 'no')
|
'exclude_title' => (get_theme_mod($prefix . '_show_title_metadata', 'yes') === 'no')
|
||||||
);
|
);
|
||||||
tainacan_the_metadata( $args );
|
tainacan_the_metadata( $args );
|
||||||
|
|
Loading…
Reference in New Issue