mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 00:04:48 -07:00
Fix #2088
Add an autocomplete with known server names to the connect dialog; Added support for server messages (identification, shutdown, user warning and promotion) Connection dialog’s inputs are now wider Only declare implemented client features Added check for protocol version on connect before login Avoid listbox being rendered as dropdown on mobiles
This commit is contained in:
parent
8644016d3c
commit
a68df3611b
3 changed files with 151 additions and 17 deletions
|
|
@ -24,6 +24,7 @@ h3 {
|
|||
|
||||
#tab-login input {
|
||||
margin-bottom: 10px;
|
||||
width: 20em;
|
||||
}
|
||||
|
||||
#loading {
|
||||
|
|
@ -33,7 +34,7 @@ h3 {
|
|||
}
|
||||
|
||||
.output, #servermessages {
|
||||
min-height: 400px;
|
||||
height: 400px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
word-wrap: break-word;
|
||||
|
|
@ -44,7 +45,7 @@ h3 {
|
|||
}
|
||||
|
||||
.input {
|
||||
width:93%;
|
||||
width:92%;
|
||||
}
|
||||
|
||||
.say {
|
||||
|
|
@ -75,7 +76,27 @@ h3 {
|
|||
|
||||
#buddies, #ignores, .userlist {
|
||||
width: 100%;
|
||||
min-height: 470px;
|
||||
height: 500px;
|
||||
list-style-type: none;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
background: #fff;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
border: 1px solid #999;
|
||||
}
|
||||
|
||||
#buddies li, #ignores li, .userlist li {
|
||||
padding: 0 3px;
|
||||
}
|
||||
|
||||
#buddies .ui-selecting, #ignores .ui-selecting, .userlist .ui-selecting {
|
||||
background: #FECA40;
|
||||
}
|
||||
|
||||
#buddies .ui-selected, #ignores .ui-selected, .userlist .ui-selected {
|
||||
background: #F39814; color: white;
|
||||
}
|
||||
|
||||
.buddies-container, .ignores-container, .userinfo-container, .missingfeatures-container {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue