Commit 9dafaa75 authored by JC Brand's avatar JC Brand

Fix the width for roster entries.

parent bf524424
...@@ -1232,8 +1232,9 @@ ...@@ -1232,8 +1232,9 @@
display: inline-block; display: inline-block;
float: right; float: right;
font-size: 9px; font-size: 9px;
margin: 0 0.2em; margin: 0;
padding: 0.5em; margin-right: 0.2em;
padding: 0.5em 0.5em 0.3em 0.5em;
text-decoration: none; } text-decoration: none; }
#conversejs .chatbox-btn:active { #conversejs .chatbox-btn:active {
position: relative; position: relative;
...@@ -1801,8 +1802,12 @@ ...@@ -1801,8 +1802,12 @@
display: block; display: block;
height: 24px; height: 24px;
overflow-y: hidden; overflow-y: hidden;
padding: 0.3em 1em; padding: 0.3em 0 0.3em 1em;
text-shadow: 0 1px 0 #FAFAFA; } text-shadow: 0 1px 0 #FAFAFA;
line-height: 14px;
width: 100%; }
#conversejs #converse-roster .roster-contacts dd .open-chat {
max-width: 90%; }
#conversejs #converse-roster .roster-contacts dd:hover { #conversejs #converse-roster .roster-contacts dd:hover {
background-color: #DCF9F6; } background-color: #DCF9F6; }
#conversejs #converse-roster .roster-contacts dd:hover .remove-xmpp-contact { #conversejs #converse-roster .roster-contacts dd:hover .remove-xmpp-contact {
...@@ -1836,8 +1841,7 @@ ...@@ -1836,8 +1841,7 @@
margin-left: 5px; } margin-left: 5px; }
#conversejs #converse-roster .roster-contacts dd a.remove-xmpp-contact { #conversejs #converse-roster .roster-contacts dd a.remove-xmpp-contact {
float: right; float: right;
width: 22px; margin-right: 1em;
margin: 0;
display: none; display: none;
color: #818479; } color: #818479; }
#conversejs #converse-roster span.pending-contact-name { #conversejs #converse-roster span.pending-contact-name {
......
...@@ -43,8 +43,9 @@ ...@@ -43,8 +43,9 @@
display: inline-block; display: inline-block;
float: right; float: right;
font-size: $box-close-font-size; font-size: $box-close-font-size;
margin: 0 0.2em; margin: 0;
padding: 0.5em; margin-right: 0.2em;
padding: 0.5em 0.5em 0.3em 0.5em;
text-decoration: none; text-decoration: none;
&:active { &:active {
position: relative; position: relative;
......
...@@ -83,8 +83,13 @@ ...@@ -83,8 +83,13 @@
display: block; display: block;
height: 24px; height: 24px;
overflow-y: hidden; overflow-y: hidden;
padding: 0.3em 1em; padding: 0.3em 0 0.3em 1em;
text-shadow: 0 1px 0 $text-shadow-color; text-shadow: 0 1px 0 $text-shadow-color;
line-height: $font-size;
width: 100%;
.open-chat {
max-width: 90%;
}
&:hover { &:hover {
background-color: $highlight-color; background-color: $highlight-color;
.remove-xmpp-contact { .remove-xmpp-contact {
...@@ -131,8 +136,7 @@ ...@@ -131,8 +136,7 @@
} }
&.remove-xmpp-contact { &.remove-xmpp-contact {
float: right; float: right;
width: 22px; margin-right: 1em;
margin: 0;
display: none; display: none;
color: $text-color; color: $text-color;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment