Cambio visual en la página de videos.

git-svn-id: https://192.168.0.254/svn/Proyectos.OriginalHouse_Web/trunk@65 54e8636e-a86c-764f-903d-b964358a1ae2
This commit is contained in:
David Arranz 2011-09-12 18:02:13 +00:00
parent c3bb487ef1
commit bab115fd7f
4 changed files with 44 additions and 7 deletions

View File

@ -6,4 +6,16 @@
<line>180</line> <line>180</line>
</file> </file>
</editor-bookmarks> </editor-bookmarks>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/1">
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/themes/originalhouse/index.php</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-includes/general-template.php</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/themes/originalhouse/header.php</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/themes/originalhouse/functions/admin-functions.php</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/plugins/thecartpress/customposttypes/ProductCustomPostType.class.php</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/plugins/tubepress/sys/ui/themes/default/gallery.tpl.php</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/themes/originalhouse/style.css</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/themes/originalhouse/custom.css</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/plugins/tubepress/sys/ui/themes/default/style.css</file>
<file>file:/D:/Trabajo/OriginalHouse/trunk/src/wp-content/themes/originalhouse/custom_ie7.css</file>
</open-files>
</project-private> </project-private>

View File

@ -36,6 +36,7 @@
<div class="tubepress_thumb"> <div class="tubepress_thumb">
<a id="tubepress_image_<?php echo $video->getId(); ?>_<?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>" rel="tubepress_<?php echo ${org_tubepress_api_const_template_Variable::EMBEDDED_IMPL_NAME}; ?>_<?php echo ${org_tubepress_api_const_template_Variable::PLAYER_NAME}; ?>_<?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>" title="<?php echo htmlspecialchars($video->getTitle(), ENT_QUOTES, "UTF-8"); ?>"> <a id="tubepress_image_<?php echo $video->getId(); ?>_<?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>" rel="tubepress_<?php echo ${org_tubepress_api_const_template_Variable::EMBEDDED_IMPL_NAME}; ?>_<?php echo ${org_tubepress_api_const_template_Variable::PLAYER_NAME}; ?>_<?php echo ${org_tubepress_api_const_template_Variable::GALLERY_ID}; ?>" title="<?php echo htmlspecialchars($video->getTitle(), ENT_QUOTES, "UTF-8"); ?>">
<span></span>
<img alt="<?php echo htmlspecialchars($video->getTitle(), ENT_QUOTES, "UTF-8"); ?>" src="<?php echo $video->getThumbnailUrl(); ?>" width="<?php echo ${org_tubepress_api_const_template_Variable::THUMBNAIL_WIDTH}; ?>" height="<?php echo ${org_tubepress_api_const_template_Variable::THUMBNAIL_HEIGHT}; ?>" /> <img alt="<?php echo htmlspecialchars($video->getTitle(), ENT_QUOTES, "UTF-8"); ?>" src="<?php echo $video->getThumbnailUrl(); ?>" width="<?php echo ${org_tubepress_api_const_template_Variable::THUMBNAIL_WIDTH}; ?>" height="<?php echo ${org_tubepress_api_const_template_Variable::THUMBNAIL_HEIGHT}; ?>" />
</a> </a>
<dl class="tubepress_meta_group"> <dl class="tubepress_meta_group">

View File

@ -86,7 +86,7 @@
.tcp_product_thumb, .post { .tcp_product_thumb, .post, .tubepress_thumb {
float: left; float: left;
overflow: hidden; overflow: hidden;
display: table-cell; display: table-cell;
@ -95,15 +95,16 @@
width: 192px; width: 192px;
} }
.tcp_product_thumb a, .post a { .tcp_product_thumb a, .post a, .tubepress_thumb a {
height: 196px; height: 196px;
width: 192px; width: 192px;
vertical-align: middle; vertical-align: middle;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
display: table-cell;
} }
.tcp_product_thumb a img, .post a img { .tcp_product_thumb a img, .post a img, .tubepress_thumb a img {
padding: 0; padding: 0;
vertical-align: middle; vertical-align: middle;
margin: 0 auto ! important; margin: 0 auto ! important;
@ -127,9 +128,28 @@
} }
/*.tubepress_thumb {
float: left;
overflow: hidden;
display: table-cell;
background: #272524;
height: 196px;
width: 192px;
}
.tubepress_thumb a {
height: 196px;
width: 192px;
vertical-align: middle;
text-align: center;
cursor: pointer;
display: table-cell;
}
*/
.tubepress_thumb a img {
height: 140px;
width: 187px;
}

View File

@ -1,15 +1,19 @@
.tcp_products_thumbs a, .tcp_products_thumbs a,
.tubepress_thumb a,
.posts a { .posts a {
display: block; display: block;
} }
.tcp_products_thumbs span, .tcp_products_thumbs span,
.tubepress_thumb span,
.posts span { .posts span {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
height: 100%; height: 100%;
} }
.tcp_products_thumbs, .tcp_products_thumbs,
.tubepress_thumbs,
.posts { .posts {
_height: 0; _height: 0;
zoom: 1; zoom: 1;
} }