2020-04-02 14:36:49 +02:00
|
|
|
/* --------------- */
|
|
|
|
/* --- LAYOUT ---- */
|
|
|
|
/* --------------- */
|
|
|
|
|
|
|
|
.popup#users {
|
|
|
|
flex-direction: column;
|
|
|
|
max-height: 500px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.popup#users #myuser {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
.popup#users #otherusers {
|
|
|
|
flex: 1 auto;
|
2020-03-22 10:17:54 +01:00
|
|
|
overflow: auto;
|
2020-04-02 14:36:49 +02:00
|
|
|
max-height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup#users.chatAndUsers {
|
|
|
|
display: flex !important; /* always visible */
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
border-left: 1px solid #ccc;
|
|
|
|
border-right: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
height: 200px;
|
|
|
|
min-width: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 5px;
|
2020-03-22 10:17:54 +01:00
|
|
|
}
|
2020-04-02 14:36:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* --------------- */
|
|
|
|
/* --- MY USER --- */
|
|
|
|
/* --------------- */
|
|
|
|
|
2020-03-22 10:17:54 +01:00
|
|
|
#myswatchbox {
|
2020-04-02 14:36:49 +02:00
|
|
|
float: left;
|
2020-03-22 10:17:54 +01:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2020-04-02 14:36:49 +02:00
|
|
|
border: 1px solid #ccc
|
2020-03-22 10:17:54 +01:00
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#myswatch {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: transparent; /*...initially*/
|
|
|
|
}
|
2020-04-02 14:36:49 +02:00
|
|
|
|
|
|
|
#myusernameform {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
input#myusernameedit {
|
|
|
|
height: 26px;
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding: 3px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
background-color: transparent;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
input#myusernameedit:not(.editable) {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
#myuser .myusernameedithoverable:hover {
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
#myusernameform .editactive,
|
|
|
|
#myusernameform .editempty {
|
|
|
|
background: white;
|
|
|
|
border-left: 1px solid #c3c3c3;
|
|
|
|
border-top: 1px solid #c3c3c3;
|
|
|
|
border-right: 1px solid #e6e6e6;
|
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
#myusernameform .editempty {
|
|
|
|
color: #333
|
|
|
|
}
|
|
|
|
#myusernameedit, #otheruserstable .swatch {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------- */
|
|
|
|
/* --- MY USER COLORPICKER --- */
|
|
|
|
/* --------------------------- */
|
|
|
|
|
2020-03-22 10:17:54 +01:00
|
|
|
#mycolorpicker {
|
2020-04-02 14:36:49 +02:00
|
|
|
display: none;
|
2020-03-22 10:17:54 +01:00
|
|
|
position: absolute;
|
2020-04-02 14:36:49 +02:00
|
|
|
right: calc(100% + 15px);
|
2020-03-22 10:17:54 +01:00
|
|
|
z-index: 101;
|
|
|
|
}
|
|
|
|
#mycolorpickersave {
|
|
|
|
left: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#mycolorpickercancel {
|
|
|
|
left: 85px
|
|
|
|
}
|
|
|
|
#mycolorpickersave,
|
|
|
|
#mycolorpickercancel {
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #000;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 4px;
|
|
|
|
top: 240px;
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
#mycolorpickerpreview {
|
|
|
|
position: absolute;
|
|
|
|
left: 207px;
|
|
|
|
top: 240px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
padding: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
color: #fff;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2020-04-02 14:36:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- */
|
|
|
|
/* --- OTHER USERS --- */
|
|
|
|
/* ------------------- */
|
|
|
|
|
2020-03-22 10:17:54 +01:00
|
|
|
#otheruserstable td {
|
|
|
|
height: 26px;
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
|
|
|
#otheruserstable .swatch {
|
2020-04-02 14:36:49 +02:00
|
|
|
border: 1px solid #ccc;
|
2020-03-22 10:17:54 +01:00
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0 4px;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.usertdname {
|
2020-04-02 14:36:49 +02:00
|
|
|
font-size: 1.2rem;
|
2020-03-22 10:17:54 +01:00
|
|
|
}
|