59 lines
795 B
SCSS
59 lines
795 B
SCSS
.options-dropdown {
|
|
text-align: left;
|
|
position: relative;
|
|
top: 0.15em;
|
|
right: 0;
|
|
float: right;
|
|
margin-right: -6em;
|
|
|
|
|
|
|
|
.dropwdown {
|
|
visibility: hidden;
|
|
}
|
|
|
|
&:hover {
|
|
.button {
|
|
background: grey;
|
|
}
|
|
|
|
.dropwdown {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
padding: 6px;
|
|
width: 2em;
|
|
border-radius: 6px;
|
|
text-align: center;
|
|
}
|
|
|
|
.is-mode-structured,
|
|
.is-mode-other,
|
|
{
|
|
background: red;
|
|
border-radius: 100px;
|
|
width: 20px;
|
|
position: relative;
|
|
left: 10px;
|
|
top: 10px;
|
|
}
|
|
|
|
.dropdown-item {
|
|
background: white;
|
|
padding: 6px;
|
|
cursor: pointer;
|
|
padding-left: 12px;
|
|
|
|
&.is-active {
|
|
color: cornflowerblue;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
background: cornflowerblue;
|
|
color: white;
|
|
}
|
|
}
|
|
}
|