Skip to content

Commit

Permalink
White Swimlane BG and Menu fixes (#32)
Browse files Browse the repository at this point in the history
* White Swimlane BG fix

Fixes the white background in the swimlanes as mentioned in issue 19

* Add a fix for drop downs being white when hovered

This fix allows most of the dropdowns to be dark when hovered. 
(I specifically tested on the board - Epic, Label, Type, Group By, Three Dot Menu, Search bar dropdown, and a few others)

there is a random issue here where when you're in between hover and the next one it shows up white - unsure how to fix, will update later
  • Loading branch information
brianbeergod authored Oct 2, 2021
1 parent b76eb26 commit b18a582
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions jira-dark-gray.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ regexp(".*.atlassian.net/secure.*") {
.ghx-heading span {
color: #bbb !important;
}

/* Swimlane Inner */
.ReactVirtualized__Grid__innerScrollContainer {
background-color: #555 !important;
}

/* sub tasks */
.adg3 .ghx-column .ghx-parent-group {
Expand Down Expand Up @@ -623,6 +628,12 @@ regexp(".*.atlassian.net/secure.*") {
[data-role="droplistContent"] {
background-color: #222;
}

/* Allows hover to be dark instead of white on all dropdowns */
[id^='react-select-']:hover {
background-color: #333 !important
}


/* pop up from dropdowns */
.eJTYOk.eJTYOk {
Expand Down

0 comments on commit b18a582

Please sign in to comment.