reltated to #1837 dark mode for new tooltip for badges

This commit is contained in:
MatthieuLP 2023-01-10 12:31:02 +01:00
parent 28466e0ce6
commit 4f9136e7c3
3 changed files with 19 additions and 2 deletions

View file

@ -550,7 +550,6 @@ input[name="position"] {
position: absolute;
display: none;
flex-direction: column;
background: linear-gradient(130deg, white 0%, white 100%);
right: 50%;
top: 30px;
width: max-content;
@ -569,7 +568,6 @@ input[name="position"] {
transform: rotate(0);
border-width: 5px;
border-style: solid;
border-color: transparent transparent white transparent;
}
.badge-dropdown span {

View file

@ -6862,6 +6862,14 @@ color:#FF7B00;
align-items: center;
}
.badge-dropdown {
background: linear-gradient(130deg, white 0%, white 100%);
}
.badge-dropdown:after {
border-color: transparent transparent white transparent;
}
@media (max-width: 1450px) {
.promote-text span {
font-size: 20px;

View file

@ -1900,4 +1900,15 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important;
background: #f7a43c;
box-shadow: 0 2px #af7200;
color: #444 !important;
}
.badge-dropdown {
background: #333;
}
.badge-dropdown::after {
border-color: transparent transparent #333 transparent;
}
.badge-dropdown span {
border: none;
color: #aeaeae;
}