2014-03-06 12:19:51 -05:00
|
|
|
.view-contacts {
|
|
|
|
|
|
|
|
.key-controls {
|
2014-06-16 08:20:01 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2014-03-06 12:19:51 -05:00
|
|
|
margin: 30px;
|
|
|
|
|
2014-06-16 08:20:01 -04:00
|
|
|
.key-controls-search {
|
|
|
|
flex-grow: 1;
|
|
|
|
input[type=text] {
|
|
|
|
line-height: 23px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-03-06 12:19:51 -05:00
|
|
|
}
|
2014-06-16 08:20:01 -04:00
|
|
|
.key-controls-import {
|
|
|
|
display: block;
|
|
|
|
width: 8em;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
input[type=file] {
|
|
|
|
visibility: hidden;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.btn {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-03-06 12:19:51 -05:00
|
|
|
|
2014-06-16 08:20:01 -04:00
|
|
|
@include respond-to(desktop) {
|
|
|
|
width: 10em;
|
|
|
|
}
|
2014-03-06 12:19:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.key-list {
|
2014-04-23 11:45:49 -04:00
|
|
|
position: relative;
|
2014-03-06 12:19:51 -05:00
|
|
|
margin: 20px;
|
2014-04-23 11:45:49 -04:00
|
|
|
|
|
|
|
.key-list-scroll {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2014-03-06 12:19:51 -05:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2014-04-23 11:45:49 -04:00
|
|
|
|
|
|
|
// pull popover upwards to keep popup inside lightbox
|
|
|
|
.popover {
|
|
|
|
margin-top: -20px;
|
|
|
|
}
|
2014-03-06 12:19:51 -05:00
|
|
|
}
|
2014-04-23 11:45:49 -04:00
|
|
|
|
2014-03-06 12:19:51 -05:00
|
|
|
}
|