Latest tweaks for 2.7 release.

This commit is contained in:
mateuswetah 2023-05-30 16:46:18 -03:00
parent ae968ab9a2
commit 187db0fb22
5 changed files with 9 additions and 5 deletions

View File

@ -2,7 +2,7 @@
Contributors: andrebenedito, daltonmartins, fabianobn, jacsonp, leogermani, weryques, wetah, eduardohumberto, ravipassos, jessicafpx, marinagiolo, omarceloavila, r-guimaraes Contributors: andrebenedito, daltonmartins, fabianobn, jacsonp, leogermani, weryques, wetah, eduardohumberto, ravipassos, jessicafpx, marinagiolo, omarceloavila, r-guimaraes
Requires at least: WordPress 5.0 Requires at least: WordPress 5.0
Tested up to: WordPress 6.1 Tested up to: WordPress 6.1
Version: 2.6 Version: 2.7
Requires PHP: 5.6 Requires PHP: 5.6
Stable tag: trunk Stable tag: trunk
License: GNU General Public License v3 License: GNU General Public License v3

View File

@ -7,7 +7,7 @@
&.tainacan-list-collection--container-card { &.tainacan-list-collection--container-card {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, 425px); grid-template-columns: repeat(auto-fit, 446px);
grid-gap: 30px; grid-gap: 30px;
.term-name { .term-name {
@ -20,6 +20,10 @@
margin-top: 0; margin-top: 0;
padding-top: 0 !important; padding-top: 0 !important;
padding-left: 1rem; padding-left: 1rem;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
} }
.term-children-link a { .term-children-link a {

View File

@ -4,7 +4,7 @@ Author: Tainacan
Author URI: https://tainacan.org Author URI: https://tainacan.org
Theme URI: https://tainacan.org/blog/category/tema/ Theme URI: https://tainacan.org/blog/category/tema/
Description: This is the default theme for the Tainacan project. Use this in conjunction with Tainacan plugin to easily manage and publish you digital collections with a beautiful faceted search interface. Ideal for museums, galleries, libraries and anyone who have a digital repository. Description: This is the default theme for the Tainacan project. Use this in conjunction with Tainacan plugin to easily manage and publish you digital collections with a beautiful faceted search interface. Ideal for museums, galleries, libraries and anyone who have a digital repository.
Version: 2.6 Version: 2.7
Tested up to: 6.0 Tested up to: 6.0
Requires PHP: 5.6 Requires PHP: 5.6
License: GNU General Public License v3 License: GNU General Public License v3

View File

@ -1,7 +1,7 @@
<?php <?php
/** Theme version */ /** Theme version */
const TAINACAN_INTERFACE_VERSION = '2.6'; const TAINACAN_INTERFACE_VERSION = '2.7';
/* Disables Tainacan Theme Helper the_content filter, which is used to build a custom item and taxonomy (terms list) template. */ /* Disables Tainacan Theme Helper the_content filter, which is used to build a custom item and taxonomy (terms list) template. */
if ( !defined('TAINACAN_DISABLE_ITEM_THE_CONTENT_FILTER') ) if ( !defined('TAINACAN_DISABLE_ITEM_THE_CONTENT_FILTER') )

File diff suppressed because one or more lines are too long