quasarr 1.26.0__py3-none-any.whl → 1.26.2__py3-none-any.whl
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.
Potentially problematic release.
This version of quasarr might be problematic. Click here for more details.
- quasarr/providers/html_templates.py +25 -7
- quasarr/providers/obfuscated.py +26 -11
- quasarr/providers/shared_state.py +1 -0
- quasarr/providers/version.py +1 -1
- quasarr/storage/setup.py +97 -27
- {quasarr-1.26.0.dist-info → quasarr-1.26.2.dist-info}/METADATA +1 -1
- {quasarr-1.26.0.dist-info → quasarr-1.26.2.dist-info}/RECORD +11 -11
- {quasarr-1.26.0.dist-info → quasarr-1.26.2.dist-info}/WHEEL +0 -0
- {quasarr-1.26.0.dist-info → quasarr-1.26.2.dist-info}/entry_points.txt +0 -0
- {quasarr-1.26.0.dist-info → quasarr-1.26.2.dist-info}/licenses/LICENSE +0 -0
- {quasarr-1.26.0.dist-info → quasarr-1.26.2.dist-info}/top_level.txt +0 -0
|
@@ -66,14 +66,21 @@ def render_centered_html(inner_content):
|
|
|
66
66
|
margin-top: 0;
|
|
67
67
|
color: var(--setup-border);
|
|
68
68
|
}
|
|
69
|
-
/* Subtle button styling */
|
|
69
|
+
/* Subtle button styling (ghost style) */
|
|
70
70
|
.btn-subtle {
|
|
71
|
-
background:
|
|
71
|
+
background: transparent;
|
|
72
72
|
color: var(--fg-color);
|
|
73
|
-
border:
|
|
74
|
-
padding:
|
|
75
|
-
border-radius:
|
|
73
|
+
border: 1.5px solid var(--btn-subtle-border);
|
|
74
|
+
padding: 8px 16px;
|
|
75
|
+
border-radius: 0.5rem;
|
|
76
76
|
cursor: pointer;
|
|
77
|
+
font-size: 1rem;
|
|
78
|
+
font-weight: 500;
|
|
79
|
+
transition: background-color 0.2s ease, border-color 0.2s ease;
|
|
80
|
+
}
|
|
81
|
+
.btn-subtle:hover {
|
|
82
|
+
background: var(--btn-subtle-bg);
|
|
83
|
+
border-color: var(--fg-color);
|
|
77
84
|
}
|
|
78
85
|
/* Divider styling */
|
|
79
86
|
.section-divider {
|
|
@@ -189,17 +196,28 @@ def render_centered_html(inner_content):
|
|
|
189
196
|
border-radius: 0.5rem;
|
|
190
197
|
font-weight: 500;
|
|
191
198
|
cursor: pointer;
|
|
192
|
-
transition: background-color 0.2s ease, border-color 0.2s ease;
|
|
193
|
-
border: none;
|
|
199
|
+
transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
|
|
194
200
|
margin-top: 0.5rem;
|
|
195
201
|
}
|
|
196
202
|
.btn-primary {
|
|
197
203
|
background-color: var(--primary);
|
|
198
204
|
color: #fff;
|
|
205
|
+
border: 1.5px solid #0856c7;
|
|
206
|
+
}
|
|
207
|
+
.btn-primary:hover {
|
|
208
|
+
background-color: #0b5ed7;
|
|
209
|
+
border-color: #084298;
|
|
210
|
+
box-shadow: 0 2px 6px rgba(13, 110, 253, 0.4);
|
|
199
211
|
}
|
|
200
212
|
.btn-secondary {
|
|
201
213
|
background-color: var(--secondary);
|
|
202
214
|
color: #fff;
|
|
215
|
+
border: 1.5px solid #565e64;
|
|
216
|
+
}
|
|
217
|
+
.btn-secondary:hover {
|
|
218
|
+
background-color: #5c636a;
|
|
219
|
+
border-color: #41464b;
|
|
220
|
+
box-shadow: 0 2px 6px rgba(108, 117, 125, 0.4);
|
|
203
221
|
}
|
|
204
222
|
a {
|
|
205
223
|
color: var(--primary);
|