Skip to content

Commit

Permalink
Fixes + Global Future Fix
Browse files Browse the repository at this point in the history
Added a few more things into this including:
- Better Ripple colouring.
- Changing some of the Global CSS Vars which fix a lot of the issues without needing to touch them myself.

Fixes:
- Icons at the top of the search
- Active Tab on the Top.
- Underline in Textboxes for Edit and stuff
- Custom Styles tab in Desktop Settings
  • Loading branch information
Alipoodle committed Jan 27, 2020
1 parent f4abdab commit 1e7fddc
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions gpmcss.css
@@ -1,5 +1,7 @@
/* A Font, This is optional
remove the things above the "@import" and below the "}" bracket to use font*/
/*
A Font, This is optional
remove the things above the "@import" and below the "}" bracket to use font
*/

/*
@import url(https://fonts.googleapis.com/css?family=Karla);
Expand All @@ -16,7 +18,7 @@ div {
}
/* This changes the colour of the current tab for the Library section
Default this is your accent colour, this changes it to white to match the text above.*/
.paper-tabs-1 #selectionBar.paper-tabs {
#selectionBar.paper-tabs {
border-color: white;
}

Expand Down Expand Up @@ -72,6 +74,10 @@ div {
cursor: default; /* Changes mouse on hover on icon */
}

/* Removes new Switch to YT Music Button */
#ytm-button {
display: none;
}


/* Textbox
Expand All @@ -88,8 +94,16 @@ paper-dialog textarea::selection {
background: <<ALPHA 0.6>><<FORE_SECONDARY>><</ALPHA>>;
}

/* Fixes underline */
.focused-line.paper-input-container { border-bottom: 2px solid <<FORE_SECONDARY>>; }

/* Fixes Counter */
.add-on-content.is-highlighted.paper-input-container > * {
color: <<FORE_SECONDARY>>;
}

/* Fixes icons on Search Bar */
.paper-toolbar-1 {
#material-one-middle iron-icon {
color: <<FORE_PRIMARY>>;
}

Expand Down Expand Up @@ -207,6 +221,9 @@ paper-dialog .buttons paper-button:not([style-scope]):not(.style-scope):not([dis
gpm-quick-nav-2 .items.gpm-quick-nav > [selected] {
color: <<FORE_SECONDARY>>;
}
#background.paper-ripple, .wave.paper-ripple {
background: <<FORE_SECONDARY>> !important;
}

/* Library Select */
.goog-menu:not([style-scope]):not(.style-scope)
Expand Down Expand Up @@ -240,3 +257,14 @@ sj-home[selected="1"] .home-palette-id-3,
.goog-menuheader .spinner {
background: url(ani_loading_white.gif) no-repeat 0/30px !important;
}

.gmusic-theme #primaryProgress.paper-progress {
height: 3px;
}

html.gpm-ifl-button, gpm-ifl-button, gpm-ifl-button > *.gpm-ifl-button {
--default-primary-color: <<FORE_SECONDARY>>;
--primary-color: <<FORE_SECONDARY>>;
--dark-primary-color: <<LIGHTEN 0.2>><<FORE_SECONDARY>><</LIGHTEN>>;
--explicit-color: <<LIGHTEN 0.2>><<FORE_SECONDARY>><</LIGHTEN>>;
}

0 comments on commit 1e7fddc

Please sign in to comment.