Fixed CSS for the "Send to chat" feature

This commit is contained in:
Vlyan
2021-08-04 19:35:41 +02:00
parent 0116497921
commit 56ab2cfb34
4 changed files with 48 additions and 6 deletions

View File

@@ -208,9 +208,9 @@ button {
.whisper,
#chat-controls .roll-type-select,
.header-search input {
background: transparent url("../assets/ui/chat-texture.webp") no-repeat;
background: transparent url("../assets/ui/chat-texture.webp") repeat-y;
&:focus {
background: #f0f0e0 url("../assets/ui/chat-texture.webp") no-repeat;
background: #f0f0e0 url("../assets/ui/chat-texture.webp") repeat-y;
}
}
.header-search input[name="search"] {
@@ -725,3 +725,36 @@ button {
padding: 0;
}
}
// Send to chat
.l5r5e-chat-item {
color: $black-light;
font-size: 0.8rem;
* {
color: $black-light;
}
h2 {
font-size: 1.1rem;
}
section > ul {
display: flex;
flex-flow: row wrap;
padding: 0.25rem 0 0.25rem 1rem;
li {
flex: 100%;
padding: 1px !important;
margin: 0;
border: 0 none !important;
list-style-type: square;
}
}
.card-header img {
display: inline-block;
background: transparent;
border: 0 none;
width: 20px;
margin: 0;
padding: 0;
}
}