You've already forked Tricky-Addon-Update-Target-List
mirror of
https://github.com/KOWX712/Tricky-Addon-Update-Target-List.git
synced 2025-09-06 06:37:09 +00:00
feat: add monet support in MMRL
This commit is contained in:
@@ -352,7 +352,7 @@
|
|||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="uninstall-container ripple-element hidden-uninstall">
|
<div class="uninstall-container ripple-element hidden-uninstall">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#FF3636"><path d="M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z" /></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z" /></svg>
|
||||||
<span data-i18n="functional_button.uninstall_webui"></span>
|
<span data-i18n="functional_button.uninstall_webui"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
width: calc(90vw - 60px);
|
width: calc(90vw - 60px);
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
background: #fff;
|
background-color: var(--bg-secondary);
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
width: calc(100% - 20px);
|
width: calc(100% - 20px);
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background-color: #F5F5F5;
|
background-color: var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#acknowledgment {
|
#acknowledgment {
|
||||||
@@ -88,14 +88,4 @@
|
|||||||
#link-text {
|
#link-text {
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.about-menu {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
#disclaimer {
|
|
||||||
background-color: #6E6E6E;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: #DCDCDC;
|
background-color: var(--border-color);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
width: calc(90% - 60px);
|
width: calc(90% - 60px);
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@@ -80,12 +80,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.changelog a {
|
.changelog a {
|
||||||
color: #6E6E6E;
|
color: var(--text-secondary);
|
||||||
cursor: none;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
.changelog a:active {
|
.changelog a:active {
|
||||||
color: blue;
|
color: var(--btn-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-button-container {
|
.update-button-container {
|
||||||
@@ -100,7 +100,8 @@
|
|||||||
display: none;
|
display: none;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background-color: #ddd;
|
color: var(--text-primary);
|
||||||
|
background-color: var(--border-color);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
@@ -110,12 +111,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.reboot {
|
.reboot {
|
||||||
color: #fff;
|
color: var(--btn-primary-text);
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
background-color: #fff;
|
background-color: var(--bg-secondary);
|
||||||
border: none;
|
border: none;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
@@ -145,9 +146,8 @@
|
|||||||
right: 0;
|
right: 0;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
background-color: #B1B1B1;
|
background-color: var(--border-color);
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-radius: 50px 50px;
|
border-radius: 50px 50px;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: scale(0);
|
transform: scale(0);
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#normal-indicator {
|
#normal-indicator {
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
#hack-indicator {
|
#hack-indicator {
|
||||||
@@ -255,11 +255,15 @@
|
|||||||
transform: translate(-50%, -50%) scale(0);
|
transform: translate(-50%, -50%) scale(0);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: transform 0.2s ease-out, opacity 0.3s ease;
|
transition: transform 0.2s ease-out, opacity 0.3s ease;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--btn-primary-text);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.checkbox:checked + .custom-checkbox {
|
.checkbox:checked + .custom-checkbox {
|
||||||
border-color: #007bff;
|
border-color: var(--btn-primary);
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
transition: border-color 0.1s ease;
|
transition: border-color 0.1s ease;
|
||||||
animation: checked-bounce 0.3s ease-out;
|
animation: checked-bounce 0.3s ease-out;
|
||||||
}
|
}
|
||||||
@@ -305,32 +309,4 @@
|
|||||||
100% {
|
100% {
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.card {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.update-card {
|
|
||||||
background-color: #4D4D4D;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mode {
|
|
||||||
background-color: #343434;
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install {
|
|
||||||
background-color: #6E6E6E;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.update-menu {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.update-content a {
|
|
||||||
color: #C2C2C2;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
width: calc(90% - 60px);
|
width: calc(90% - 60px);
|
||||||
max-width: 300px;
|
max-width: 300px;
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
background-color: #fff;
|
background-color: var(--bg-secondary);
|
||||||
border-radius: 18px;
|
border-radius: 18px;
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
@@ -29,11 +29,12 @@
|
|||||||
height: 100px;
|
height: 100px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: #F5F5F5;
|
color: var(--text-primary);
|
||||||
border: 1px solid #ccc;
|
background-color: var(--bg-primary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
outline-color: #007bff;
|
outline-color: var(--btn-primary);
|
||||||
resize: none;
|
resize: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,21 +45,9 @@
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
color: white;
|
color: var(--btn-primary-text);
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.boot-hash-card {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boot-hash-input {
|
|
||||||
background-color: #232323;
|
|
||||||
color: #fff;
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,8 @@
|
|||||||
width: 90%;
|
width: 90%;
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
height: 80vh;
|
height: 80vh;
|
||||||
background-color: #fff;
|
color: var(--text-primary);
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -19,18 +20,18 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-bottom: 2px solid #ccc;
|
border-bottom: 2px solid var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.current-path .separator {
|
.current-path .separator {
|
||||||
color: #6E6E6E;
|
color: var(--text-secondary);
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.back-button {
|
.back-button {
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
fill: #6E6E6E;
|
fill: var(--border-color);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,13 +40,14 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.close-selector {
|
.close-selector {
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
color: #ccc;
|
color: var(--border-color);
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,7 +68,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background-color: #fff;
|
background-color: var(--bg-secondary);
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
@@ -75,7 +77,7 @@
|
|||||||
.file-item svg {
|
.file-item svg {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
fill: #6E6E6E;
|
fill: var(--text-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-item span {
|
.file-item span {
|
||||||
@@ -83,28 +85,4 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.file-selector {
|
|
||||||
background-color: #343434;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-selector-header {
|
|
||||||
border-bottom: 2px solid #232323;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-item {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.current-path .separator {
|
|
||||||
color: #C2C2C2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-item svg,
|
|
||||||
.back-button {
|
|
||||||
fill: #C2C2C2;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,47 @@
|
|||||||
@import url('https://mui.kernelsu.org/mmrl/insets.css');
|
@import url('https://mui.kernelsu.org/mmrl/insets.css');
|
||||||
|
@import url('https://mui.kernelsu.org/mmrl/colors.css');
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--top-inset: var(--window-inset-top, 0px);
|
--top-inset: var(--window-inset-top, 0px);
|
||||||
--bottom-inset: var(--window-inset-bottom, 0px);
|
--bottom-inset: var(--window-inset-bottom, 0px);
|
||||||
|
|
||||||
|
/* Background colors */
|
||||||
|
--bg-primary: var(--background, #F5F5F5);
|
||||||
|
--bg-secondary: var(--tonalSurface, #fff);
|
||||||
|
--bg-input: var(--surfaceBright, #F5F5F5);
|
||||||
|
|
||||||
|
/* Text colors */
|
||||||
|
--text-primary: var(--onSurface, #000);
|
||||||
|
--text-secondary: var(--onSurfaceVariant, #757575);
|
||||||
|
|
||||||
|
/* Border colors */
|
||||||
|
--border-color: var(--outlineVariant, #ccc);
|
||||||
|
|
||||||
|
/* Button colors */
|
||||||
|
--btn-primary: var(--primary, #007bff);
|
||||||
|
--btn-primary-text: var(--onPrimary, #fff);
|
||||||
|
--btn-uninstall: var(--error, #FF3636);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
/* Background colors */
|
||||||
|
--bg-primary: var(--background, #151515);
|
||||||
|
--bg-secondary: var(--tonalSurface, #292929);
|
||||||
|
--bg-input: var(--surfaceBright, #1b1b1b);
|
||||||
|
|
||||||
|
/* Text colors */
|
||||||
|
--text-primary: var(--onSurface, #fff);
|
||||||
|
--text-secondary: var(--onSurfaceVariant, #C2C2C2);
|
||||||
|
|
||||||
|
/* Border colors */
|
||||||
|
--border-color: var(--outlineVariant, #636363);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #F5F5F5;
|
color: var(--text-primary);
|
||||||
|
background-color: var(--bg-primary);
|
||||||
padding-top: var(--top-inset);
|
padding-top: var(--top-inset);
|
||||||
padding-bottom: var(--bottom-inset);
|
padding-bottom: var(--bottom-inset);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -28,10 +63,10 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.floating-btn {
|
.floating-btn {
|
||||||
background-color: #007bff;
|
color: var(--btn-primary-text);
|
||||||
|
background-color: var(--btn-primary);
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow: 0 4px 8px #0003;
|
box-shadow: 0 4px 8px #0003;
|
||||||
color: #fff;
|
|
||||||
display: none;
|
display: none;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
@@ -72,7 +107,7 @@ body {
|
|||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #ccc;
|
color: var(--border-color);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,12 +160,16 @@ body {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
border: 3px solid #FF3636;
|
border: 3px solid var(--btn-uninstall);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: #F5F5F5;
|
background-color: var(--bg-primary);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--btn-uninstall);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.uninstall-container i {
|
.uninstall-container i {
|
||||||
@@ -140,7 +179,7 @@ body {
|
|||||||
.uninstall-container span {
|
.uninstall-container span {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #FF3636;
|
color: var(--btn-uninstall);
|
||||||
}
|
}
|
||||||
|
|
||||||
.uninstall-container.hidden-uninstall {
|
.uninstall-container.hidden-uninstall {
|
||||||
@@ -157,9 +196,9 @@ body {
|
|||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
max-height: 80%;
|
max-height: 80%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
padding: 20px;
|
padding: 30px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -189,11 +228,13 @@ body {
|
|||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
color: var(--text-primary);
|
||||||
|
background-color: var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#confirm-uninstall {
|
#confirm-uninstall {
|
||||||
color: #fff;
|
color: var(--btn-primary-text);
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.permission-popup {
|
.permission-popup {
|
||||||
@@ -203,7 +244,8 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.permission-content {
|
.permission-content {
|
||||||
background-color: #fff;
|
color: var(--text-primary);
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
@@ -212,7 +254,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.permission-content h2 {
|
.permission-content h2 {
|
||||||
color: #333;
|
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
@@ -252,30 +293,4 @@ body {
|
|||||||
to {
|
to {
|
||||||
transform: scale(3);
|
transform: scale(3);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
body {
|
|
||||||
background-color: #121212;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.uninstall-container {
|
|
||||||
background-color: #121212;
|
|
||||||
}
|
|
||||||
|
|
||||||
.uninstall-confirmation,
|
|
||||||
.permission-content {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.permission-content h2,
|
|
||||||
.permission-steps p {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.uninstall-confirmation-button {
|
|
||||||
background-color: #6E6E6E;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
width: calc(100% - 10px);
|
width: calc(100% - 10px);
|
||||||
max-width: 1100px;
|
max-width: 1100px;
|
||||||
background-color: #F5F5F5;
|
background-color: var(--bg-primary);
|
||||||
transition: transform 0.4s ease;
|
transition: transform 0.4s ease;
|
||||||
z-index: 1100;
|
z-index: 1100;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.header-block {
|
.header-block {
|
||||||
background-color: #F5F5F5;
|
background-color: var(--bg-primary);
|
||||||
display: none;
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.language-icon {
|
.language-icon {
|
||||||
fill: #000;
|
fill: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.language-menu {
|
.language-menu {
|
||||||
@@ -64,10 +64,10 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 5px;
|
right: 5px;
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
||||||
z-index: 1800;
|
z-index: 1800;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid var(--border-color);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@@ -86,8 +86,8 @@
|
|||||||
.language-option {
|
.language-option {
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #333;
|
color: var(--text-primary);
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -103,7 +103,7 @@
|
|||||||
left: 10px;
|
left: 10px;
|
||||||
width: calc(100% - 20px);
|
width: calc(100% - 20px);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: #ccc;
|
background-color: var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.language-option:last-child::after {
|
.language-option:last-child::after {
|
||||||
@@ -145,7 +145,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
width: calc(95vw - 60px);
|
width: calc(95vw - 60px);
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@@ -171,34 +171,4 @@
|
|||||||
|
|
||||||
.instruction p {
|
.instruction p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.header-block,
|
|
||||||
.header {
|
|
||||||
background-color: #121212;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help-button {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.language-icon {
|
|
||||||
fill: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.language-option,
|
|
||||||
.help-menu {
|
|
||||||
color: #eee;
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.language-menu {
|
|
||||||
background-color: #343434;
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
|
|
||||||
.language-option::after {
|
|
||||||
background-color: #6E6E6E;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -14,8 +14,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.search-card {
|
.search-card {
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
border: 1px solid #ccc;
|
border: 1px solid var(--border-color);
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -36,6 +36,8 @@
|
|||||||
.search-input {
|
.search-input {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: none;
|
border: none;
|
||||||
|
color: var(--text-primary);
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
outline: none;
|
outline: none;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
@@ -45,7 +47,7 @@
|
|||||||
|
|
||||||
.clear-btn {
|
.clear-btn {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
color: #ccc;
|
color: var(--border-color);
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -68,8 +70,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.menu-button {
|
.menu-button {
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
border: 1px solid #ccc;
|
border: 1px solid var(--border-color);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
width: 48px;
|
width: 48px;
|
||||||
@@ -81,7 +83,7 @@
|
|||||||
|
|
||||||
.menu-icon {
|
.menu-icon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
fill: #000;
|
fill: var(--text-primary);
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
transition: transform 0.2s ease;
|
transition: transform 0.2s ease;
|
||||||
}
|
}
|
||||||
@@ -91,8 +93,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.menu-options {
|
.menu-options {
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
border: 1px solid #ccc;
|
border: 1px solid var(--border-color);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@@ -131,7 +133,7 @@
|
|||||||
.menu-options li {
|
.menu-options li {
|
||||||
padding: 12px 15px;
|
padding: 12px 15px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
background-color: white;
|
background-color: var(--bg-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-options li::after {
|
.menu-options li::after {
|
||||||
@@ -141,7 +143,7 @@
|
|||||||
left: 15px;
|
left: 15px;
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: #ccc;
|
background-color: var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-options li:last-child::after {
|
.menu-options li:last-child::after {
|
||||||
@@ -165,37 +167,4 @@
|
|||||||
background-color: none;
|
background-color: none;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.menu-icon {
|
|
||||||
fill: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-input,
|
|
||||||
.search-card {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-card {
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-input {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-options,
|
|
||||||
#menu-button {
|
|
||||||
background-color: #343434;
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-options li {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-options li::after {
|
|
||||||
background-color: #6E6E6E
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,8 @@
|
|||||||
display: block;
|
display: block;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 10%;
|
top: 10%;
|
||||||
background-color: white;
|
color: var(--text-primary);
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||||
@@ -57,7 +58,7 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border: 2px solid #ccc;
|
border: 2px solid var(--border-color);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
transition: border-color 1s ease, transform 0.3s ease, background-color 0.4s ease;
|
transition: border-color 1s ease, transform 0.3s ease, background-color 0.4s ease;
|
||||||
@@ -70,11 +71,15 @@
|
|||||||
transform: translate(-50%, -50%) scale(0);
|
transform: translate(-50%, -50%) scale(0);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: transform 0.2s ease-out, opacity 0.3s ease;
|
transition: transform 0.2s ease-out, opacity 0.3s ease;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--btn-primary-text);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.advanced-toggle .checkbox:checked + .custom-checkbox {
|
.advanced-toggle .checkbox:checked + .custom-checkbox {
|
||||||
border-color: #007bff;
|
border-color: var(--btn-primary);
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
transition: border-color 0.1s ease;
|
transition: border-color 0.1s ease;
|
||||||
animation: checked-bounce 0.3s ease-out;
|
animation: checked-bounce 0.3s ease-out;
|
||||||
}
|
}
|
||||||
@@ -93,15 +98,16 @@
|
|||||||
.input-group label {
|
.input-group label {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #666;
|
color: var(--text-secondary);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group input {
|
.input-group input {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
background-color: #F5F5F5;
|
color: var(--text-primary);
|
||||||
border: 1px solid #ccc;
|
background-color: var(--bg-primary);
|
||||||
outline-color: #007bff;
|
border: 1px solid var(--border-color);
|
||||||
|
outline-color: var(--btn-primary);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
@@ -126,39 +132,17 @@
|
|||||||
|
|
||||||
.get-button,
|
.get-button,
|
||||||
.auto-button {
|
.auto-button {
|
||||||
background-color: #ddd;
|
color: var(--text-primary);
|
||||||
|
background-color: var(--border-color);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.save-button {
|
.save-button {
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
color: white;
|
color: var(--btn-primary-text);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.security-patch-card {
|
|
||||||
background-color: #343434;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-group label {
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-group input {
|
|
||||||
background-color: #232323;
|
|
||||||
color: #fff;
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
|
|
||||||
.get-button,
|
|
||||||
.auto-button {
|
|
||||||
background-color: #6E6E6E;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
max-height: calc(80vh - 60px);
|
max-height: calc(80vh - 60px);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
background-color: #fff;
|
background-color: var(--bg-secondary);
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
@@ -36,9 +36,10 @@
|
|||||||
.add-system-app-content input {
|
.add-system-app-content input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
background-color: #F5F5F5;
|
color: var(--text-primary);
|
||||||
border: 1px solid #ccc;
|
background-color: var(--bg-primary);
|
||||||
outline-color: #007bff;
|
border: 1px solid var(--border-color);
|
||||||
|
outline-color: var(--btn-primary);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@@ -52,8 +53,8 @@
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background-color: #007bff;
|
background-color: var(--btn-primary);
|
||||||
color: white;
|
color: var(--btn-primary-text);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,7 +79,7 @@
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid var(--border-color);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
@@ -100,20 +101,4 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
.add-system-app-card {
|
|
||||||
background-color: #343434;
|
|
||||||
}
|
|
||||||
|
|
||||||
.add-system-app-content input {
|
|
||||||
background-color: #232323;
|
|
||||||
color: #fff;
|
|
||||||
border: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
|
|
||||||
.system-app-item {
|
|
||||||
border-bottom: 1px solid #6E6E6E;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user