askclass-course-theme 0.16.0 → 0.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aeb24827eb68d9846e452e7d8642b7af508607378b353153f76c1e965c9bd9aa
4
- data.tar.gz: be7efd2d97f4d3d3aa1a2f7230d2822a9bcef7425fff8d284f61939c53ac9574
3
+ metadata.gz: 4ce64de0443f65b49f34b38d0533ff9e62ecf3000e3e75000dee8cece5120464
4
+ data.tar.gz: 55381a81434be5e764ea82ffc0d89a64da0ac070b31387251e2a34e8d40810a8
5
5
  SHA512:
6
- metadata.gz: 240947bca87191380c4b9088828cb2a065acf8350fc39c52241da2504f0b80fbfb601528e9e969c550d3c7447fc4c369b38e82446799ccb54f62e5be2ba80afb
7
- data.tar.gz: beeeb192bd5eb9e0925c2d64a55a35674de57910b949a90f3abf61252675054a1fbae62f8a2425f3f281818166147f1384bfd521858a1e2e7e71624bb0e76f86
6
+ metadata.gz: b7dde1de1e3910395c4625721569ad72324bf233ffa77a00d4ffd6fddbf1bca212c5887b4c97924e6fbc303005a8a19030b9a0d85b1e837bfc9759e6fd8aa0f3
7
+ data.tar.gz: cd0db138a8946959e5f402dc99fb7376abc56af4d3c8834f0b2e1fb5c4bfb5d7e2450b87254c77dad73f2de44b5780d4da32349152f51c37e0ffcb5d55e0bbaa
data/_sass/_base.scss CHANGED
@@ -1,4 +1,3 @@
1
- @use "init";
2
1
  @use "default" as *;
3
2
 
4
3
  :root {
data/_sass/_default.scss CHANGED
@@ -32,4 +32,4 @@ $content-width: 600px !default;
32
32
 
33
33
  $grid-width: 180px !default;
34
34
  $grid-image-height: 180px !default;
35
- $grid-body-height: default !default;
35
+ $grid-body-height: initial !default;
@@ -6,18 +6,18 @@ $color-5: #355691;
6
6
  $color-6: #4073A0;
7
7
  $color-7: #3C5A14;
8
8
  $color-8: #598B2C;
9
- $color-9: #9B2226;
10
- $color-10: #B18FCF;
11
- $color-11: #5F0A87; // Deep Royal Purple
12
- $color-12: #9D4EDD; // Bright Amethyst
13
- $color-13: #6F1D1B; // Deep Burnt Umber
14
- $color-14: #BB3E03; // Rust / Bright Terracotta
15
- $color-15: #890620; // Wine Red
16
- $color-16: #D00000; // Classic Crimson
17
- $color-17: #1B4332; // Deep Forest Green
18
- $color-18: #74C69D; // Seafoam Mint
19
- $color-19: #212529; // Rich Charcoal
20
- $color-20: #495057; // Medium Slate Grey
9
+ $color-9: #5F0A87;
10
+ $color-10: #9D4EDD;
11
+ $color-11: #D81B60;
12
+ $color-12: #F06292;
13
+ $color-13: #3E2723;
14
+ $color-14: #795548;
15
+ $color-15: #C62828;
16
+ $color-16: #EF5350;
17
+ $color-17: #2E7D32;
18
+ $color-18: #66BB6A;
19
+ $color-19: #212529;
20
+ $color-20: #495057;
21
21
 
22
22
  html {
23
23
  --c1: #{$color-1};
data/_sass/_tab-main.scss CHANGED
@@ -71,30 +71,23 @@
71
71
  text-align: left;
72
72
  &.limit-height {
73
73
  max-height: var(--grid-body-height);
74
- position: relative;
75
74
  overflow-y: auto;
76
75
  padding-bottom: 0;
77
76
  box-sizing: border-box;
78
- &::after {
79
- content: "";
80
- position: sticky;
81
- display: block;
82
- bottom: 0;
83
- left: 0;
84
- right: 0;
85
- height: 30px;
86
- opacity: 0;
87
- padding: 0;
88
- margin: 0;
89
- background: linear-gradient(to top,
90
- rgba(0, 0, 0, 0.12) 0%,
91
- transparent 100%);
92
- pointer-events: none; /* clicks pass through */
93
- transition: opacity 0.4s ease;
94
- z-index: 1;
95
- }
96
- &.has-more::after {
97
- opacity: 1;
77
+ &.has-more {
78
+ -webkit-mask-image: linear-gradient(
79
+ to bottom,
80
+ black 0%,
81
+ black calc(100% - 100px), // solid/opaque until 100px from bottom
82
+ transparent 100% // fade to fully transparent
83
+ );
84
+ mask-image: linear-gradient(
85
+ to bottom,
86
+ black 0%,
87
+ black calc(100% - 100px),
88
+ transparent 100%
89
+ );
90
+ transition: mask-image 0.4s ease;
98
91
  }
99
92
  }
100
93
  h2 {
data/_sass/init.scss CHANGED
@@ -6,4 +6,4 @@
6
6
  // @forward 'default' with ( $color-fg: white );
7
7
 
8
8
  // Make grid boxes the same height (scrollable)
9
- // @forward 'default' with ( $grid-body-height: 200px );
9
+ // @forward 'default' with ( $grid-body-height: 260px );
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  ---
3
3
 
4
+ @use "init" as *;
4
5
  @use "base" as *;
5
6
  @use "article" as *;
6
7
  @use "bubbles" as *;
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  ---
3
3
 
4
+ @use "init" as *;
4
5
  @use "base" as *;
5
6
  @use "grid" as *;
@@ -1,4 +1,6 @@
1
1
  ---
2
2
  ---
3
+
4
+ @use "init" as *;
3
5
  @use "base" as *;
4
6
  @use "article" as *;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: askclass-course-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.16.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - AskClass
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-15 00:00:00.000000000 Z
11
+ date: 2026-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,7 +80,6 @@ files:
80
80
  - _sass/_table.scss
81
81
  - _sass/_video.scss
82
82
  - _sass/init.scss
83
- - assets/audio/appreciation.mp3
84
83
  - assets/css/dialog.scss
85
84
  - assets/css/segment.scss
86
85
  - assets/css/session.scss
Binary file