mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Small random fixes * Added use of ItemLinkFields * Multiclass levelup fixes * Fixed our onCreate methods unintentionally being run on all clients * Remade apps handling * Added for all class items and subclass * Restored foreignDocumentUuidField * Improved * PR fxies * Fixed tooltip enrichment * . * Reverted silly change
63 lines
1.4 KiB
Text
63 lines
1.4 KiB
Text
@import '../../utils/fonts.less';
|
|
|
|
.application.daggerheart.dh-style {
|
|
.actions-list,
|
|
.action-buttons-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.action-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
}
|
|
|
|
.action-buttons-list {
|
|
gap: 10px;
|
|
button {
|
|
flex: 1;
|
|
display: flex;
|
|
padding: 6px 40px 6px 6px;
|
|
height: fit-content;
|
|
img {
|
|
width: 30px;
|
|
}
|
|
span {
|
|
font-family: @font-body;
|
|
flex: 1;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
.actions-list {
|
|
gap: 5px;
|
|
|
|
.action-item {
|
|
&:hover {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease-in-out;
|
|
|
|
.label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-family: @font-body;
|
|
cursor: pointer;
|
|
flex: 1;
|
|
i {
|
|
text-align: center;
|
|
width: 30px;
|
|
}
|
|
}
|
|
|
|
input[type='radio'] {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|