mirror of
https://github.com/moparisthebest/mail
synced 2024-11-14 21:25:03 -05:00
51 lines
979 B
SCSS
51 lines
979 B
SCSS
.view-contacts {
|
|
|
|
.key-controls {
|
|
margin: 30px;
|
|
|
|
input[type=text] {
|
|
line-height: 23px;
|
|
}
|
|
|
|
input[type=file] {
|
|
visibility: hidden;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
.key-list {
|
|
position: relative;
|
|
margin: 20px;
|
|
|
|
.key-list-scroll {
|
|
max-height: 400px;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
table {
|
|
th, td {
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button.remove {
|
|
font-family: $font-family-icons;
|
|
font-size: 0.75em;
|
|
color: $color-grey-input;
|
|
border: none;
|
|
background: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
// pull popover upwards to keep popup inside lightbox
|
|
.popover {
|
|
margin-top: -20px;
|
|
}
|
|
}
|
|
|
|
} |