6d356817cb
The add contact form.
143 lines
4.0 KiB
SCSS
143 lines
4.0 KiB
SCSS
#conversejs #converse-roster {
|
|
text-align: left;
|
|
width: 100%;
|
|
position: relative;
|
|
margin: 0.5em 0 0 0;
|
|
height: $roster-height;
|
|
height: calc(100% - #{$controlbox-dropdown-height*2} - 20px);
|
|
overflow: hidden;
|
|
padding-bottom: 3em;
|
|
|
|
&.no-contact-requests {
|
|
height: calc(100% - #{$controlbox-dropdown-height} - 20px);
|
|
}
|
|
|
|
.search-xmpp {
|
|
ul {
|
|
li.chat-info {
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.filter-type {
|
|
display: table-cell;
|
|
float: right;
|
|
font-size: calc(#{$font-size} - 1px);
|
|
height: $controlbox-dropdown-height;
|
|
padding: 0;
|
|
width: 84px;
|
|
border-radius: 0;
|
|
border: 1px solid;
|
|
}
|
|
.roster-filter {
|
|
float: left;
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABNSURBVHjaXI7BDcAwCAMvyQjMyQ6dAbZiKfqoUK34g2zJh1dENIC7M8pMAPYdzAVY3d0ajNz9aypS/b5R6o+ZPdqoKgCq6h80KH3xDgBqNR97p8oAGQAAAABJRU5ErkJggg== ) no-repeat right -20px center;
|
|
border: 1px solid #999;
|
|
font-size: $font-size;
|
|
height: $controlbox-dropdown-height;
|
|
margin: 0 0 0.5em 7px;
|
|
padding: 0;
|
|
padding-left: 0.4em;
|
|
width: 103px;
|
|
}
|
|
/* (jQ addClass:) if input has value: */
|
|
.roster-filter.x {
|
|
background-position: right 3px center;
|
|
}
|
|
/* (jQ addClass:) if mouse is over the 'x' input area*/
|
|
.roster-filter.onX {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.roster-contacts {
|
|
margin: 0;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
dt.roster-group {
|
|
border: none;
|
|
color: $text-color;
|
|
display: none;
|
|
font-weight: normal;
|
|
padding: 0.5em;
|
|
text-shadow: 0 1px 0 $text-shadow-color;
|
|
&:hover {
|
|
background-color: $highlight-color;
|
|
}
|
|
.group-toggle {
|
|
color: $text-color;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
}
|
|
dd {
|
|
border: none;
|
|
clear: both;
|
|
color: $text-color;
|
|
display: block;
|
|
height: 24px;
|
|
line-height: 16px;
|
|
overflow-y: hidden;
|
|
padding: 4px 2px 0 4px;
|
|
text-shadow: 0 1px 0 $text-shadow-color;
|
|
&:hover {
|
|
background-color: $highlight-color;
|
|
a.remove-xmpp-contact {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
&.requesting-xmpp-contact {
|
|
&.request-actions {
|
|
margin-left: 0.5em;
|
|
float: right;
|
|
}
|
|
}
|
|
&.current-xmpp-contact span {
|
|
font-size: 16px;
|
|
float: left;
|
|
color: $link-color;
|
|
}
|
|
&.odd {
|
|
background-color: #DCEAC5;
|
|
/* Make this difference */
|
|
}
|
|
a, span {
|
|
text-shadow: 0 1px 0 $link-shadow-color;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
margin-left: 3px;
|
|
}
|
|
span {
|
|
padding: 0 5px 0 0;
|
|
}
|
|
a {
|
|
&.decline-xmpp-request {
|
|
margin-left: 5px;
|
|
}
|
|
&.remove-xmpp-contact {
|
|
float: right;
|
|
width: 22px;
|
|
margin: 0;
|
|
display: none;
|
|
color: $text-color;
|
|
}
|
|
.open-chat {
|
|
width: 80%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
span {
|
|
&.pending-contact-name {
|
|
width: 80%;
|
|
}
|
|
&.req-contact-name {
|
|
width: 69%;
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|