ultimate-jekyll-manager 0.0.151 → 0.0.153

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.
@@ -26,4 +26,4 @@ body {
26
26
 
27
27
  @font-face {
28
28
  font-display: auto;
29
- }
29
+ }
@@ -6,18 +6,29 @@
6
6
  // ============================================
7
7
  .accordion-item {
8
8
  background-color: var(--bs-secondary-bg);
9
+ border-radius: var(--bs-accordion-border-radius) !important;
10
+ margin-bottom: 0.5rem;
11
+
12
+ &:last-child {
13
+ margin-bottom: 0;
14
+ }
9
15
  }
10
16
 
11
17
  .accordion-button {
12
18
  background-color: var(--bs-secondary-bg);
19
+ border-radius: var(--bs-accordion-border-radius) !important;
13
20
 
14
21
  &:not(.collapsed) {
15
22
  background-color: var(--bs-secondary-bg);
23
+ border-bottom-left-radius: 0 !important;
24
+ border-bottom-right-radius: 0 !important;
16
25
  }
17
26
  }
18
27
 
19
28
  .accordion-body {
20
29
  background-color: var(--bs-secondary-bg);
30
+ border-bottom-left-radius: var(--bs-accordion-border-radius) !important;
31
+ border-bottom-right-radius: var(--bs-accordion-border-radius) !important;
21
32
  }
22
33
 
23
34
  // Light mode icons
@@ -7,54 +7,54 @@
7
7
  .input-group {
8
8
  > .form-control {
9
9
  border-radius: $classy-radius-lg;
10
-
10
+
11
11
  &:not(:last-child) {
12
12
  border-top-right-radius: 0;
13
13
  border-bottom-right-radius: 0;
14
14
  }
15
-
15
+
16
16
  &:not(:first-child) {
17
17
  border-top-left-radius: 0;
18
18
  border-bottom-left-radius: 0;
19
19
  }
20
20
  }
21
-
21
+
22
22
  // Buttons in input groups
23
23
  > .btn {
24
24
  border-radius: $classy-radius-lg;
25
-
25
+
26
26
  &:not(:last-child) {
27
27
  border-top-right-radius: 0;
28
28
  border-bottom-right-radius: 0;
29
29
  }
30
-
30
+
31
31
  &:not(:first-child) {
32
32
  border-top-left-radius: 0;
33
33
  border-bottom-left-radius: 0;
34
34
  }
35
-
35
+
36
36
  // Last button in group
37
37
  &:last-child {
38
38
  border-top-left-radius: 0;
39
39
  border-bottom-left-radius: 0;
40
40
  }
41
-
41
+
42
42
  // First button in group
43
43
  &:first-child {
44
44
  border-top-right-radius: 0;
45
45
  border-bottom-right-radius: 0;
46
46
  }
47
47
  }
48
-
48
+
49
49
  // Input group text
50
50
  > .input-group-text {
51
51
  border-radius: $classy-radius-lg;
52
-
52
+
53
53
  &:not(:last-child) {
54
54
  border-top-right-radius: 0;
55
55
  border-bottom-right-radius: 0;
56
56
  }
57
-
57
+
58
58
  &:not(:first-child) {
59
59
  border-top-left-radius: 0;
60
60
  border-bottom-left-radius: 0;
@@ -77,6 +77,17 @@
77
77
  box-shadow: 0 0 0 0.25rem rgba($primary, 0.25);
78
78
  background-color: var(--bs-body-bg);
79
79
  }
80
+
81
+ // // Override Chrome/Safari autofill background color with subtle indicator
82
+ &:-webkit-autofill,
83
+ &:-webkit-autofill:hover,
84
+ &:-webkit-autofill:focus {
85
+ -webkit-box-shadow: 0 0 0 1000px var(--bs-body-bg) inset !important;
86
+ -webkit-text-fill-color: var(--bs-body-color) !important;
87
+ caret-color: var(--bs-body-color);
88
+ border-color: $primary !important;
89
+ box-shadow: 0 0 0 1000px var(--bs-body-bg) inset, 0 0 0 2px rgba($primary, 0.15) !important;
90
+ }
80
91
  }
81
92
 
82
93
  // ============================================
@@ -98,18 +109,18 @@
98
109
  // ============================================
99
110
  .form-check-input {
100
111
  border-radius: $classy-radius-sm;
101
-
112
+
102
113
  &[type="radio"] {
103
114
  border-radius: 50%;
104
115
  }
105
-
116
+
106
117
  &:checked {
107
118
  background-color: $primary;
108
119
  border-color: $primary;
109
120
  }
110
-
121
+
111
122
  &:focus {
112
123
  border-color: $primary;
113
124
  box-shadow: 0 0 0 0.25rem rgba($primary, 0.25);
114
125
  }
115
- }
126
+ }
@@ -16,7 +16,10 @@ theme:
16
16
  <style>
