From 88411c91f83614a3918c2a553e2592862c147175 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 12 Aug 2026 22:17:31 +0200 Subject: add year-track-activity overview --- asset-sources/theme.scss | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'asset-sources/theme.scss') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index ba05782..cdb4923 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -271,6 +271,37 @@ strong { } } +.contributions { + tbody td.contribs-cell { + div { + border: 2px solid rgba(0, 0, 0, 0.175); + border-radius: calc(0.375rem - (1px)); + + width: 1em; + height: 1em; + } + } + + .contribs-length-0 div { + background-color: #FFFFFF; + } + .contribs-length-1 div { + background-color: #8FF0A4; + } + .contribs-length-2 div { + background-color: #75DD95; + } + .contribs-length-3 div { + background-color: #5BC987; + } + .contribs-length-4 div { + background-color: #40B678; + } + .contribs-length-5 div { + background-color: #26A269; + } +} + .browse-summary { font-variant: lining-nums; } -- cgit v1.2.3 From 5178da7069304219a5c38b54a56a705627a88491 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 13 Aug 2026 17:33:41 +0200 Subject: add weekdays to year contributions --- asset-sources/theme.scss | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'asset-sources/theme.scss') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index cdb4923..5432b43 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -274,14 +274,18 @@ strong { .contributions { tbody td.contribs-cell { div { - border: 2px solid rgba(0, 0, 0, 0.175); + border: 1px solid rgba(0, 0, 0, 0.175); border-radius: calc(0.375rem - (1px)); - width: 1em; - height: 1em; + width: 1.1em; + height: 1.1em; } } + .contribs-rowhead { + font-size: 90%; + } + .contribs-length-0 div { background-color: #FFFFFF; } -- cgit v1.2.3 From f63341b5a5fd77144095dc4f974ffc32c1759614 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 13 Aug 2026 17:42:02 +0200 Subject: add legend to track activity --- asset-sources/theme.scss | 58 +++++++++++++++++++++++------------------------- 1 file changed, 28 insertions(+), 30 deletions(-) (limited to 'asset-sources/theme.scss') diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 5432b43..2faaffa 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -271,39 +271,37 @@ strong { } } -.contributions { - tbody td.contribs-cell { - div { - border: 1px solid rgba(0, 0, 0, 0.175); - border-radius: calc(0.375rem - (1px)); - - width: 1.1em; - height: 1.1em; - } - } +.contribs-cell { + div { + border: 1px solid rgba(0, 0, 0, 0.175); + border-radius: calc(0.375rem - (1px)); - .contribs-rowhead { - font-size: 90%; + width: 1.1em; + height: 1.1em; } +} - .contribs-length-0 div { - background-color: #FFFFFF; - } - .contribs-length-1 div { - background-color: #8FF0A4; - } - .contribs-length-2 div { - background-color: #75DD95; - } - .contribs-length-3 div { - background-color: #5BC987; - } - .contribs-length-4 div { - background-color: #40B678; - } - .contribs-length-5 div { - background-color: #26A269; - } +.contribs-rowhead { + font-size: 90%; +} + +.contribs-length-0 div { + background-color: #FFFFFF; +} +.contribs-length-1 div { + background-color: #8FF0A4; +} +.contribs-length-2 div { + background-color: #75DD95; +} +.contribs-length-3 div { + background-color: #5BC987; +} +.contribs-length-4 div { + background-color: #40B678; +} +.contribs-length-5 div { + background-color: #26A269; } .browse-summary { -- cgit v1.2.3