sergey124 / jira-dark

Custom dark style for JIRA. Fork of a global style "NightShift - eye care".
GNU General Public License v3.0
7 stars 3 forks source link

Selected Issue is not highlighted #18

Closed aalvarado closed 5 years ago

aalvarado commented 6 years ago
ghx-selected ghx-selected-primary

it looks like these classes are not redefined in the css.

in the style spy I see this as the selector:

.ghx-issue-compact.ghx-selected, .ghx-issue-compact .ghx-selected-group
aalvarado commented 6 years ago

I was able to fix some of it by adding this to the stylesheet:

body>*>*>*>*>* *:not([class^="tm-label-circle"]):not([class^="tm-status-dropdown"]):not([class^="ghx-grabber"]):not([class*="ghx-active"]):not([class*="aui-icon"]).ghx-selected .ghx-issue-content .ghx-row {
    background-color: #484848 !important;
}

body>*>*>*>*>* *:not([class^="tm-label-circle"]):not([class^="tm-status-dropdown"]):not([class^="ghx-grabber"]):not([class*="ghx-active"]):not([class*="aui-icon"]).ghx-selected .ghx-issue-content .ghx-row {

        background-color: #484848 !important;
}

body>*>*>*>*>* *:not([class^="tm-label-circle"]):not([class^="tm-status-dropdown"]):not([class^="ghx-grabber"]):not([class*="ghx-active"]):not([class*="aui-icon"]).ghx-selected .ghx-issue-content .ghx-row .ghx-type{
    background-color: #484848 !important;
}

body>*>*>*>*>* *:not([class^="tm-label-circle"]):not([class^="tm-status-dropdown"]):not([class^="ghx-grabber"]):not([class*="ghx-active"]):not([class*="aui-icon"]).ghx-selected .ghx-issue-content .ghx-row .ghx-summary {
    background-color: #484848 !important;
}

body>*>*>*>*>* *:not([class^="tm-label-circle"]):not([class^="tm-status-dropdown"]):not([class^="ghx-grabber"]):not([class*="ghx-active"]):not([class*="aui-icon"]).ghx-selected .ghx-issue-content .ghx-row .ghx-summary .ghx-inner {
    background-color: #484848 !important;
}

body>*>*>*>*>* *:not([class^="tm-label-circle"]):not([class^="tm-status-dropdown"]):not([class^="ghx-grabber"]):not([class*="ghx-active"]):not([class*="aui-icon"]).ghx-selected .ghx-issue-content {
    background-color: #484848 !important;
}