Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Styles fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kbhomes committed Sep 14, 2015
1 parent 393be29 commit 864956a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions radiant-player-mac/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,10 @@
top: 128px;
height: auto;
margin-top: 0;
}

/* Fix the display of the menu bar on OS X 10.10 */
#material-app-bar .material-header-bar.visible {
display: -webkit-flex;
display: flex;
}
6 changes: 3 additions & 3 deletions radiant-player-mac/css/spotify-black.css
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ a, .simple-dialog a {
border-color: #333;
}

#nav, core-header-panel#nav-container, .nav-toolbar {
#nav, core-header-panel#nav-container, .material .nav-toolbar {
background-color: #222326;
border-right: 1px solid #292929;
}
Expand All @@ -263,7 +263,7 @@ a, .simple-dialog a {
font-size: 13px !important;
font-weight: 400 !important;
color: #949599 !important;
padding: 5px 0 5px 16px;
padding: 5px 0 5px 32px;
border-left: 3px solid transparent;
}

Expand All @@ -288,7 +288,7 @@ a, .simple-dialog a {
}

.material .nav-section-header {
padding-left: 0;
padding-left: 16px;
font-weight: 300;
color: #777;
text-shadow: 0px -1px 0px #222;
Expand Down
2 changes: 1 addition & 1 deletion radiant-player-mac/js/lastfm.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if (typeof window.LastFmButton === 'undefined') {
window.LastFmButton = true;

// Obtain the area on the top-right, containing the Google account information.
var rightArea = document.querySelector('#material-one-right > div:first-child > div:first-child > div:first-child');
var rightArea = document.querySelector('#material-one-right > div > div > div');

// Add a button that, when clicked, opens the Last.fm popover.
var lastfmButton = document.createElement('a');
Expand Down
2 changes: 1 addition & 1 deletion radiant-player-mac/js/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (typeof window.GMNavigation === 'undefined') {
if (!keepLinks)
{
// Obtain the area on the top-right, containing the Google account information.
var rightArea = document.querySelector('#material-one-right > div:first-child > div:first-child > div:first-child');
var rightArea = document.querySelector('#material-one-right > div > div > div');
rightArea.style.minWidth = 0;

// Remove all of the children, except the last (the user button).
Expand Down

0 comments on commit 864956a

Please sign in to comment.