Skip to content

Commit

Permalink
Fix the settings screen title formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradyvercher committed Feb 15, 2016
1 parent 35e350e commit 29692e8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions assets/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@
/* Settings Screen
------------------------------------------------------------------------------*/

.nav-tab-wrapper-title {
display: inline-block;
margin-right: 20px;
}

.satispress-tab-panel {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion includes/class-satispress-admin-screen-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public function render_screen() {
* @since 0.2.0
*/
public function render_section_security_description() {
_e( 'Your packages are public by default. At a minimum, you can secure them using HTTP Basic Autentication.', 'satispress' );
_e( 'Your packages are public by default. At a minimum, you can secure them using HTTP Basic Authentication.', 'satispress' );
}

/**
Expand Down
2 changes: 1 addition & 1 deletion views/screen-settings.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="wrap">
<h1><?php _e( 'SatisPress', 'satispress' ); ?></h2>
<h2 class="nav-tab-wrapper">
<strong class="nav-tab-wrapper-title"><?php _e( 'SatisPress', 'satispress' ); ?></strong>
<a href="#satispress-settings" class="nav-tab nav-tab-active"><?php _e( 'Settings', 'satispress' ); ?></a>
<a href="#satispress-packages" class="nav-tab"><?php _e( 'Packages', 'satispress' ); ?></a>
</h2>
Expand Down

0 comments on commit 29692e8

Please sign in to comment.