Skip to content

Commit

Permalink
Fixed darkmode design of help popover
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Aug 30, 2022
1 parent 24ba184 commit 9ffd8e4
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions lib/IHP/static/IDE/ihp-toolserver-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -350,4 +350,48 @@ a, a:hover {

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
background-color: hsl(175deg 59% 33%);
}

.popover {
text-align: left;
background-color: #0B5163;
border: 1px solid hsl(175deg 59% 40% / 33%) !important;
border-radius: 4px;
font-size: 12px;

padding-left: 8px;
padding-right: 8px;
padding-top: 2px;
padding-bottom: 2px;

box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.popover .popover-header {
border-bottom: 0px;
}

.popover a {
color: hsla(196, 13%, 80%, 1);
text-decoration: underline;
}

.popover a.btn {
text-decoration: none;
background-color: #002B37;
border: 1px solid hsla(192, 81%, 26%, 0.8);
}

.popover a.btn:hover {
color: #fff;
background-color: hsl(193deg 90% 6%);
}

.popover a.btn:focus {
color: #fff;
background-color: hsl(193deg 80% 6%);
}

.bs-popover-auto[x-placement^=right]>.arrow::after, .bs-popover-right>.arrow::after {
border-right-color: #0B5163;
}

0 comments on commit 9ffd8e4

Please sign in to comment.