Skip to content

Commit bac02f6

Browse files
committed
1 parent 5694633 commit bac02f6

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ This file is a running track of new features and fixes to each version of the pa
33

44
This project follows [Semantic Versioning](http://semver.org) guidelines.
55

6+
## v0.7.7 (Derelict Dermodactylus)
7+
### Fixed
8+
* Fixes an issue with the sidebar logo not working correctly in some browsers due to the CSS being assigned.
9+
610
## v0.7.6 (Derelict Dermodactylus)
711
### Fixed
812
* Fixes a UI error when attempting to change the default Nest and Egg for an existing server.

public/themes/pterodactyl/css/pterodactyl.css

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -469,10 +469,7 @@ label.control-label > span.field-optional:before {
469469
padding: 3px 10px !important;
470470
}
471471

472-
body.sidebar-collapse .main-header .logo {
473-
overflow: hidden;
474-
text-indent: 100%;
475-
background-image: url('/favicons/favicon-32x32.png');
476-
background-repeat: no-repeat;
477-
background-position: center;
472+
.logo-mini > img {
473+
height: 42px;
474+
width: auto;
478475
}

resources/themes/pterodactyl/layouts/master.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
<div class="wrapper">
4444
<header class="main-header">
4545
<a href="{{ route('index') }}" class="logo">
46-
<span>{{ config('app.name', 'Pterodactyl') }}</span>
46+
<span class="logo-lg">{{ config('app.name', 'Pterodactyl') }}</span>
47+
<span class="logo-mini"><img src="favicons/android-chrome-192x192.png"></span>
4748
</a>
4849
<nav class="navbar navbar-static-top">
4950
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">

0 commit comments

Comments
 (0)