Skip to content

Commit

Permalink
#884 Small improvements to the style
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick committed Aug 24, 2014
1 parent 68a7416 commit d1b85c4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
3 changes: 1 addition & 2 deletions backstage/css/accent.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

?>
<style>

.panel-default .panel-heading, .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
background: <?php echo $accent ?>;
}
</style>
16 changes: 11 additions & 5 deletions backstage/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

/* General fixes */
body {
margin-top: 40px;
margin-top: 50px;
font-family: "Segoe UI";
}

td, th {
Expand Down Expand Up @@ -140,6 +141,11 @@ label .help-block {
border-top: none;
}

.panel-default .panel-heading {
background: #0d4382;
background: linear-gradient(to right, #0d4382 0%, #3588e9 100%);
}

.panel > :last-child {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
Expand Down Expand Up @@ -229,13 +235,13 @@ label .help-block {
}

.btn-primary {
background-color: #0072dc;
border-color: #005aad;
background-color: #0d4382;
border-color: #063874;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .active.btn-primary, .open .btn-primary.dropdown-toggle {
background-color: #005aad;
border-color: #004688;
background-color: #063874;
border-color: #002b60;
}

.btn-success {
Expand Down
2 changes: 1 addition & 1 deletion backstage/groups.php
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
$page_title = array(luna_htmlspecialchars($luna_config['o_board_title']), $lang['Admin'], $lang['User groups']);
define('FORUM_ACTIVE_PAGE', 'admin');
require FORUM_ROOT.'backstage/header.php';
generate_admin_menu('users', 'groups');
generate_admin_menu('users', 'groups');

?>
<form method="post" action="groups.php?del_group=<?php echo $group_id ?>">
Expand Down
2 changes: 1 addition & 1 deletion include/backstage_functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function generate_admin_menu($section ='', $page = '')
echo 'Bans';

if($page == 'settings')
echo 'Global settings';
echo 'Settings';
if($page == 'features')
echo 'Features';
if($page == 'registration')
Expand Down
2 changes: 1 addition & 1 deletion include/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Version
const FORUM_VERSION = '3.5-dev';

// The ModernBB Core version
const FORUM_CORE_VERSION = '0.0.40.2915';
const FORUM_CORE_VERSION = '0.0.40.2917';

// The database version number, every change in the database requires this number to go one up
const FORUM_DB_VERSION = 77;
Expand Down

0 comments on commit d1b85c4

Please sign in to comment.