Skip to content

Commit

Permalink
FIX: Task font colours were being ignored
Browse files Browse the repository at this point in the history
Fixes #13
Resolves #7
  • Loading branch information
aljawaid committed Dec 28, 2022
1 parent e5fc49c commit 29c3c9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Model/ColorModelExt.php
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,8 @@ public function getCssExt()
$buffer .= '}';
if (isset($values['font'])) {
$buffer .= '.color-picker-square.color-'.$color.':before { content: "\2609"; text-align: center; display: block; position: absolute; margin-top: -4px; margin-left: 1px; }';
$buffer .= '.task-summary-container.color-'.$color.' .task-summary-columns .task-summary-column { color: '.$values['font'].'; }';
$buffer .= '.task-summary-container.color-'.$color.' .task-summary-columns .task-summary-column span { color: '.$values['font'].'; }';
}
$buffer .= 'td.color-'.$color.' { background-color: '.$values['background'].'; }';
$buffer .= '.table-list-row.color-'.$color.' { border-left: 5px solid '.$values['border'].'; }';
Expand Down

1 comment on commit 29c3c9e

@aljawaid
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.