Skip to content

Commit

Permalink
Fix backward-compatibility CSS changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zackkatz committed Sep 4, 2017
2 parents 5e81e7c + 0c12743 commit 2d9f9bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/deprecated/list-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
*/
?>
<?php gravityview_before(); ?>
<div class="<?php gv_container_class('gv-list-container gv-list-view gv-list-multiple-container'); ?>">
<div class="<?php gv_container_class('gv-list-container gv-list-multiple-container'); ?>">
<?php gravityview_header(); ?>
2 changes: 1 addition & 1 deletion templates/deprecated/list-single.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
?>
<?php gravityview_before(); ?>

<div class="<?php gv_container_class( 'gv-list-view gv-list-container gv-list-single-container' ); ?>">
<div class="<?php gv_container_class( 'gv-list-container gv-list-single-container' ); ?>">
<p class="gv-back-link"><?php echo gravityview_back_link(); ?></p>
<?php
if( $this->getContextFields() ) {
Expand Down
2 changes: 1 addition & 1 deletion templates/deprecated/table-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
?>
<?php gravityview_before(); ?>
<div class="<?php gv_container_class('gv-table-view gv-table-container gv-table-multiple-container'); ?>">
<div class="<?php gv_container_class('gv-table-container gv-table-multiple-container'); ?>">
<table class="gv-table-view">
<thead>
<?php gravityview_header(); ?>
Expand Down

0 comments on commit 2d9f9bf

Please sign in to comment.