Skip to content

Commit

Permalink
Merge pull request GlotPress#569 from GlotPress/565-table-heading-pad…
Browse files Browse the repository at this point in the history
…ding
  • Loading branch information
ocean90 authored Oct 11, 2016
2 parents f968097 + 8c6227c commit 559842b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
7 changes: 6 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ table.permissions {
table.translations thead th,
table.translations tfoot th,
table.translation-sets thead th,
table.translations tfoot th,
table.glossary thead th,
table.locale-sub-projects thead th,
table.permissions thead th,
Expand All @@ -213,6 +212,12 @@ table.locales thead th {
background-color: #555;
padding: 0.5em;
}

table.translation-sets.tablesorter-glotpress thead th,
table.locales.tablesorter-glotpress thead th {
padding-right: 20px;
}

table.locales thead th {
width: 33%;
}
Expand Down
2 changes: 1 addition & 1 deletion assets/css/style.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/css/tablesorter.theme.glotpress.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ GlotPress Theme
cursor: pointer;
text-align: center;
border: 1px solid #eee;
padding-right: 20px;
}
.tablesorter-glotpress tfoot th,
.tablesorter-glotpress tfoot td {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/tablesorter.theme.glotpress.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gp-includes/assets-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ function gp_register_default_styles() {
$suffix = SCRIPT_DEBUG ? '.css' : '.min.css';

// Register our base style.
wp_register_style( 'gp-base', $url . '/style' . $suffix, array(), '20150717' );
wp_register_style( 'gp-base', $url . '/style' . $suffix, array(), '20161011' );

// Register the table sorter theme style.
wp_register_style( 'tablesorter-theme', $url . '/tablesorter.theme.glotpress' . $suffix, array(), '20150717' );
wp_register_style( 'tablesorter-theme', $url . '/tablesorter.theme.glotpress' . $suffix, array(), '20161011' );
}

add_action( 'init', 'gp_register_default_styles' );
Expand Down

0 comments on commit 559842b

Please sign in to comment.