Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Fix broken colors in IE/MSHTML
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed May 8, 2020
1 parent d381388 commit 34f1e58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/base/src/components/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<div>
<div class="ui divider" style="margin-bottom: 0;"></div>
<div class="item" style="text-align: center;">
<span v-if="apiInfo.connected" class="ui center aligned" style="color: #FFFFFF80">
<span v-if="apiInfo.connected" class="ui center aligned" style="color: #888">
Connected to Core
</span>
<span v-else class="ui red text">
Expand Down
4 changes: 2 additions & 2 deletions modules/base/src/components/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>

<p style="padding-top: 20px;">
<span style="color: #FFFFFF80; padding-right: 30px;">Security Level</span>
<span style="color: #888; padding-right: 30px;">Security Level</span>

<span v-if="status && status.ActiveSecurityLevel === 1">
<img class="sl-icon" src="/assets/icons/level_normal.svg" title="Normal" />
Expand Down Expand Up @@ -365,7 +365,7 @@ export default {
height: 100vh;
overflow-y: scroll;
padding: 2em !important;
background: #1b1c1df2 !important;
background: #242526 !important;
}
.dashboard-element {
border-radius: 5px !important;
Expand Down
4 changes: 0 additions & 4 deletions modules/base/src/components/options/OptionsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,5 @@ export default {
<style lang="scss">
.grid {
padding-bottom: 10px !important;
// experiment with row backgrounds
.row:nth-of-type(2n + 3) {
background-color: #00000008;
}
}
</style>

0 comments on commit 34f1e58

Please sign in to comment.