Adds new layout options for single item page layout.

This commit is contained in:
mateuswetah 2020-12-29 01:33:20 -03:00
parent 60f6894338
commit 4b95c60a96
27 changed files with 1617 additions and 594 deletions

View File

@ -417,8 +417,10 @@ function blocksy_tainacan_custom_post_types_single_options( $options, $post_type
], false);
if ( is_array($item_extra_options) ) {
$options['options'][$post_type . '_single_section_options']['inner-options'] = array_merge(
$options['options'][$post_type . '_single_section_options']['inner-options'],
array_splice(
$options['options'][$post_type . '_single_section_options']['inner-options'][0],
1,
0,
$item_extra_options
);
}

View File

@ -10,7 +10,7 @@ blc_call_fnc(['fnc' => 'blocksy_output_responsive'], [
'css' => $css,
'tablet_css' => $tablet_css,
'mobile_css' => $mobile_css,
'selector' => ".single-item-collection--metadata",
'selector' => ".tainacan-item-section__metadata",
'variableName' => 'column-width',
'value' => get_theme_mod($prefix . '_metadata_columns', [
'mobile' => '200px',

View File

@ -28,3 +28,15 @@ if (! function_exists('blc_call_fnc')) {
return call_user_func($args['fnc'], ...$params);
}
}
/**
* Return the url to be used in image picker from the child theme.
* The original function is on the /admin/helpers/options.php folder in the parent theme.
*
* @param string $path image name.
*/
if (! function_exists('blocksy_tainacan_image_picker_url')) {
function blocksy_tainacan_image_picker_url($path) {
return get_stylesheet_directory_uri() . '/static/images/' . $path;
}
}

View File

@ -9,27 +9,29 @@ if (! isset($is_bbpress)) {
}
$options = [
[
blocksy_rand_md5() => [
'type' => 'ct-title',
'label' => __( 'Tainacan Item Elements', 'blocksy' ),
],
],
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/gallery-mode.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'no'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/tainacan-single-structure.php', [
'prefix' => $post_type->name . '_single'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/section-labels.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'yes'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-list.php', [
'prefix' => $post_type->name . '_single',
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/hide-download-button.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'no'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-title-metadata.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'yes'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-thumbnail.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'no'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-columns.php', [
'prefix' => $post_type->name . '_single'
], false),
];

View File

@ -0,0 +1,30 @@
<?php
if (! isset($prefix)) {
$prefix = '';
} else {
$prefix = $prefix . '_';
}
$options = [
$prefix . 'metadata-list' => [
'label' => __( 'Metadata List', 'blocksy-tainacan' ),
'type' => 'ct-panel',
'sync' => blocksy_sync_whole_page([
'prefix' => $prefix,
]),
'inner-options' => [
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-title-metadata.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'yes'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/show-thumbnail.php', [
'prefix' => $post_type->name . '_single',
'enabled' => 'no'
], false),
blocksy_get_options(get_stylesheet_directory() . '/inc/options/single-elements/metadata-columns.php', [
'prefix' => $post_type->name . '_single'
], false)
]
]
];

View File

