Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.

Commit aa4c59a

Browse files
author
mrliptontea
committed
Fix some styling issues in Redmine 4.
* Fix #172 Collapsed/expended icons for completed versions. * Fix #171 "Display" label in Gantt option. * Fix #170 radio buttons in projects options. * Fix #169 styles in the spent time tab. * Change lightness of shades 50 and 950. * Change loader styles.
1 parent aaddd2e commit aa4c59a

21 files changed

+225
-108
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,17 @@ If you need to customize styles for [Redmine Backlogs][redmine_backlogs] remembe
5858

5959
Latest (master):
6060

61+
* Fixed #172 Collapsed/expended icons for completed versions.
62+
* Fixed #171 "Display" label in Gantt option.
63+
* Fixed #170 radio buttons in projects options.
64+
* Fixed #169 styles in the spent time tab.
6165
* Fixed #164: apply responsive overrides more generally
6266
* Fixed #159: wrapping long text in issue attributes.
6367
* Fixed #150: styling for query totals and expander in Agile plugin.
6468
* Fixed #148: full screen view for Dashboard plugin.
6569
* Fixed a "timeline" positioning in issue notes/changes.
70+
* Changed lightness of shades 50 and 950.
71+
* Changed loader styles.
6672

6773
v2.9.1 (2020-02-22):
6874

plugins/redmine_backlogs/jquery/jquery-ui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/redmine_backlogs/master_backlog.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/redmine_backlogs/taskboard.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

screenshots/calendar.png

-73.4 KB
Loading

screenshots/issue-page.png

-103 KB
Loading

screenshots/issues.png

-68.5 KB
Loading

screenshots/new-issue.png

-69.1 KB
Loading

screenshots/redmine-backlogs.png

-48.8 KB
Loading

src/sass/_variables.scss

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $black: #000 !default;
4343
$gray: hsl(hue($indigo), 20%, 85%) !default;
4444

4545
$shade-map: (
46-
50: 90%,
46+
50: 87.5%,
4747
100: 80%,
4848
200: 65%,
4949
300: 40%,
@@ -53,7 +53,7 @@ $shade-map: (
5353
700: 40%,
5454
800: 65%,
5555
900: 80%,
56-
950: 90%
56+
950: 87.5%
5757
) !default;
5858

5959
@function shade($color, $shade: 500) {
@@ -612,7 +612,7 @@ $progress-bar-info-bg: $brand-info !default;
612612
$panel-body-padding-vertical: 15px !default;
613613
$panel-body-padding-horizontal: 15px !default;
614614
$panel-body-padding: $panel-body-padding-vertical $panel-body-padding-horizontal !default;
615-
$panel-color: $gray-900 !default;
615+
$panel-color: $text-color !default;
616616
$panel-bg: $gray-50 !default;
617617
$panel-border: $gray-400 !default;
618618
$panel-border-radius: $border-radius-base !default;
@@ -648,10 +648,15 @@ $issue-attribute-padding-h: 5px !default;
648648
//== Speech "bubbles"
649649
//
650650

651+
$bubble-bg: $issue-bg !default;
652+
$bubble-border: $issue-border !default;
653+
$bubble-text: $issue-text !default;
651654
$bubble-gravatar-size: 24px !default;
652655
$bubble-gravatar-space: 12px !default;
653656
$bubble-padding-vertical: 8px !default;
654-
$bubble-padding-horizontal: 15px !default;
657+
$bubble-padding-horizontal: 12px !default;
658+
$bubble-target-border: saturate($brand-primary, 25%) !default;
659+
$bubble-target-shadow-alpha: .2 !default;
655660

656661

657662
//== Badges

0 commit comments

Comments
 (0)