Change dropdown css
This commit is contained in:
parent
39b42a29a4
commit
de8adf983e
3 changed files with 49 additions and 8 deletions
|
@ -667,25 +667,54 @@ math {
|
|||
}
|
||||
|
||||
.dropdown {
|
||||
border-radius: 4px;
|
||||
border: 0.5px solid lightgray;
|
||||
margin-top: 1px;
|
||||
background: white;
|
||||
display: none;
|
||||
background-color: white;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
padding: 4px 0;
|
||||
z-index: 1;
|
||||
border-radius: 5px;
|
||||
|
||||
a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.3s;
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
font-size: 15px;
|
||||
padding: 6px 8px;
|
||||
font-size: 16px;
|
||||
padding: 6px 40px 6px 15px;
|
||||
cursor: pointer;
|
||||
color: black;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.dropdown-item:hover {
|
||||
background: lightgray;
|
||||
color: $theme_color;
|
||||
}
|
||||
|
||||
.popper-arrow,
|
||||
.popper-arrow::before {
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
.popper-arrow {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.popper-arrow::before {
|
||||
visibility: visible;
|
||||
content: '';
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.popper-arrow {
|
||||
top: -4px;
|
||||
}
|
||||
|
||||
.unread_boxes {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue