2015-10-25 20:23:18 +01:00
|
|
|
#conversejs #converse-roster {
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
2015-10-30 19:30:39 +01:00
|
|
|
margin: 1em 0 0 0;
|
2015-10-25 20:23:18 +01:00
|
|
|
height: $roster-height;
|
|
|
|
height: calc(100% - #{$controlbox-dropdown-height*2} - 20px);
|
|
|
|
overflow: hidden;
|
2015-10-30 19:30:39 +01:00
|
|
|
padding: 0;
|
2015-10-25 20:23:18 +01:00
|
|
|
padding-bottom: 3em;
|
|
|
|
|
|
|
|
&.no-contact-requests {
|
|
|
|
height: calc(100% - #{$controlbox-dropdown-height} - 20px);
|
|
|
|
}
|
|
|
|
|
2015-10-28 09:49:28 +01:00
|
|
|
.search-xmpp {
|
|
|
|
ul {
|
|
|
|
li.chat-info {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 19:30:39 +01:00
|
|
|
.roster-filter-group {
|
|
|
|
margin: 0 1em;
|
2015-11-05 11:02:23 +01:00
|
|
|
width: 100%;
|
|
|
|
padding-right: 1em + 2*$chat-gutter;
|
2015-10-30 19:30:39 +01:00
|
|
|
.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;
|
|
|
|
padding: 0;
|
|
|
|
padding-left: 0.4em;
|
|
|
|
width: 53%;
|
|
|
|
}
|
|
|
|
/* (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;
|
|
|
|
}
|
|
|
|
.filter-type {
|
|
|
|
display: table-cell;
|
|
|
|
float: right;
|
|
|
|
font-size: calc(#{$font-size} - 2px);
|
|
|
|
height: $controlbox-dropdown-height;
|
|
|
|
padding: 0;
|
|
|
|
width: 47%;
|
|
|
|
border-radius: 0;
|
|
|
|
border: 1px solid;
|
|
|
|
}
|
2015-10-25 20:23:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.roster-contacts {
|
|
|
|
margin: 0;
|
|
|
|
height: 100%;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2015-10-27 11:17:55 +01:00
|
|
|
dt.roster-group {
|
|
|
|
border: none;
|
|
|
|
color: $text-color;
|
|
|
|
display: none;
|
|
|
|
font-weight: normal;
|
2015-10-30 19:30:39 +01:00
|
|
|
margin-top: 0.5em;
|
|
|
|
padding: 0.5em 1em;
|
2015-10-27 11:17:55 +01:00
|
|
|
text-shadow: 0 1px 0 $text-shadow-color;
|
|
|
|
&:hover {
|
|
|
|
background-color: $highlight-color;
|
2015-10-25 20:23:18 +01:00
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
.group-toggle {
|
2015-10-25 20:23:18 +01:00
|
|
|
color: $text-color;
|
2015-10-27 11:17:55 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2015-10-25 20:23:18 +01:00
|
|
|
}
|
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
dd {
|
|
|
|
border: none;
|
|
|
|
clear: both;
|
|
|
|
color: $text-color;
|
|
|
|
display: block;
|
|
|
|
height: 24px;
|
|
|
|
overflow-y: hidden;
|
2015-11-02 11:58:02 +01:00
|
|
|
padding: 0.3em 0 0.3em 1em;
|
2015-10-27 11:17:55 +01:00
|
|
|
text-shadow: 0 1px 0 $text-shadow-color;
|
2015-11-02 11:58:02 +01:00
|
|
|
line-height: $font-size;
|
|
|
|
width: 100%;
|
|
|
|
.open-chat {
|
|
|
|
max-width: 90%;
|
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
&:hover {
|
|
|
|
background-color: $highlight-color;
|
2015-10-30 19:47:13 +01:00
|
|
|
.remove-xmpp-contact {
|
2015-10-27 11:17:55 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-10-30 19:47:13 +01:00
|
|
|
.open-chat {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
}
|
|
|
|
&.requesting-xmpp-contact {
|
|
|
|
&.request-actions {
|
|
|
|
margin-left: 0.5em;
|
2015-11-02 01:28:00 +01:00
|
|
|
margin-bottom: 0.3em;
|
2015-10-27 11:17:55 +01:00
|
|
|
float: right;
|
|
|
|
}
|
2015-11-02 01:28:00 +01:00
|
|
|
.req-contact-name {
|
|
|
|
width: 69%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
}
|
|
|
|
&.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;
|
|
|
|
}
|
|
|
|
span {
|
2015-10-30 19:30:39 +01:00
|
|
|
padding: 0 0.5em 0 0;
|
2015-11-02 01:28:00 +01:00
|
|
|
height: 100%;
|
2015-10-27 11:17:55 +01:00
|
|
|
}
|
|
|
|
a {
|
|
|
|
&.decline-xmpp-request {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
&.remove-xmpp-contact {
|
|
|
|
float: right;
|
2015-11-02 11:58:02 +01:00
|
|
|
margin-right: 1em;
|
2015-10-27 11:17:55 +01:00
|
|
|
display: none;
|
|
|
|
color: $text-color;
|
|
|
|
}
|
|
|
|
}
|
2015-10-25 20:23:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
&.pending-contact-name {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|