Skip to content

Commit

Permalink
Merge pull request spacetelescope#2725 from kecnry/fix-orientation-lb…
Browse files Browse the repository at this point in the history
…l-dark

fix dark-mode support for section header when used in data-menu
  • Loading branch information
pllim authored Feb 23, 2024
2 parents 808b897 + b2a1750 commit e0335fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jdaviz/components/plugin_section_header.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div :class="active ? 'strike strike-active text--secondary': 'strike text--secondary'">
<div :class="active ? 'strike strike-active': 'strike'">
<span>
<slot></slot>
</span>
Expand Down Expand Up @@ -37,7 +37,7 @@ module.exports = {
top: 50%;
width: 9999px;
height: 1px;
background: rgba(0, 0, 0, 0.15);
background: gray;
}
.strike-active > span:before,
Expand Down

0 comments on commit e0335fd

Please sign in to comment.