ultimate-jekyll-manager 0.0.189 → 0.0.191
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.
- package/CLAUDE.md +64 -0
- package/README.md +29 -0
- package/TODO.md +2 -0
- package/dist/assets/css/core/_verts.scss +14 -0
- package/dist/assets/css/ultimate-jekyll-manager.scss +1 -0
- package/dist/assets/js/core/exit-popup.js +3 -3
- package/dist/assets/themes/bootstrap/_theme.scss +9 -230
- package/dist/assets/themes/bootstrap/overrides/_accordion.scss +21 -0
- package/dist/assets/themes/{classy/css/components → bootstrap/overrides}/_avatars.scss +18 -3
- package/dist/assets/themes/bootstrap/overrides/_blog-images.scss +45 -0
- package/dist/assets/themes/bootstrap/overrides/_buttons-adaptive.scss +122 -0
- package/dist/assets/themes/bootstrap/overrides/_cursor-utilities.scss +13 -0
- package/dist/assets/themes/bootstrap/overrides/_index.scss +29 -0
- package/dist/assets/themes/bootstrap/overrides/_links.scss +31 -0
- package/dist/assets/themes/{classy/css/base → bootstrap/overrides}/_soft-colors.scss +11 -4
- package/dist/assets/themes/bootstrap/overrides/_spacing-extended.scss +74 -0
- package/dist/assets/themes/{classy/css/components → bootstrap/overrides}/_spinners.scss +6 -3
- package/dist/assets/themes/bootstrap/overrides/_typography-utilities.scss +40 -0
- package/dist/assets/themes/classy/_theme.js +2 -1
- package/dist/assets/themes/classy/_theme.scss +4 -5
- package/dist/assets/themes/classy/css/base/_typography.scss +0 -31
- package/dist/assets/themes/classy/css/base/_utilities.scss +1 -14
- package/dist/assets/themes/classy/css/components/_buttons.scss +0 -133
- package/dist/config/_config_default.yml +6 -0
- package/dist/defaults/Gemfile +6 -0
- package/dist/gulp/tasks/distribute.js +110 -0
- package/dist/gulp/tasks/jekyll.js +2 -0
- package/package.json +2 -2
- package/dist/assets/themes/classy/css/base/_spacing.scss +0 -68
- package/dist/assets/themes/classy/css/components/_links.scss +0 -19
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
// Classy Extended Spacing
|
|
2
|
-
// Additional spacing utilities beyond Bootstrap's defaults
|
|
3
|
-
// Uses Bootstrap's $spacer variable which is available via config
|
|
4
|
-
|
|
5
|
-
// ============================================
|
|
6
|
-
// Extended Padding Classes
|
|
7
|
-
// ============================================
|
|
8
|
-
@for $i from 6 through 10 {
|
|
9
|
-
$size: if($i == 6, 4, if($i == 7, 5, if($i == 8, 6, if($i == 9, 8, 10))));
|
|
10
|
-
|
|
11
|
-
.p-#{$i} { padding: $spacer * $size !important; }
|
|
12
|
-
.pt-#{$i} { padding-top: $spacer * $size !important; }
|
|
13
|
-
.pb-#{$i} { padding-bottom: $spacer * $size !important; }
|
|
14
|
-
.ps-#{$i} { padding-left: $spacer * $size !important; }
|
|
15
|
-
.pe-#{$i} { padding-right: $spacer * $size !important; }
|
|
16
|
-
.px-#{$i} {
|
|
17
|
-
padding-left: $spacer * $size !important;
|
|
18
|
-
padding-right: $spacer * $size !important;
|
|
19
|
-
}
|
|
20
|
-
.py-#{$i} {
|
|
21
|
-
padding-top: $spacer * $size !important;
|
|
22
|
-
padding-bottom: $spacer * $size !important;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// ============================================
|
|
27
|
-
// VH classes
|
|
28
|
-
// ============================================
|
|
29
|
-
// Height utilities using viewport height (vh) units
|
|
30
|
-
.vh-50 { height: 50vh !important; }
|
|
31
|
-
.vh-75 { height: 75vh !important; }
|
|
32
|
-
.vh-80 { height: 80vh !important; }
|
|
33
|
-
.vh-90 { height: 90vh !important; }
|
|
34
|
-
.vh-100 { height: 100vh !important; }
|
|
35
|
-
|
|
36
|
-
// Min-Height utilities using viewport height (vh) units
|
|
37
|
-
.min-vh-50 { min-height: 50vh !important; }
|
|
38
|
-
.min-vh-75 { min-height: 75vh !important; }
|
|
39
|
-
.min-vh-80 { min-height: 80vh !important; }
|
|
40
|
-
.min-vh-90 { min-height: 90vh !important; }
|
|
41
|
-
.min-vh-100 { min-height: 100vh !important; }
|
|
42
|
-
|
|
43
|
-
// ============================================
|
|
44
|
-
// Max Width Utilities (Bootstrap Breakpoints)
|
|
45
|
-
// ============================================
|
|
46
|
-
// Max width utility classes based on Bootstrap grid breakpoints
|
|
47
|
-
// Usage: mw-sm, mw-md, mw-lg, mw-xl, mw-xxl
|
|
48
|
-
// These set the max-width to match Bootstrap's container breakpoints
|
|
49
|
-
|
|
50
|
-
.mw-sm {
|
|
51
|
-
max-width: 576px !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.mw-md {
|
|
55
|
-
max-width: 768px !important;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.mw-lg {
|
|
59
|
-
max-width: 992px !important;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.mw-xl {
|
|
63
|
-
max-width: 1200px !important;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.mw-xxl {
|
|
67
|
-
max-width: 1400px !important;
|
|
68
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
// Classy Link Components
|
|
2
|
-
// Custom link styles and variations
|
|
3
|
-
|
|
4
|
-
// ============================================
|
|
5
|
-
// Muted Link Style
|
|
6
|
-
// ============================================
|
|
7
|
-
.link-muted {
|
|
8
|
-
--bs-text-opacity: 1;
|
|
9
|
-
color: var(--bs-secondary-color) !important;
|
|
10
|
-
text-decoration: none;
|
|
11
|
-
transition: opacity 0.15s ease-in-out;
|
|
12
|
-
|
|
13
|
-
&:hover,
|
|
14
|
-
&:focus {
|
|
15
|
-
color: var(--bs-secondary-color) !important;
|
|
16
|
-
text-decoration: underline;
|
|
17
|
-
opacity: 0.75;
|
|
18
|
-
}
|
|
19
|
-
}
|