Skip to content

Commit

Permalink
🚧 various stylus popup fixes.
Browse files Browse the repository at this point in the history
* fixes hovering checkboxes --main-color
* disabled style labels are now dimmer.
* fix hovering of labels
* add even entry bg styling fixes.
* fixes the misalignment between [ ] Turn all styles off checkbox and
label.
  • Loading branch information
the-j0k3r committed Jun 4, 2018
1 parent 4225662 commit ef8c77e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions StylusDeepDark.user.css
Expand Up @@ -620,6 +620,19 @@
border: 1px solid var(--main-color) !important;
}

/*Stylus popup fixes */
#stylus-popup .disabled .style-name
{
color: var(--hover-background) !important;
}
#stylus-popup .style-name:hover, #stylus-popup .disabled .style-name:hover
{
color: var(--main-text) !important;
}
#stylus-popup #installed .entry:nth-child(even) .main-controls, #stylus-popup #installed .entry:nth-child(even)
{
background-color: var(--odd-entry-background) !important;
}

/*Buttons*/
#save-button, #beautify, #cancel-button, #from-mozilla, #to-mozilla,
Expand Down Expand Up @@ -854,6 +867,17 @@
{
fill: var(--main-color) !important;
}
/* fixes the popup checkbox hover */
.style-name:hover input[type="checkbox"]:not(.slider),
.disabled .style-name:hover input[type="checkbox"]:not(.slider)
{
border-color: var(--main-color) !important;
}
/* This fixes the misalignment between [ ] Turn all styles off checkbox and label */
#disableAll
{
margin-top: 2px !important;
}
/* This fixes the disable all checkbox background being too bright on hover */
#disableAll:hover
{
Expand Down

0 comments on commit ef8c77e

Please sign in to comment.