1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/css/itcss/components/simple-dropdown.scss

66 lines
1.1 KiB
SCSS
Raw Normal View History

2017-10-23 07:40:03 +02:00
.simple-dropdown {
height: 56px;
display: flex;
justify-content: flex-start;
align-items: center;
border: 1px solid $alto;
border-radius: 4px;
background-color: $white;
font-size: 16px;
color: #4d4d4d;
cursor: pointer;
position: relative;
}
.simple-dropdown__caret {
color: $silver;
padding: 0 10px;
}
.simple-dropdown__selected {
flex-grow: 1;
padding: 0 15px;
}
.simple-dropdown__options {
z-index: 1050;
position: absolute;
height: 220px;
width: 100%;
border: 1px solid #d2d8dd;
border-radius: 4px;
background-color: #fff;
-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .11);
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .11);
margin-top: 10px;
overflow-y: scroll;
left: 0;
top: 100%;
}
.simple-dropdown__option {
padding: 10px;
&:hover {
background-color: $gallery;
}
}
.simple-dropdown__option--selected {
background-color: $alto;
&:hover {
background-color: $alto;
cursor: default;
}
}
.simple-dropdown__close-area {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
height: 100%;
}