mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
* Fixed so that the description message always comes first with the action workflow
* Changed to instead render the description in the roll message
* Made the action config title not get changed in d20rolldialog if it's not a trait roll
* Initial chat message description design change
* Revert "Initial chat message description design change"
This reverts commit f4f5fd6c24.
* .
63 lines
1.3 KiB
Text
63 lines
1.3 KiB
Text
@import '../../utils/colors.less';
|
|
@import '../../utils/fonts.less';
|
|
@import '../../utils/spacing.less';
|
|
|
|
.daggerheart.chat-sidebar.theme-light,
|
|
#interface.theme-light {
|
|
.daggerheart.chat.action {
|
|
.action-move .action-section {
|
|
border-bottom: 1px solid @dark-blue;
|
|
|
|
&:hover {
|
|
background: @dark-blue-10;
|
|
}
|
|
|
|
.action-header {
|
|
.title {
|
|
color: @dark-blue;
|
|
}
|
|
.label {
|
|
color: @dark;
|
|
}
|
|
}
|
|
|
|
.fa-chevron-down {
|
|
color: @dark-blue;
|
|
}
|
|
}
|
|
|
|
.description {
|
|
color: @dark;
|
|
}
|
|
}
|
|
}
|
|
|
|
.daggerheart.chat {
|
|
&.action {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.ability-card-footer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px;
|
|
width: 100%;
|
|
padding: 0 8px;
|
|
|
|
button {
|
|
height: 40px;
|
|
flex: 1 1 calc(50% - 5px);
|
|
|
|
&:nth-last-child(1):nth-child(odd) {
|
|
flex-basis: 100%;
|
|
}
|
|
}
|
|
|
|
.ability-card-action-cost {
|
|
margin: auto;
|
|
font-size: 1.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|