BOL : Fix damage error, rework roll dialog and new damage targetting
This commit is contained in:
@@ -38,6 +38,21 @@ body.system-bol img#logo {
|
||||
}
|
||||
}
|
||||
|
||||
// 2-column layout for roll dialogs
|
||||
.roll-dialog-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 0 8px;
|
||||
align-items: start;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.roll-col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.roll-box, .box-roll,
|
||||
div.flexrow:has(.bg-darkred) {
|
||||
border-radius: 6px;
|
||||
@@ -88,8 +103,8 @@ body.system-bol img#logo {
|
||||
color: #191813;
|
||||
}
|
||||
option:checked, option:hover {
|
||||
background: darkred;
|
||||
color: white;
|
||||
background: darkred !important;
|
||||
color: white !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -461,6 +461,47 @@ h2.bad {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.damage-target-select-label {
|
||||
font-size: 0.78rem;
|
||||
color: #7a0000;
|
||||
font-family: "Wolfsbane2Expanded", cursive;
|
||||
letter-spacing: 0.4px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.chat-target-select {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
width: 100%;
|
||||
margin-bottom: 2px;
|
||||
padding: 3px 8px;
|
||||
background: linear-gradient(135deg, #f5f0e8, #ede4d4);
|
||||
border: 1px solid #c4a882;
|
||||
border-radius: 4px;
|
||||
color: #191813;
|
||||
font-size: 0.85rem;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(135deg, #7a0000, darkred);
|
||||
color: #e8d890;
|
||||
border-color: #7a0000;
|
||||
|
||||
.damage-target-icon { border-color: #e8d890; }
|
||||
}
|
||||
|
||||
.damage-target-icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #c4a882;
|
||||
object-fit: cover;
|
||||
flex: 0 0 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.damage-note {
|
||||
font-size: 0.78rem;
|
||||
color: #4b4a44;
|
||||
|
||||
Reference in New Issue
Block a user