Skip to content

Commit

Permalink
Merge pull request #1733 from /issues/1732
Browse files Browse the repository at this point in the history
color fix for attribute color change fixed
  • Loading branch information
Raj6939 authored Nov 16, 2022
2 parents 65c65bb + e766f6c commit a1e1c08
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
</label>
</div>
<div class="col-lg-9 col-md-9 px-0">
<b-card-header header-tag="header" class="p-1 border-0 accordin-header-theme" :style="headerThemeCss" role="tab">
<b-card-header header-tag="header" class="p-1 border-0 accordin-header theme-color" role="tab">
<b-button block v-b-toggle.accordion-11 style="text-decoration:none; color:#212529;" variant="secondary"
:aria-expanded="visible ? 'true' : 'false'"
@click="visible = !visible"
Expand Down Expand Up @@ -341,7 +341,12 @@
margin-left: 2px;
}
.theme-color{
color: var(--header-text-color);
background-color:rgba(241, 179, 25, 0.24);
color: #212529;
}
.bg-transparant{
background-color: transparent !important;
color: #212529;
}
</style>
<script>
Expand Down

0 comments on commit a1e1c08

Please sign in to comment.