@ -20,25 +20,51 @@ $options = [
'prefix' => $prefix,
]),
'inner-options' => [
$prefix . 'section_document_label' => [
'label' => __( 'Label for the "Document" section', 'blocksy-tainacan' ),
'desc' => __( 'Leave it blank for not displaying any label.', 'blocksy-tainacan' ),
'type' => 'text',
'design' => 'block',
'value' => __( 'Document', 'blocksy-tainacan' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
blocksy_rand_md5() => [
'type' => 'ct-condition',
'condition' => [
$prefix . 'gallery_mode' => 'no'
],
'options' => [
$prefix . 'section_document_label' => [
'label' => __( 'Label for the "Document" section', 'blocksy-tainacan' ),
'desc' => __( 'Leave it blank for not displaying any label.', 'blocksy-tainacan' ),
'type' => 'text',
'design' => 'block',
'value' => __( 'Document', 'blocksy-tainacan' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
],
$prefix . 'section_attachments_label' => [
'label' => __( 'Label for the "Attachments" section', 'blocksy-tainacan' ),
'desc' => __( 'Leave it blank for not displaying any label.', 'blocksy-tainacan' ),
'type' => 'text',
'design' => 'block',
'value' => __( 'Attachments', 'blocksy-tainacan' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
],
]
],
$prefix . 'section_attachments_label' => [
'label' => __( 'Label for the "Attachments" section', 'blocksy-tainacan' ),
'desc' => __( 'Leave it blank for not displaying any label.', 'blocksy-tainacan' ),
'type' => 'text',
'design' => 'block',
'value' => __( 'Attachments', 'blocksy-tainacan' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
blocksy_rand_md5() => [
'type' => 'ct-condition',
'condition' => [
$prefix . 'gallery_mode' => 'yes'
],
'options' => [
$prefix . 'section_documents_label' => [
'label' => __( 'Label for the "Documents" section', 'blocksy-tainacan' ),
'desc' => __( 'Leave it blank for not displaying any label. This section is displayed only in Gallery mode.', 'blocksy-tainacan' ),
'type' => 'text',
'design' => 'block',
'value' => __( 'Documents', 'blocksy-tainacan' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
],
]
],
$prefix . 'section_metadata_label' => [
'label' => __( 'Label for the "Metadata" section', 'blocksy-tainacan' ),

View File

@ -0,0 +1,46 @@
<?php
if (! isset($prefix)) {
$prefix = '';
} else {
$prefix = $prefix . '_';
}
$options = [
$prefix . 'page_structure_type' => [
'label' => false,
'type' => 'ct-image-picker',
'value' => 'type-dam',
'design' => 'block',
'setting' => [ 'transport' => 'postMessage' ],
'choices' => [
'type-dam' => [
'src' => blocksy_tainacan_image_picker_url( 'type-dam.svg' ),
'title' => __( 'Document, Attachments, Metadata', 'blocksy' ),
],
'type-dma' => [
'src' => blocksy_tainacan_image_picker_url( 'type-dma.svg' ),
'title' => __( 'Document, Metadata, Attachments', 'blocksy' ),
],
'type-mda' => [
'src' => blocksy_tainacan_image_picker_url( 'type-mda.svg' ),
'title' => __( 'Metadata, Document, Attachments', 'blocksy' ),
],
'type-gm' => [
'src' => blocksy_tainacan_image_picker_url( 'type-gm.svg' ),
'title' => __( 'Metadata to the right', 'blocksy' ),
],
'type-mg' => [
'src' => blocksy_tainacan_image_picker_url( 'type-mg.svg' ),
'title' => __( 'Metadata to the left', 'blocksy' ),
],
],
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])
],
];

View File

@ -89,7 +89,7 @@ var initPhotoSwipeFromDOM = function(gallerySelector) {
h: parseInt(imgHeight, 10)
};
if (linkEl.children[1] && linkEl.children[1].classList.contains('single-item-file-name')) {
if (linkEl.children[1] && linkEl.children[1].classList.contains('swiper-slide-name')) {
item.title = linkEl.children[1].innerText;
}
}
@ -178,10 +178,10 @@ var initPhotoSwipeFromDOM = function(gallerySelector) {
};
var openPhotoSwipe = function(
index,
galleryElement,
disableAnimation,
fromURL
index,
galleryElement,
disableAnimation,
fromURL
) {
var pswpElement = document.querySelectorAll(".pswp")[0],
gallery,

View File

@ -17,6 +17,22 @@
--tainacan-block-gray5: var(--headingColor, rgba(44, 62, 80, 1));
}
// Grid mixin for display: grid compatibility
@mixin display-grid {
flex-wrap: wrap;
display: flex;
display: -ms-grid;
display: grid;
}
@mixin grid-child ($col-start, $col-end, $row-start, $row-end) {
-ms-grid-column: $col-start;
-ms-grid-column-span: $col-end - $col-start;
-ms-grid-row: $row-start;
-ms-grid-row-span: $row-end - $row-start;
grid-column: #{$col-start}/#{$col-end};
grid-row: #{$row-start}/#{$row-end};
}
/* Remaining imports */
@import './tainacan-item-archive.scss';
@import './tainacan-item-single.scss';

View File

@ -21,7 +21,7 @@
top: -52px !important;
background: transparent !important;
padding: 6px 13px;
display: grid;
@include display-grid;
grid-template-columns: 1fr minmax(auto, 1300px) 1fr;
grid-template-rows: auto 1fr;
grid-template-areas:

View File

@ -1,7 +1,57 @@
/* Single Item Page */
.single-item-data-section {
.tainacan-item-single {
// Overall page layout structure -------------------
@include display-grid;
align-items: start;
grid-column-gap: 32px;
column-gap: 32px;
grid-row-gap: 2.25rem;
row-gap: 2.25rem;
.tainacan-item-section {
max-width: var(--block-max-width);;
align-self: flex-start;
align-self: start;
}
.tainacan-item-section--document { grid-area: document }
.tainacan-item-section--attachments { grid-area: attachments }
.tainacan-item-section--gallery { grid-area: gallery }
.tainacan-item-section--metadata { grid-area: metadata }
&.tainacan-item-single--layout-type-dam {
grid-template-areas:
'document'
'attachments'
'metadata';
}
&.tainacan-item-single--layout-type-dma {
grid-template-areas:
'document'
'metadata'
'attachments';
}
&.tainacan-item-single--layout-type-mda {
grid-template-areas:
'metadata'
'document'
'attachments';
}
&.tainacan-item-single--layout-type-mg {
grid-template-areas:
'metadata gallery document'
'metadata gallery attachments'
'metadata . .'
}
&.tainacan-item-single--layout-type-gm {
grid-template-areas:
'gallery document metadata'
'gallery attachments metadata'
'. . metadata'
}
// Headings and spacing ----------------------------
h1 {
--fontSize: 30px;
}
@ -20,56 +70,16 @@
h6 {
--fontSize: 16px;
}
section{
margin-bottom: 2.25rem;
}
.tainacan-item-file-download {
position: absolute;
opacity: 0;
transform: scale(0);
border-radius: 24px;
width: 36px;
height: 36px;
bottom: -18px;
right: calc(50% - 18px);
cursor: pointer;
font-size: 0;
background-color: var(--paletteColor1, #3eaf7c);
color: white;
transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
a {
height: 38px;
width: 38px;
display: block;
position: relative;
z-index: 99;
}
&::after {
position: relative;
top: -38px;
display: inline-block;
font: normal normal normal 20px/1 "TainacanIcons";
font-size: 1.25rem !important;
line-height: 2.25rem;
text-rendering: auto;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 1.25em;
text-transform: none !important;
letter-spacing: normal !important;
content: 'download';
display: flex;
justify-content: center;
align-items: center;
}
}
.single-item-collection--document {
// Document, Attachment and Gallery sections -----------------
.tainacan-item-section__document {
display: flex;
justify-content: center;
align-items: center;
height: auto;
position: relative;
&:hover {
.tainacan-item-file-download {
opacity: 1;
@ -106,7 +116,7 @@
}
}
}
.single-item-collection--gallery-items {
.tainacan-item-section__gallery-items {
font-weight: normal;
transition: font-weight 0.3s ease;
@ -117,7 +127,7 @@
transition: border 0.3s ease;
}
}
.single-item-collection--attachments-file {
.tainacan-item-section__attachments-file {
&:hover {
.tainacan-item-file-download {
opacity: 1;
@ -125,13 +135,13 @@
}
}
}
.single-item-collection--gallery {
.tainacan-item-section__gallery {
margin-bottom: 24px;
ul {
list-style: none;
padding: 0;
}
.tainacan-content {
.tainacan-item-section__document {
margin: 0;
img {
max-height: 60vh;
@ -146,8 +156,8 @@
}
}
}
.single-item-collection--gallery-items,
.single-item-collection--attachments {
.tainacan-item-section__gallery-items,
.tainacan-item-section__attachments {
position: relative;
padding: 0 60px;
@ -169,7 +179,7 @@
list-style: none;
padding: 0;
}
.single-item-collection--attachments-file {
.tainacan-item-section__attachments-file {
text-align: center;
vertical-align: top;
cursor: pointer;
@ -215,7 +225,39 @@
}
--swiper-theme-color: var(--paletteColor1, #3eaf7c);
--swiper-navigation-color: var(--paletteColor1, #3eaf7c);
.single-item-collection--metadata {
// Photoswip zoom ---------------------------------
.pswp__zoom-wrap .attachment-without-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
& > iframe {
min-height: 80vh;
width: 80%;
border: none;
}
& > a,
& > p {
z-index: 99;
padding: 1rem 4.33337vw;
background: white;
border-radius: var(--borderRadius, 3px);
word-wrap: break-word;
}
& > audio,
& > video {
min-height: 54px;
padding: 12px;
}
}
// Metadata list -------------------------------------
.tainacan-item-section__metadata {
height: 100%;
div {
@ -267,6 +309,9 @@
p {
word-wrap: break-word;
}
.tainacan-item-section__metadata-thumbnail img {
border-radius: var(--borderRadius, 3px);
}
// Metadata type textarea has different separator
.multivalue-separator {
@ -294,33 +339,48 @@
}
}
// Photoswip zoom
.pswp__zoom-wrap .attachment-without-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
// Document Download button -------------------------------------
.tainacan-item-file-download {
position: absolute;
opacity: 0;
transform: scale(0);
border-radius: 24px;
width: 36px;
height: 36px;
bottom: -18px;
right: calc(50% - 18px);
cursor: pointer;
font-size: 0;
background-color: var(--paletteColor1, #3eaf7c);
color: white;
transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
& > iframe {
min-height: 80vh;
width: 80%;
border: none;
}
& > a,
& > p {
a {
height: 38px;
width: 38px;
display: block;
position: relative;
z-index: 99;
padding: 1rem 4.33337vw;
background: white;
border-radius: var(--borderRadius, 3px);
word-wrap: break-word;
}
& > audio,
& > video {
min-height: 54px;
padding: 12px;
}
&::after {
position: relative;
top: -38px;
display: inline-block;
font: normal normal normal 20px/1 "TainacanIcons";
font-size: 1.25rem !important;
line-height: 2.25rem;
text-rendering: auto;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 1.25em;
text-transform: none !important;
letter-spacing: normal !important;
content: 'download';
display: flex;
justify-content: center;
align-items: center;
}
}
}

1
static/images/normal.svg Normal file
View File

@ -0,0 +1 @@
<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>

After

Width:  |  Height:  |  Size: 1.5 KiB

147
static/images/type-dam.svg Normal file
View File

@ -0,0 +1,147 @@
<?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" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.9447301"
id="path875"
d="m 70.908945,39.85249 h -41.81789 c -0.228098,0 -0.380164,-0.234771 -0.380164,-0.586928 V 14.614517 c 0,-0.352158 0.152066,-0.586929 0.380164,-0.586929 h 41.81789 c 0.228098,0 0.380164,0.234771 0.380164,0.586929 v 24.651045 c 0,0.352157 -0.152066,0.586928 -0.380164,0.586928 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path869"
d="m 66.075197,51.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path867"
d="M 77.59211,56 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 77.836844,55 78,55.2 78,55.5 78,55.8 77.836844,56 77.59211,56 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path863"
d="M 77.59211,62 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 77.836844,61 78,61.2 78,61.5 78,61.8 77.836844,62 77.59211,62 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path861"
d="M 77.59211,65 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 77.836844,64 78,64.2 78,64.5 78,64.8 77.836844,65 77.59211,65 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path859"
d="M 77.59211,68 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 77.836844,67 78,67.2 78,67.5 78,67.8 77.836844,68 77.59211,68 Z" />
<path
d="m 77.796701,51.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path883"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
d="m 54.353693,51.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path885"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path887"
d="m 42.632188,51.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path891"
d="m 30.910683,51.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
d="M 77.59211,56 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 77.836844,55 78,55.2 78,55.5 78,55.8 77.836844,56 77.59211,56 Z"
id="path893"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="m 73.934682,59 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="path895"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
<path
d="M 77.59211,62 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 77.836844,61 78,61.2 78,61.5 78,61.8 77.836844,62 77.59211,62 Z"
id="path897"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,65 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 77.836844,64 78,64.2 78,64.5 78,64.8 77.836844,65 77.59211,65 Z"
id="path899"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,68 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 77.836844,67 78,67.2 78,67.5 78,67.8 77.836844,68 77.59211,68 Z"
id="path901"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
id="path911"
d="m 73.934682,70.967555 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,68 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="path921"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
<path
d="M 47.538962,59 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="path941"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 47.538962,65 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="path945"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 47.538962,68 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="path947"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path951"
d="M 47.538962,59 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="path955"
d="M 47.538962,65 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="path961"
d="M 47.538962,70.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 47.538962,70.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="path963"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754"
id="path965"
d="m 43.373558,56 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.82494754"
id="path969"
d="m 43.373558,62 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 43.373558,68 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="path983"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754" />
<path
d="M 47.538962,70.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="path987"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

147
static/images/type-dma.svg Normal file
View File

@ -0,0 +1,147 @@
<?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" />
<path
d="m 70.908945,39.85249 h -41.81789 c -0.228098,0 -0.380164,-0.234771 -0.380164,-0.586928 V 14.614517 c 0,-0.352158 0.152066,-0.586929 0.380164,-0.586929 h 41.81789 c 0.228098,0 0.380164,0.234771 0.380164,0.586929 v 24.651045 c 0,0.352157 -0.152066,0.586928 -0.380164,0.586928 z"
id="path875"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.9447301" />
<path
d="m 66.075197,70.806082 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path869"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
d="M 77.59211,44.14601 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="path867"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,50.14601 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="path863"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,53.14601 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="path861"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,56.14601 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="path859"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path883"
d="m 77.796701,70.806082 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path885"
d="m 54.353693,70.806082 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
d="m 42.632188,70.806082 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path887"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
d="m 30.910683,70.806082 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path891"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path893"
d="M 77.59211,44.14601 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.83488393"
id="path895"
d="m 73.934682,47.14601 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
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path897"
d="M 77.59211,50.14601 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="path899"
d="M 77.59211,53.14601 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="path901"
d="M 77.59211,56.14601 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,59.113565 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 73.934682,56.14601 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
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path941"
d="M 47.538962,47.14601 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,53.14601 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,56.14601 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,47.14601 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,53.14601 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,59.113565 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,59.113565 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,44.14601 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="path965"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754" />
<path
d="m 43.373558,50.14601 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,56.14601 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,59.113565 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" />
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

183
static/images/type-gm.svg Normal file
View File

@ -0,0 +1,183 @@
<?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" />
<path
d="M 45.990052,41.380473 H 22.633909 c -0.127403,0 -0.212328,-0.248652 -0.212328,-0.621656 V 14.649243 c 0,-0.372993 0.08494,-0.621655 0.212328,-0.621655 h 23.356143 c 0.127402,0 0.212329,0.24865 0.212329,0.621655 v 26.109574 c 0,0.372994 -0.08492,0.621656 -0.212329,0.621656 z"
id="path875"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.72662359" />
<path
d="m 39.954481,47.549975 h -4.942852 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121149,0.07977 0.121149,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121149,0.199428 z"
id="path869"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279"
id="path883"
d="M 46.188932,47.549975 H 41.24608 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121148,0.07977 0.121148,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121148,0.199428 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279"
id="path885"
d="m 33.72003,47.549975 h -4.942852 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121149,0.07977 0.121149,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121149,0.199428 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
id="path921"
d="m 43.934682,48 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 27.485582,47.549975 H 22.54273 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121149,0.07977 0.121149,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121149,0.199428 z"
id="path888"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path952"
d="M 76.005088,34 H 51.286994 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="path954"
d="M 76.005088,42 H 51.286994 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="path956"
d="M 76.005088,45 H 51.286994 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="path958"
d="M 76.005088,48 H 51.286994 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 76.005088,34 H 51.286994 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="path960"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 72.34766,39 H 51.22762 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="path962"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
<path
d="M 76.005088,42 H 51.286994 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="path964"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 76.005088,45 H 51.286994 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="path966"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 76.005088,48 H 51.286994 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="path968"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
id="path970"
d="M 72.34766,50.967555 H 51.22762 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 72.34766,48 H 51.22762 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="path972"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
<path
d="M 75.95194,19 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path974"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 75.95194,25 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path976"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 75.95194,28 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path978"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path980"
d="M 75.95194,19 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path982"
d="M 75.95194,25 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path984"
d="M 75.95194,30.967555 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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 75.95194,30.967555 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path986"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754"
id="path988"
d="m 71.786536,16 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.82494754"
id="path990"
d="m 71.786536,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 71.786536,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="path992"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754" />
<path
d="M 75.95194,30.967555 H 51.233846 c -0.244734,0 -0.40789,-0.2 -0.40789,-0.5 0,-0.3 0.163156,-0.5 0.40789,-0.5 H 75.95194 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="path994"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 76.005088,58 H 51.286994 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="path996"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 76.005088,61 H 51.286994 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="path998"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 76.005088,64 H 51.286994 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="path1000"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
id="path1002"
d="M 72.34766,55 H 51.22762 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
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path1004"
d="M 76.005088,58 H 51.286994 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="path1006"
d="M 76.005088,61 H 51.286994 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="path1008"
d="M 76.005088,64 H 51.286994 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 72.34766,66.967555 H 51.22762 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="path1010"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
id="path1012"
d="M 72.34766,64 H 51.22762 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" />
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

147
static/images/type-mda.svg Normal file
View File

@ -0,0 +1,147 @@
<?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" />
<path
d="m 70.908945,59.85249 h -41.81789 c -0.228098,0 -0.380164,-0.234771 -0.380164,-0.586928 V 34.614517 c 0,-0.352158 0.152066,-0.586929 0.380164,-0.586929 h 41.81789 c 0.228098,0 0.380164,0.234771 0.380164,0.586929 v 24.651045 c 0,0.352157 -0.152066,0.586928 -0.380164,0.586928 z"
id="path875"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.9447301" />
<path
d="m 66.075197,71.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path869"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
d="M 77.59211,16 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 77.836844,15 78,15.2 78,15.5 78,15.8 77.836844,16 77.59211,16 Z"
id="path867"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,22 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 77.836844,21 78,21.2 78,21.5 78,21.8 77.836844,22 77.59211,22 Z"
id="path863"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,25 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 77.836844,24 78,24.2 78,24.5 78,24.8 77.836844,25 77.59211,25 Z"
id="path861"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 77.59211,28 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 77.836844,27 78,27.2 78,27.5 78,27.8 77.836844,28 77.59211,28 Z"
id="path859"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path883"
d="m 77.796701,71.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367"
id="path885"
d="m 54.353693,71.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z" />
<path
d="m 42.632188,71.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path887"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
d="m 30.910683,71.711009 h -8.29441 c -0.121977,0 -0.203295,-0.133861 -0.203295,-0.334654 v -8.031692 c 0,-0.200793 0.08132,-0.334654 0.203295,-0.334654 h 8.29441 c 0.121977,0 0.203295,0.133861 0.203295,0.334654 v 8.031692 c 0,0.200793 -0.08132,0.334654 -0.203295,0.334654 z"
id="path891"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.52166367" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path893"
d="M 77.59211,16 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 77.836844,15 78,15.2 78,15.5 78,15.8 77.836844,16 77.59211,16 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393"
id="path895"
d="m 73.934682,19 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
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path897"
d="M 77.59211,22 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 77.836844,21 78,21.2 78,21.5 78,21.8 77.836844,22 77.59211,22 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path899"
d="M 77.59211,25 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 77.836844,24 78,24.2 78,24.5 78,24.8 77.836844,25 77.59211,25 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path901"
d="M 77.59211,28 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 77.836844,27 78,27.2 78,27.5 78,27.8 77.836844,28 77.59211,28 Z" />
<path
d="m 73.934682,30.967555 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 73.934682,28 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
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.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="path965"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754" />
<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" />
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

179
static/images/type-mg.svg Normal file
View File

@ -0,0 +1,179 @@
<?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" />
<path
d="M 76.154313,41.380473 H 52.79817 c -0.127403,0 -0.212328,-0.248652 -0.212328,-0.621656 V 14.649243 c 0,-0.372993 0.08494,-0.621655 0.212328,-0.621655 h 23.356143 c 0.127402,0 0.212329,0.24865 0.212329,0.621655 v 26.109574 c 0,0.372994 -0.08492,0.621656 -0.212329,0.621656 z"
id="path875"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.72662359" />
<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
d="M 47.59211,42 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,41 48,41.2 48,41.5 48,41.8 47.836844,42 47.59211,42 Z"
id="path863"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 47.59211,45 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,44 48,44.2 48,44.5 48,44.8 47.836844,45 47.59211,45 Z"
id="path861"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 47.59211,48 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,47 48,47.2 48,47.5 48,47.8 47.836844,48 47.59211,48 Z"
id="path859"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 70.118742,47.549975 H 65.17589 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121149,0.07977 0.121149,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121149,0.199428 z"
id="path869"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279"
id="path883"
d="m 76.353193,47.549975 h -4.942852 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121148,0.07977 0.121148,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121148,0.199428 z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279"
id="path885"
d="m 63.884291,47.549975 h -4.942852 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121149,0.07977 0.121149,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121149,0.199428 z" />
<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.83488393"
id="path895"
d="m 43.934682,39 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
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path897"
d="M 47.59211,42 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,41 48,41.2 48,41.5 48,41.8 47.836844,42 47.59211,42 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path899"
d="M 47.59211,45 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,44 48,44.2 48,44.5 48,44.8 47.836844,45 47.59211,45 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path901"
d="M 47.59211,48 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,47 48,47.2 48,47.5 48,47.8 47.836844,48 47.59211,48 Z" />
<path
d="m 43.934682,50.967555 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 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
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.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="path965"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.82494754" />
<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" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path870"
d="M 47.59211,58 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,57 48,57.2 48,57.5 48,57.8 47.836844,58 47.59211,58 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path872"
d="M 47.59211,61 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,60 48,60.2 48,60.5 48,60.8 47.836844,61 47.59211,61 Z" />
<path
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474"
id="path874"
d="M 47.59211,64 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,63 48,63.2 48,63.5 48,63.8 47.836844,64 47.59211,64 Z" />
<path
d="m 43.934682,55 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="path876"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.83488393" />
<path
d="M 47.59211,58 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,57 48,57.2 48,57.5 48,57.8 47.836844,58 47.59211,58 Z"
id="path878"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 47.59211,61 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,60 48,60.2 48,60.5 48,60.8 47.836844,61 47.59211,61 Z"
id="path880"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.90320474" />
<path
d="M 47.59211,64 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,63 48,63.2 48,63.5 48,63.8 47.836844,64 47.59211,64 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,66.967555 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 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" />
<path
d="m 57.649843,47.549975 h -4.942852 c -0.07269,0 -0.121149,-0.07977 -0.121149,-0.199428 v -4.786293 c 0,-0.119657 0.04846,-0.199428 0.121149,-0.199428 h 4.942852 c 0.07269,0 0.121149,0.07977 0.121149,0.199428 v 4.786293 c 0,0.119657 -0.04846,0.199428 -0.121149,0.199428 z"
id="path888"
style="fill:#e6e7e8;fill-opacity:1;stroke-width:0.31087279" />
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

686
style.css
View File

@ -45,6 +45,9 @@
top: -52px !important;
background: transparent !important;
padding: 6px 13px;
flex-wrap: wrap;
display: flex;
display: -ms-grid;
display: grid;
grid-template-columns: 1fr minmax(auto, 1300px) 1fr;
grid-template-rows: auto 1fr;
@ -305,40 +308,396 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
}
/* Single Item Page */
.single-item-data-section {
.tainacan-item-single {
flex-wrap: wrap;
display: flex;
display: -ms-grid;
display: grid;
align-items: start;
grid-column-gap: 32px;
column-gap: 32px;
grid-row-gap: 2.25rem;
row-gap: 2.25rem;
--swiper-theme-color: var(--paletteColor1, #3eaf7c);
--swiper-navigation-color: var(--paletteColor1, #3eaf7c);
}
.single-item-data-section h1 {
.tainacan-item-single .tainacan-item-section {
max-width: var(--block-max-width);
align-self: flex-start;
align-self: start;
}
.tainacan-item-single .tainacan-item-section--document {
grid-area: document;
}
.tainacan-item-single .tainacan-item-section--attachments {
grid-area: attachments;
}
.tainacan-item-single .tainacan-item-section--gallery {
grid-area: gallery;
}
.tainacan-item-single .tainacan-item-section--metadata {
grid-area: metadata;
}
.tainacan-item-single.tainacan-item-single--layout-type-dam {
grid-template-areas: 'document' 'attachments' 'metadata';
}
.tainacan-item-single.tainacan-item-single--layout-type-dma {
grid-template-areas: 'document' 'metadata' 'attachments';
}
.tainacan-item-single.tainacan-item-single--layout-type-mda {
grid-template-areas: 'metadata' 'document' 'attachments';
}
.tainacan-item-single.tainacan-item-single--layout-type-mg {
grid-template-areas: 'metadata gallery document' 'metadata gallery attachments' 'metadata . .';
}
.tainacan-item-single.tainacan-item-single--layout-type-gm {
grid-template-areas: 'gallery document metadata' 'gallery attachments metadata' '. . metadata';
}
.tainacan-item-single h1 {
--fontSize: 30px;
}
.single-item-data-section h2 {
.tainacan-item-single h2 {
--fontSize: 26px;
}
.single-item-data-section h3 {
.tainacan-item-single h3 {
--fontSize: 22px;
}
.single-item-data-section h4 {
.tainacan-item-single h4 {
--fontSize: 20px;
}
.single-item-data-section h5 {
.tainacan-item-single h5 {
--fontSize: 18px;
}
.single-item-data-section h6 {
.tainacan-item-single h6 {
--fontSize: 16px;
}
.single-item-data-section section {
margin-bottom: 2.25rem;
.tainacan-item-single .tainacan-item-section__document {
display: flex;
justify-content: center;
align-items: center;
height: auto;
position: relative;
}
.single-item-data-section .tainacan-item-file-download {
.tainacan-item-single .tainacan-item-section__document:hover .tainacan-item-file-download {
opacity: 1;
transform: scale(1);
}
.tainacan-item-single .tainacan-item-section__document > iframe, .tainacan-item-single .tainacan-item-section__document img.attachment-large {
display: block;
height: auto;
margin: 0 auto;
border: none;
}
.tainacan-item-single .tainacan-item-section__document > audio {
width: 100%;
}
@media only screen and (min-width: 768px) {
.tainacan-item-single .tainacan-item-section__document > iframe {
min-height: 600px;
}
}
@media only screen and (max-width: 576px) {
.tainacan-item-single .tainacan-item-section__document > iframe {
min-height: 429px;
}
}
.tainacan-item-single .tainacan-item-section__document .tainacan-embed-container {
width: 100%;
}
.tainacan-item-single .tainacan-item-section__document .tainacan-embed-container iframe {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.tainacan-item-single .tainacan-item-section__gallery-items {
font-weight: normal;
transition: font-weight 0.3s ease;
}
.tainacan-item-single .tainacan-item-section__gallery-items img {
border-radius: var(--borderRadius, 3px);
border-bottom: 4px solid transparent;
margin-bottom: 4px;
transition: border 0.3s ease;
}
.tainacan-item-single .tainacan-item-section__attachments-file:hover .tainacan-item-file-download {
opacity: 1;
transform: scale(1);
}
.tainacan-item-single .tainacan-item-section__gallery {
margin-bottom: 24px;
}
.tainacan-item-single .tainacan-item-section__gallery ul {
list-style: none;
padding: 0;
}
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document {
margin: 0;
}
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document img {
max-height: 60vh;
width: auto;
}
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document video {
width: auto;
}
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document iframe {
min-height: 200px;
height: 60vh;
}
.tainacan-item-single .tainacan-item-section__gallery-items,
.tainacan-item-single .tainacan-item-section__attachments {
position: relative;
padding: 0 60px;
}
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-disabled,
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-disabled {
display: none;
}
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-next,
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-prev,
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-next,
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-prev {
top: 65px;
}
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-slide-thumb-active,
.tainacan-item-single .tainacan-item-section__attachments .swiper-slide-thumb-active {
font-weight: bold;
}
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-slide-thumb-active img,
.tainacan-item-single .tainacan-item-section__attachments .swiper-slide-thumb-active img {
border-bottom: 4px solid var(--paletteColor1, #3eaf7c);
}
.tainacan-item-single .tainacan-item-section__gallery-items ul,
.tainacan-item-single .tainacan-item-section__attachments ul {
list-style: none;
padding: 0;
}
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file {
text-align: center;
vertical-align: top;
cursor: pointer;
word-break: break-all;
font-size: 0.875em;
}
@media only screen and (max-width: 380px) {
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file {
margin: 10px 0;
}
}
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file img,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file img {
border-radius: var(--borderRadius, 3px);
width: 140px;
height: 140px;
object-fit: cover;
}
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file img:focus,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file img:focus {
outline: none;
}
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a {
width: 100%;
max-width: 140px;
font-size: 0.875rem;
text-align: center;
word-break: break-all;
line-height: 1.5rem;
}
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a,
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a:focus,
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a:hover,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a:focus,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a:hover {
outline: none;
text-decoration: none;
cursor: pointer;
color: black;
}
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file .attachment-without-image img,
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file .attachment-without-image img {
padding: 36px;
background-color: #dbdbdb;
object-fit: contain;
}
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > iframe {
min-height: 80vh;
width: 80%;
border: none;
}
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > a,
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > p {
z-index: 99;
padding: 1rem 4.33337vw;
background: white;
border-radius: var(--borderRadius, 3px);
word-wrap: break-word;
}
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > audio,
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > video {
min-height: 54px;
padding: 12px;
}
.tainacan-item-single .tainacan-item-section__metadata {
height: 100%;
}
.tainacan-item-single .tainacan-item-section__metadata div {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
display: inline-block;
width: 100%;
}
.tainacan-item-single .tainacan-item-section__metadata div:last-child {
-webkit-column-break-inside: auto;
page-break-inside: auto;
break-inside: auto;
display: inline-block;
width: 100%;
}
@media only screen and (min-width: 768px) {
.tainacan-item-single .tainacan-item-section__metadata {
-moz-column-gap: 0;
-moz-column-rule: none;
-webkit-column-gap: 0;
-webkit-column-rule: none;
column-gap: 4rem;
column-rule: none;
}
}
@media only screen and (min-width: 1366px) {
.tainacan-item-single .tainacan-item-section__metadata {
-moz-column-gap: 7rem;
-moz-column-rule: none;
-webkit-column-gap: 7rem;
-webkit-column-rule: none;
column-gap: 7rem;
column-rule: none;
}
}
.tainacan-item-single .tainacan-item-section__metadata h3 {
padding-right: 1rem;
margin-bottom: 0.25rem;
width: 100%;
}
.tainacan-item-single .tainacan-item-section__metadata h3:first-of-type:last-of-type {
display: inline-block;
}
.tainacan-item-single .tainacan-item-section__metadata h4,
.tainacan-item-single .tainacan-item-section__metadata label {
padding-right: 0.875rem;
width: 100%;
}
.tainacan-item-single .tainacan-item-section__metadata h4:first-of-type:last-of-type,
.tainacan-item-single .tainacan-item-section__metadata label:first-of-type:last-of-type {
display: inline-block;
}
.tainacan-item-single .tainacan-item-section__metadata p {
word-wrap: break-word;
}
.tainacan-item-single .tainacan-item-section__metadata .tainacan-item-section__metadata-thumbnail img {
border-radius: var(--borderRadius, 3px);
}
.tainacan-item-single .tainacan-item-section__metadata .multivalue-separator {
color: #cbcbcb;
margin: 0 8px;
}
.tainacan-item-single .tainacan-item-section__metadata .hierarchy-separator {
color: #cbcbcb;
}
.tainacan-item-single .tainacan-item-section__metadata .metadata-type-compound .multivalue-separator,
.tainacan-item-single .tainacan-item-section__metadata .metadata-type-textarea .multivalue-separator {
display: block;
max-height: 1px;
width: 35px;
background: #cbcbcb;
content: none;
color: transparent;
margin: 0.875rem auto;
}
.tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group {
padding-left: 1.5rem;
border-left: 1px solid #f2f2f2;
}
.tainacan-item-single .tainacan-item-file-download {
position: absolute;
opacity: 0;
transform: scale(0);
@ -354,7 +713,7 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
}
.single-item-data-section .tainacan-item-file-download a {
.tainacan-item-single .tainacan-item-file-download a {
height: 38px;
width: 38px;
display: block;
@ -362,7 +721,7 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
z-index: 99;
}
.single-item-data-section .tainacan-item-file-download::after {
.tainacan-item-single .tainacan-item-file-download::after {
position: relative;
top: -38px;
display: inline-block;
@ -382,307 +741,4 @@ body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
align-items: center;
}
.single-item-data-section .single-item-collection--document {
display: flex;
justify-content: center;
position: relative;
}
.single-item-data-section .single-item-collection--document:hover .tainacan-item-file-download {
opacity: 1;
transform: scale(1);
}
.single-item-data-section .single-item-collection--document > iframe, .single-item-data-section .single-item-collection--document img.attachment-large {
display: block;
height: auto;
margin: 0 auto;
border: none;
}
.single-item-data-section .single-item-collection--document > audio {
width: 100%;
}
@media only screen and (min-width: 768px) {
.single-item-data-section .single-item-collection--document > iframe {
min-height: 600px;
}
}
@media only screen and (max-width: 576px) {
.single-item-data-section .single-item-collection--document > iframe {
min-height: 429px;
}
}
.single-item-data-section .single-item-collection--document .tainacan-embed-container {
width: 100%;
}
.single-item-data-section .single-item-collection--document .tainacan-embed-container iframe {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.single-item-data-section .single-item-collection--gallery-items {
font-weight: normal;
transition: font-weight 0.3s ease;
}
.single-item-data-section .single-item-collection--gallery-items img {
border-radius: var(--borderRadius, 3px);
border-bottom: 4px solid transparent;
margin-bottom: 4px;
transition: border 0.3s ease;
}
.single-item-data-section .single-item-collection--attachments-file:hover .tainacan-item-file-download {
opacity: 1;
transform: scale(1);
}
.single-item-data-section .single-item-collection--gallery {
margin-bottom: 24px;
}
.single-item-data-section .single-item-collection--gallery ul {
list-style: none;
padding: 0;
}
.single-item-data-section .single-item-collection--gallery .tainacan-content {
margin: 0;
}
.single-item-data-section .single-item-collection--gallery .tainacan-content img {
max-height: 60vh;
width: auto;
}
.single-item-data-section .single-item-collection--gallery .tainacan-content video {
width: auto;
}
.single-item-data-section .single-item-collection--gallery .tainacan-content iframe {
min-height: 200px;
height: 60vh;
}
.single-item-data-section .single-item-collection--gallery-items,
.single-item-data-section .single-item-collection--attachments {
position: relative;
padding: 0 60px;
}
.single-item-data-section .single-item-collection--gallery-items .swiper-button-disabled,
.single-item-data-section .single-item-collection--attachments .swiper-button-disabled {
display: none;
}
.single-item-data-section .single-item-collection--gallery-items .swiper-button-next,
.single-item-data-section .single-item-collection--gallery-items .swiper-button-prev,
.single-item-data-section .single-item-collection--attachments .swiper-button-next,
.single-item-data-section .single-item-collection--attachments .swiper-button-prev {
top: 65px;
}
.single-item-data-section .single-item-collection--gallery-items .swiper-slide-thumb-active,
.single-item-data-section .single-item-collection--attachments .swiper-slide-thumb-active {
font-weight: bold;
}
.single-item-data-section .single-item-collection--gallery-items .swiper-slide-thumb-active img,
.single-item-data-section .single-item-collection--attachments .swiper-slide-thumb-active img {
border-bottom: 4px solid var(--paletteColor1, #3eaf7c);
}
.single-item-data-section .single-item-collection--gallery-items ul,
.single-item-data-section .single-item-collection--attachments ul {
list-style: none;
padding: 0;
}
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file {
text-align: center;
vertical-align: top;
cursor: pointer;
word-break: break-all;
font-size: 0.875em;
}
@media only screen and (max-width: 380px) {
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file {
margin: 10px 0;
}
}
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file img,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file img {
border-radius: var(--borderRadius, 3px);
width: 140px;
height: 140px;
object-fit: cover;
}
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file img:focus,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file img:focus {
outline: none;
}
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a {
width: 100%;
max-width: 140px;
font-size: 0.875rem;
text-align: center;
word-break: break-all;
line-height: 1.5rem;
}
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a,
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a:focus,
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file a:hover,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a:focus,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file a:hover {
outline: none;
text-decoration: none;
cursor: pointer;
color: black;
}
.single-item-data-section .single-item-collection--gallery-items .single-item-collection--attachments-file .attachment-without-image img,
.single-item-data-section .single-item-collection--attachments .single-item-collection--attachments-file .attachment-without-image img {
padding: 36px;
background-color: #dbdbdb;
object-fit: contain;
}
.single-item-data-section .single-item-collection--metadata {
height: 100%;
}
.single-item-data-section .single-item-collection--metadata div {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
display: inline-block;
width: 100%;
}
.single-item-data-section .single-item-collection--metadata div:last-child {
-webkit-column-break-inside: auto;
page-break-inside: auto;
break-inside: auto;
display: inline-block;
width: 100%;
}
@media only screen and (min-width: 768px) {
.single-item-data-section .single-item-collection--metadata {
-moz-column-gap: 0;
-moz-column-rule: none;
-webkit-column-gap: 0;
-webkit-column-rule: none;
column-gap: 4rem;
column-rule: none;
}
}
@media only screen and (min-width: 1366px) {
.single-item-data-section .single-item-collection--metadata {
-moz-column-gap: 7rem;
-moz-column-rule: none;
-webkit-column-gap: 7rem;
-webkit-column-rule: none;
column-gap: 7rem;
column-rule: none;
}
}
.single-item-data-section .single-item-collection--metadata h3 {
padding-right: 1rem;
margin-bottom: 0.25rem;
width: 100%;
}
.single-item-data-section .single-item-collection--metadata h3:first-of-type:last-of-type {
display: inline-block;
}
.single-item-data-section .single-item-collection--metadata h4,
.single-item-data-section .single-item-collection--metadata label {
padding-right: 0.875rem;
width: 100%;
}
.single-item-data-section .single-item-collection--metadata h4:first-of-type:last-of-type,
.single-item-data-section .single-item-collection--metadata label:first-of-type:last-of-type {
display: inline-block;
}
.single-item-data-section .single-item-collection--metadata p {
word-wrap: break-word;
}
.single-item-data-section .single-item-collection--metadata .multivalue-separator {
color: #cbcbcb;
margin: 0 8px;
}
.single-item-data-section .single-item-collection--metadata .hierarchy-separator {
color: #cbcbcb;
}
.single-item-data-section .single-item-collection--metadata .metadata-type-compound .multivalue-separator,
.single-item-data-section .single-item-collection--metadata .metadata-type-textarea .multivalue-separator {
display: block;
max-height: 1px;
width: 35px;
background: #cbcbcb;
content: none;
color: transparent;
margin: 0.875rem auto;
}
.single-item-data-section .single-item-collection--metadata .tainacan-compound-group {
padding-left: 1.5rem;
border-left: 1px solid #f2f2f2;
}
.single-item-data-section .pswp__zoom-wrap .attachment-without-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.single-item-data-section .pswp__zoom-wrap .attachment-without-image > iframe {
min-height: 80vh;
width: 80%;
border: none;
}
.single-item-data-section .pswp__zoom-wrap .attachment-without-image > a,
.single-item-data-section .pswp__zoom-wrap .attachment-without-image > p {
z-index: 99;
padding: 1rem 4.33337vw;
background: white;
border-radius: var(--borderRadius, 3px);
word-wrap: break-word;
}
.single-item-data-section .pswp__zoom-wrap .attachment-without-image > audio,
.single-item-data-section .pswp__zoom-wrap .attachment-without-image > video {
min-height: 54px;
padding: 12px;
}
/*# sourceMappingURL=style.css.map */

File diff suppressed because one or more lines are too long

2
style.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -7,46 +7,23 @@
* @package BlocksyTainacan
*/
$prefix = blocksy_manager()->screen->get_prefix();
do_action( 'blocksy-tainacan-single-item-top' );
do_action( 'blocksy-tainacan-single-item-after-title' );
echo '<div class="single-item-data-section">';
echo '<div class="tainacan-item-single tainacan-item-single--layout-'. get_theme_mod( $prefix . '_page_structure_type', 'type-dam') . '">';
switch (get_theme_mod( 'tainacan_single_item_layout_sections_order', 'document-attachments-metadata')) {
case 'document-attachments-metadata':
get_template_part( 'template-parts/single-items-document' );
do_action( 'blocksy-tainacan-single-item-after-document' );
get_template_part( 'template-parts/tainacan-item-single-document' );
do_action( 'blocksy-tainacan-single-item-after-document' );
get_template_part( 'template-parts/single-items-attachments' );
do_action( 'blocksy-tainacan-single-item-after-attachments' );
get_template_part( 'template-parts/single-items-metadata' );
do_action( 'blocksy-tainacan-single-item-after-metadata' );
break;
get_template_part( 'template-parts/tainacan-item-single-attachments' );
do_action( 'blocksy-tainacan-single-item-after-attachments' );
get_template_part( 'template-parts/tainacan-item-single-metadata' );
do_action( 'blocksy-tainacan-single-item-after-metadata' );
case 'metadata-document-attachments':
get_template_part( 'template-parts/single-items-metadata' );
do_action( 'blocksy-tainacan-single-item-after-metadata' );
get_template_part( 'template-parts/single-items-document' );
do_action( 'blocksy-tainacan-single-item-after-document' );
get_template_part( 'template-parts/single-items-attachments' );
do_action( 'blocksy-tainacan-single-item-after-attachments' );
break;
case 'document-metadata-attachments':
get_template_part( 'template-parts/single-items-document' );
do_action( 'blocksy-tainacan-single-item-after-document' );
get_template_part( 'template-parts/single-items-metadata' );
do_action( 'blocksy-tainacan-single-item-after-metadata' );
get_template_part( 'template-parts/single-items-attachments' );
do_action( 'blocksy-tainacan-single-item-after-attachments' );
break;
}
echo '</div>';
do_action( 'blocksy-tainacan-single-item-bottom' ); ?>

View File

@ -1,22 +0,0 @@
<?php
$prefix = blocksy_manager()->screen->get_prefix();
?>
<?php if ( tainacan_has_document() && get_theme_mod($prefix . '_gallery_mode', 'no') != 'yes') : ?>
<div>
<?php if ( get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes' && get_theme_mod($prefix . '_section_document_label', __( 'Document', 'blocksy-tainacan' )) != '' ) : ?>
<h2 class="title-content-items" id="single-item-document-label">
<?php echo esc_html( get_theme_mod($prefix . '_section_document_label', __( 'Document', 'blocksy-tainacan' ) ) ); ?>
</h2>
<?php endif; ?>
<section class="tainacan-content single-item-collection">
<div class="single-item-collection--document">
<?php
tainacan_the_document();
if ( get_theme_mod( $prefix . '_hide_download_button', 'no' ) == 'no' && function_exists('tainacan_the_item_document_download_link') && tainacan_the_item_document_download_link() != '' ) {
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_document_download_link() . '</span>';
}
?>
</div>
</section>
</div>
<?php endif; ?>

View File

@ -1,36 +0,0 @@
<?php
$prefix = blocksy_manager()->screen->get_prefix();
?>
<div>
<?php if ( get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes' && get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'blocksy-tainacan' )) != '' ) : ?>
<h2 class="title-content-items" id="single-item-metadata-label">
<?php echo esc_html( get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'blocksy-tainacan' ) ) ); ?>
</h2>
<?php endif; ?>
<section class="tainacan-content single-item-collection">
<div class="single-item-collection--information justify-content-center">
<div class="row">
<div class="col single-item-collection--metadata" style="column-width: <?php echo get_theme_mod( $prefix . '_metadata_columns', ['mobile' => '200px', 'tablet' => '300px', 'desktop' => '400px' ] )['desktop'] ?>">
<?php if (has_post_thumbnail() && (get_theme_mod($prefix . '_show_thumbnail', 'no') === 'yes') ): ?>
<div class="tainacan-item-thumbnail-container">
<h3><?php _e( 'Thumbnail', 'blocksy-tainacan' ); ?></h3>
<p><?php the_post_thumbnail('tainacan-medium-full', array('class' => 'item-card--thumbnail')); ?></p>
</div>
<?php endif; ?>
<?php do_action( 'blocksy-tainacan-single-item-metadata-begin' ); ?>
<?php
$args = array(
'before_title' => '<div><h3>',
'after_title' => '</h3>',
'before_value' => '<p>',
'after_value' => '</p></div>',
'exclude_title' => (get_theme_mod($prefix . '_show_title_metadata', 'yes') === 'no')
);
tainacan_the_metadata( $args );
?>
<?php do_action( 'blocksy-tainacan-single-item-metadata-end' ); ?>
</div>
</div>
</div>
</section>
</div>

View File

@ -25,7 +25,7 @@
}
if (!wp_get_attachment_image( $attachment->ID, 'blocksy-tainacan-item-attachments')) :
?>
<li class="single-item-collection--attachments-file swiper-slide">
<li class="tainacan-item-section__attachments-file swiper-slide">
<a
class="attachment-without-image"
href="<?php echo $href; ?>">
@ -33,21 +33,21 @@
echo wp_get_attachment_image( $attachment->ID, 'blocksy-tainacan-item-attachments', true );
echo '<br>';
?>
<span class="single-item-file-name <?php if (get_theme_mod('tainacan_single_item_hide_files_name', false)) echo 'sr-only' ?>"><?php echo get_the_title( $attachment->ID ); ?></span>
<span class="swiper-slide-name <?php if (get_theme_mod('tainacan_single_item_hide_files_name', false)) echo 'sr-only' ?>"><?php echo get_the_title( $attachment->ID ); ?></span>
</a>
</li>
<?php
else:
$img_scr = wp_get_attachment_image_src( $attachment->ID, 'blocksy-tainacan-item-attachments', true );
?>
<li class="single-item-collection--attachments-file swiper-slide">
<li class="tainacan-item-section__attachments-file swiper-slide">
<a
href="<?php echo $img_scr[0] ?>">
<?php
echo wp_get_attachment_image( $attachment->ID, 'blocksy-tainacan-item-attachments', true );
echo '<br>';
?>
<span class="single-item-file-name <?php if (get_theme_mod('tainacan_single_item_hide_files_name', false)) echo 'sr-only' ?>"><?php echo get_the_title( $attachment->ID ); ?></span>
<span class="swiper-slide-name <?php if (get_theme_mod('tainacan_single_item_hide_files_name', false)) echo 'sr-only' ?>"><?php echo get_the_title( $attachment->ID ); ?></span>
</a>
</li>
<?php endif;
@ -56,73 +56,60 @@
<?php if ( !empty( $attachments ) || ( get_theme_mod($prefix . '_gallery_mode', 'no') == 'yes' && tainacan_has_document() ) ) : ?>
<div>
<?php if ( get_theme_mod($prefix . '_display_section_labels', 'yes') != 'yes' && get_theme_mod($prefix . '_section_attachments_label', __( 'Attachments', 'blocksy-tainacan' )) != '' ) : ?>
<h2 class="title-content-items" id="single-item-attachments-label">
<section class="tainacan-item-section tainacan-item-section--<?php echo ((get_theme_mod($prefix . '_gallery_mode', 'no') == 'no' ? 'attachments' : 'gallery')) ?>">
<?php if ( (get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes') && (get_theme_mod($prefix . '_gallery_mode', 'no') == 'no') && get_theme_mod($prefix . '_section_attachments_label', __( 'Attachments', 'blocksy-tainacan' )) != '' ) : ?>
<h2 id="tainacan-item-attachments-label">
<?php echo esc_html( get_theme_mod($prefix . '_section_attachments_label', __( 'Attachments', 'blocksy-tainacan' ) ) ); ?>
</h2>
<?php endif; ?>
<?php if ( get_theme_mod($prefix . '_gallery_mode', 'no') == 'yes' && get_theme_mod('tainacan_single_item_documents_section_label', __( 'Documents', 'blocksy-tainacan' )) != '') : ?>
<h2 class="title-content-items" id="single-item-documents-label">
<?php echo esc_html( get_theme_mod('tainacan_single_item_documents_section_label', __( 'Documents', 'blocksy-tainacan' )) ); ?>
<?php if ( (get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes') && (get_theme_mod($prefix . '_gallery_mode', 'no') == 'yes') && get_theme_mod($prefix . '_section_documents_label', __( 'Documents', 'blocksy-tainacan' )) != '') : ?>
<h2 id="tainacan-item-documents-label">
<?php echo esc_html( get_theme_mod($prefix . '_section_documents_label', __( 'Documents', 'blocksy-tainacan' )) ); ?>
</h2>
<?php endif; ?>
<section class="tainacan-content single-item-collection">
<?php if ( get_theme_mod($prefix . '_gallery_mode', 'no') == 'yes' ): ?>
<div class="single-item-collection--gallery">
<div class="swiper-container-main swiper-container">
<ul class="swiper-wrapper">
<?php if ( tainacan_has_document() ) : ?>
<li class="tainacan-content single-item-collection swiper-slide single-item-collection--document">
<?php
tainacan_the_document();
if ( get_theme_mod( $prefix . '_hide_download_button', 'no' ) == 'no' && function_exists('tainacan_the_item_document_download_link') && tainacan_the_item_document_download_link() != '' ) {
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_document_download_link() . '</span>';
}
?>
</li>
<?php endif; ?>
<?php foreach ( $attachments as $attachment ) { ?>
<li class="tainacan-content single-item-collection swiper-slide single-item-collection--document">
<?php
if ( function_exists('tainacan_get_single_attachment_as_html') ) {
tainacan_get_single_attachment_as_html($attachment->ID);
}
if ( get_theme_mod( $prefix . '_hide_download_button', 'no' ) == 'no' && function_exists('tainacan_the_item_attachment_download_link') && tainacan_the_item_attachment_download_link($attachment->ID) != '' ) {
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_attachment_download_link($attachment->ID) . '</span>';
}
?>
</li>
<?php } ?>
</ul>
</div>
<?php if ( get_theme_mod($prefix . '_gallery_mode', 'no') == 'yes' ): ?>
<div class="tainacan-item-section__gallery">
<div class="swiper-container-main swiper-container">
<ul class="swiper-wrapper">
<?php if ( tainacan_has_document() ) : ?>
<li class="swiper-slide tainacan-item-section__document">
<?php
tainacan_the_document();
if ( get_theme_mod( $prefix . '_hide_download_button', 'no' ) == 'no' && function_exists('tainacan_the_item_document_download_link') && tainacan_the_item_document_download_link() != '' ) {
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_document_download_link() . '</span>';
}
?>
</li>
<?php endif; ?>
<?php foreach ( $attachments as $attachment ) { ?>
<li class="swiper-slide tainacan-item-section__document">
<?php
if ( function_exists('tainacan_get_single_attachment_as_html') ) {
tainacan_get_single_attachment_as_html($attachment->ID);
}
if ( get_theme_mod( $prefix . '_hide_download_button', 'no' ) == 'no' && function_exists('tainacan_the_item_attachment_download_link') && tainacan_the_item_attachment_download_link($attachment->ID) != '' ) {
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_attachment_download_link($attachment->ID) . '</span>';
}
?>
</li>
<?php } ?>
</ul>
</div>
<?php if ( (tainacan_has_document() && $attachments && sizeof($attachments) > 0 ) || (!tainacan_has_document() && $attachments && sizeof($attachments) > 1 ) ) : ?>
<div class="single-item-collection--gallery-items">
<div class="swiper-container-thumbs swiper-container">
<ul class="swiper-wrapper">
<?php if ( tainacan_has_document() ) : ?>
<li class="single-item-collection--attachments-file swiper-slide">
<?php
the_post_thumbnail('tainacan-medium', array('class' => 'item-card--thumbnail'));
echo '<br>';
?>
<span class="single-item-file-name <?php if (get_theme_mod('tainacan_single_item_hide_files_name', false)) echo 'sr-only' ?>"><?php echo __( 'Document', 'blocksy-tainacan' ); ?></span>
</li>
<?php endif; ?>
<?php foreach ( $attachments as $attachment ) {
render_attachment_thumbnail_slide_item($attachment);
} ?>
</ul>
</div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
<?php endif; ?>
<?php else : ?>
<div class="single-item-collection--attachments">
</div>
<?php if ( (tainacan_has_document() && $attachments && sizeof($attachments) > 0 ) || (!tainacan_has_document() && $attachments && sizeof($attachments) > 1 ) ) : ?>
<div class="tainacan-item-section__gallery-items">
<div class="swiper-container-thumbs swiper-container">
<ul class="swiper-wrapper">
<?php if ( tainacan_has_document() ) : ?>
<li class="tainacan-item-section__attachments-file swiper-slide">
<?php
the_post_thumbnail('tainacan-medium');
echo '<br>';
?>
<span class="swiper-slide-name <?php if (get_theme_mod('tainacan_single_item_hide_files_name', false)) echo 'sr-only' ?>"><?php echo __( 'Document', 'blocksy-tainacan' ); ?></span>
</li>
<?php endif; ?>
<?php foreach ( $attachments as $attachment ) {
render_attachment_thumbnail_slide_item($attachment);
} ?>
@ -132,8 +119,20 @@
<div class="swiper-button-next"></div>
</div>
<?php endif; ?>
</section>
</div>
<?php else : ?>
<div class="tainacan-item-section__attachments">
<div class="swiper-container-thumbs swiper-container">
<ul class="swiper-wrapper">
<?php foreach ( $attachments as $attachment ) {
render_attachment_thumbnail_slide_item($attachment);
} ?>
</ul>
</div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
<?php endif; ?>
</section>
<!-- add PhotoSwipe (.pswp) element to DOM -
Root element of PhotoSwipe. Must have class pswp. -->

View File

@ -0,0 +1,20 @@
<?php
$prefix = blocksy_manager()->screen->get_prefix();
?>
<?php if ( tainacan_has_document() && get_theme_mod($prefix . '_gallery_mode', 'no') != 'yes') : ?>
<section class="tainacan-item-section tainacan-item-section--document">
<?php if ( get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes' && get_theme_mod($prefix . '_section_document_label', __( 'Document', 'blocksy-tainacan' )) != '' ) : ?>
<h2 id="tainacan-item-document-label">
<?php echo esc_html( get_theme_mod($prefix . '_section_document_label', __( 'Document', 'blocksy-tainacan' ) ) ); ?>
</h2>
<?php endif; ?>
<div class="tainacan-item-section__document">
<?php
tainacan_the_document();
if ( get_theme_mod( $prefix . '_hide_download_button', 'no' ) == 'no' && function_exists('tainacan_the_item_document_download_link') && tainacan_the_item_document_download_link() != '' ) {
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_document_download_link() . '</span>';
}
?>
</div>
</section>
<?php endif; ?>

View File

@ -0,0 +1,31 @@
<?php
$prefix = blocksy_manager()->screen->get_prefix();
?>
<section class="tainacan-item-section tainacan-item-section--metadata">
<?php if ( get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes' && get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'blocksy-tainacan' )) != '' ) : ?>
<h2 id="tainacan-item-metadata-label">
<?php echo esc_html( get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'blocksy-tainacan' ) ) ); ?>
</h2>
<?php endif; ?>
<div class="tainacan-item-section__metadata" style="column-width: <?php echo get_theme_mod( $prefix . '_metadata_columns', ['mobile' => '200px', 'tablet' => '300px', 'desktop' => '400px' ] )['desktop'] ?>">
<?php if (has_post_thumbnail() && (get_theme_mod($prefix . '_show_thumbnail', 'no') === 'yes') ): ?>
<div class="tainacan-item-section__metadata-thumbnail">
<h3><?php _e( 'Thumbnail', 'blocksy-tainacan' ); ?></h3>
<p><?php the_post_thumbnail('tainacan-medium-full'); ?></p>
</div>
<?php endif; ?>
<?php do_action( 'blocksy-tainacan-single-item-metadata-begin' ); ?>
<?php
$args = array(
'before_title' => '<div><h3>',
'after_title' => '</h3>',
'before_value' => '<p>',
'after_value' => '</p></div>',
'exclude_title' => (get_theme_mod($prefix . '_show_title_metadata', 'yes') === 'no')
);
tainacan_the_metadata( $args );
?>
<?php do_action( 'blocksy-tainacan-single-item-metadata-end' ); ?>
</div>"
</section>