Files

79 lines
1.3 KiB
SCSS
Raw Permalink Normal View History

2018-05-21 18:10:51 -05:00
@import 'common/sass/variables';
@import 'common/sass/variables/colors';
@import 'common/sass/variables/spacing';
.AddressFieldDropdown {
position: absolute;
top: calc(100% - #{$space});
width: 100%;
2018-06-27 00:51:42 -04:00
border: 1px solid color(gray-lighter);
2018-05-21 18:10:51 -05:00
border-top: none;
2018-06-27 00:51:42 -04:00
background: color(component-active-color);
2018-05-21 18:10:51 -05:00
z-index: 1;
list-style-type: none;
margin: 0;
padding: 0;
box-shadow: $tab-box-shadow;
text-align: center;
&-dropdown-item {
margin: 0;
padding: $space-md $space;
display: flex;
align-items: center;
&:hover {
cursor: pointer;
2018-06-27 00:51:42 -04:00
background: color(gray-lightest);
2018-05-21 18:10:51 -05:00
}
&-identicon {
width: 40px;
height: 40px;
margin-right: $space-sm;
.Identicon {
width: 40px !important;
height: 40px !important;
}
@media (max-width: 380px) {
display: none;
}
}
&-label,
&-address {
overflow: hidden;
text-overflow: ellipsis;
}
&-label {
flex: 1 0 0;
2018-07-12 17:46:17 -05:00
padding-left: 0.2rem;
text-align: left;
2018-05-21 18:10:51 -05:00
}
&-address {
flex: 3 0 0;
}
&-no-match {
word-break: break-word;
&:hover {
cursor: not-allowed;
background: inherit;
}
i {
margin-right: $space-sm;
}
}
&--active {
2018-06-27 00:51:42 -04:00
background: color(gray-lighter);
2018-05-21 18:10:51 -05:00
}
}
}