17
17
  main.d-flex {
18
18
  display: flex !important;
19
- min-height: calc(100vh);
19
+ }
20
+ .min-vh-100 {
21
+ min-height: 100vh !important; /* Fallback for older browsers */
22
+ min-height: 100dvh !important; /* Dynamic viewport height for mobile */
20
23
  }
21
24
 
22
25
  main.d-flex.align-items-center {
@@ -47,7 +47,6 @@ const watchInput = [
47
47
 
48
48
  // Page-specific js - watch for changes but don't compile as entry points
49
49
  `${rootPathPackage}/dist/assets/js/pages/**/*.js`,
50
- 'src/assets/js/pages/**/*.js',
51
50
 
52
51
  // Core JS - watch for changes but don't compile as entry points
53
52
  `${rootPathPackage}/dist/assets/js/**/*.js`,
@@ -56,6 +55,9 @@ const watchInput = [
56
55
  `${rootPathPackage}/dist/assets/themes/**/*.js`,
57
56
  'src/assets/themes/**/*.js',
58
57
 
58
+ // All project assets js - watch for changes but don't compile as entry points
59
+ 'src/assets/js/**/*.js',
60
+
59
61
  // UJ Service worker
60
62
  `${rootPathPackage}/dist/service-worker.js`,
61
63
 
@@ -3238,3 +3238,31 @@
3238
3238
  [debug] [2025-12-11T03:31:03.904Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3239
3239
  [debug] [2025-12-11T03:31:03.904Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3240
3240
  [debug] [2025-12-11T03:31:03.905Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3241
+ [debug] [2025-12-11T04:02:16.400Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3242
+ [debug] [2025-12-11T04:02:16.402Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3243
+ [debug] [2025-12-11T04:02:16.402Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3244
+ [debug] [2025-12-11T04:02:16.402Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3245
+ [debug] [2025-12-11T04:02:16.402Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3246
+ [debug] [2025-12-11T04:02:16.410Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3247
+ [debug] [2025-12-11T04:02:16.411Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3248
+ [debug] [2025-12-11T04:02:16.404Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3249
+ [debug] [2025-12-11T04:02:16.404Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3250
+ [debug] [2025-12-11T04:02:16.404Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3251
+ [debug] [2025-12-11T04:02:16.417Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3252
+ [debug] [2025-12-11T04:02:16.417Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3253
+ [debug] [2025-12-11T04:02:16.494Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3254
+ [debug] [2025-12-11T04:02:16.494Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3255
+ [debug] [2025-12-11T04:02:16.495Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3256
+ [debug] [2025-12-11T04:02:16.495Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3257
+ [debug] [2025-12-11T04:02:16.501Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3258
+ [debug] [2025-12-11T04:02:16.501Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3259
+ [debug] [2025-12-11T04:02:16.501Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3260
+ [debug] [2025-12-11T04:02:16.501Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3261
+ [debug] [2025-12-11T04:02:16.507Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3262
+ [debug] [2025-12-11T04:02:16.507Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3263
+ [debug] [2025-12-11T04:02:16.508Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3264
+ [debug] [2025-12-11T04:02:16.508Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3265
+ [debug] [2025-12-11T04:02:16.510Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3266
+ [debug] [2025-12-11T04:02:16.510Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3267
+ [debug] [2025-12-11T04:02:16.511Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
3268
+ [debug] [2025-12-11T04:02:16.511Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.151",
3
+ "version": "0.0.153",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {