Attachments label break-word instead o break-all.

This commit is contained in:
mateuswetah 2020-11-10 17:15:15 -03:00
parent c8bcbc27a7
commit 915851057d
2 changed files with 9 additions and 8 deletions

View File

@ -748,7 +748,7 @@
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
cursor: pointer; cursor: pointer;
word-break: break-all; word-break: break-word;
font-size: 0.875em; font-size: 0.875em;
padding: 0 14px; padding: 0 14px;
@ -772,7 +772,7 @@
display: inline-block; display: inline-block;
font-size: 0.875rem; font-size: 0.875rem;
text-align: center; text-align: center;
word-break: break-all; word-break: break-word;
line-height: 1.5rem line-height: 1.5rem
} }
a, a,

View File

@ -4,9 +4,11 @@
} }
</style>'; </style>';
$current_term = tainacan_get_term(); $current_wpterm = tainacan_get_term();
$current_taxonomy = get_taxonomy( $current_term->taxonomy );
$current_term = \Tainacan\Repositories\Terms::get_instance()->fetch($current_term->term_id, $current_term->taxonomy); $current_taxonomy = get_taxonomy( $current_wpterm->taxonomy );
$current_term = \Tainacan\Repositories\Terms::get_instance()->fetch($current_wpterm->term_id, $current_wpterm->taxonomy);
$image = $current_term->get_header_image_id(); $image = $current_term->get_header_image_id();
$src = wp_get_attachment_image_src($image, 'full'); $src = wp_get_attachment_image_src($image, 'full');
?> ?>
@ -31,11 +33,10 @@ $src = wp_get_attachment_image_src($image, 'full');
</h2> </h2>
<a class="page-header-back ml-auto" href="javascript:history.go(-1)"><?php _e( 'Back', 'tainacan-interface' ); ?></a> <a class="page-header-back ml-auto" href="javascript:history.go(-1)"><?php _e( 'Back', 'tainacan-interface' ); ?></a>
</div> </div>
<?php $tainacan_term_description = tainacan_get_the_term_description(); ?>
<div class="page-header-hightlights d-flex flex-wrap"> <div class="page-header-hightlights d-flex flex-wrap">
<div class="col-12 col-xl-10 col-lg-9 page-header-description tainacan-interface-truncate-term"> <div class="col-12 col-xl-10 col-lg-9 page-header-description tainacan-interface-truncate-term">
<?php echo $tainacan_term_description; ?> <?php tainacan_the_term_description(); ?>
<?php do_action( 'tainacan-interface-collection-description' ); ?> <?php do_action( 'tainacan-interface-term-description' ); ?>
</div> </div>
<?php do_action( 'tainacan-interface-taxonomy-description' ); ?> <?php do_action( 'tainacan-interface-taxonomy-description' ); ?>
<div class="col-12 col-xl-2 col-lg-3 d-flex flex-wrap page-header-share"> <div class="col-12 col-xl-2 col-lg-3 d-flex flex-wrap page-header-share">