css changes on settings page
This commit is contained in:
parent
a91c10bee5
commit
5c6c51061a
1 changed files with 236 additions and 117 deletions
|
|
@ -1032,7 +1032,33 @@ body {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings Page Styling - Three Column Layout */
|
/* ======================================
|
||||||
|
SETTINGS PAGE - Premium Glassmorphic Design
|
||||||
|
====================================== */
|
||||||
|
|
||||||
|
/* Custom scrollbar */
|
||||||
|
#settings-page {
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: rgba(29, 185, 84, 0.3) transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-page::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-page::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-page::-webkit-scrollbar-thumb {
|
||||||
|
background: rgba(29, 185, 84, 0.3);
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#settings-page::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: rgba(29, 185, 84, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
.settings-content {
|
.settings-content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -1055,39 +1081,86 @@ body {
|
||||||
gap: 18px;
|
gap: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Glassmorphic cards */
|
||||||
.settings-group {
|
.settings-group {
|
||||||
background: #282828;
|
background: linear-gradient(135deg, rgba(35, 35, 35, 0.6), rgba(20, 20, 20, 0.8));
|
||||||
border: 1px solid #404040;
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
border-radius: 8px;
|
border-radius: 16px;
|
||||||
padding: 16px 16px 16px 16px;
|
padding: 20px;
|
||||||
|
backdrop-filter: blur(12px) saturate(1.1);
|
||||||
|
-webkit-backdrop-filter: blur(12px) saturate(1.1);
|
||||||
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-group::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 2px;
|
||||||
|
background: linear-gradient(90deg,
|
||||||
|
rgba(29, 185, 84, 0.6) 0%,
|
||||||
|
rgba(29, 185, 84, 0.2) 50%,
|
||||||
|
transparent 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-group:hover {
|
||||||
|
border-color: rgba(255, 255, 255, 0.12);
|
||||||
|
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(29, 185, 84, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.07);
|
||||||
|
transform: translateY(-1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-group h3 {
|
.settings-group h3 {
|
||||||
font-family: 'SF Pro Text', -apple-system, sans-serif;
|
font-family: 'SF Pro Display', -apple-system, sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 600;
|
font-weight: 700;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 14px;
|
||||||
margin-top: 10px;
|
margin-top: 8px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
border-bottom: 2px solid rgba(255, 255, 255, 0.08);
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* API Service Frames */
|
.settings-group h3::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: -2px;
|
||||||
|
left: 10px;
|
||||||
|
width: 50px;
|
||||||
|
height: 2px;
|
||||||
|
background: linear-gradient(90deg,
|
||||||
|
rgba(29, 185, 84, 0.8) 0%,
|
||||||
|
transparent 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* API Service Frames - upgraded inner cards */
|
||||||
.api-service-frame {
|
.api-service-frame {
|
||||||
background: #333333;
|
background: linear-gradient(135deg, rgba(40, 40, 40, 0.5), rgba(25, 25, 25, 0.7));
|
||||||
border: 1px solid #444444;
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||||
border-radius: 8px;
|
border-radius: 12px;
|
||||||
padding: 8px 12px 12px 12px;
|
padding: 12px 14px 14px 14px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.api-service-frame:hover {
|
||||||
|
border-color: rgba(255, 255, 255, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-title {
|
.service-title {
|
||||||
font-family: 'Arial', sans-serif;
|
font-family: 'SF Pro Text', -apple-system, sans-serif;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: bold;
|
font-weight: 700;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
letter-spacing: 0.2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.spotify-title {
|
.spotify-title {
|
||||||
|
|
@ -1110,24 +1183,24 @@ body {
|
||||||
color: #ba55d3;
|
color: #ba55d3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Server Toggle Buttons */
|
/* Server Toggle Buttons - upgraded */
|
||||||
.server-toggle-container {
|
.server-toggle-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 8px;
|
gap: 10px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.server-toggle-btn {
|
.server-toggle-btn {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding: 8px 16px;
|
padding: 10px 16px;
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
|
||||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
border-radius: 6px;
|
border-radius: 12px;
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.7);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
|
@ -1137,20 +1210,25 @@ body {
|
||||||
|
|
||||||
.server-logo {
|
.server-logo {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
opacity: 0.8;
|
opacity: 0.7;
|
||||||
transition: opacity 0.2s ease;
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.server-toggle-btn.active {
|
.server-toggle-btn.active {
|
||||||
background: rgba(29, 185, 84, 0.2);
|
background: linear-gradient(135deg,
|
||||||
border-color: rgba(29, 185, 84, 0.5);
|
rgba(29, 185, 84, 0.2) 0%,
|
||||||
|
rgba(30, 215, 96, 0.12) 100%);
|
||||||
|
border-color: rgba(29, 185, 84, 0.4);
|
||||||
color: #1ed760;
|
color: #1ed760;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
box-shadow: 0 4px 16px rgba(29, 185, 84, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
.server-toggle-btn:hover {
|
.server-toggle-btn:hover {
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.08);
|
||||||
|
border-color: rgba(255, 255, 255, 0.15);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
transform: translateY(-1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.server-toggle-btn:hover .server-logo {
|
.server-toggle-btn:hover .server-logo {
|
||||||
|
|
@ -1158,7 +1236,9 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.server-toggle-btn.active:hover {
|
.server-toggle-btn.active:hover {
|
||||||
background: rgba(29, 185, 84, 0.3);
|
background: linear-gradient(135deg,
|
||||||
|
rgba(29, 185, 84, 0.28) 0%,
|
||||||
|
rgba(30, 215, 96, 0.18) 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.server-toggle-btn.active .server-logo {
|
.server-toggle-btn.active .server-logo {
|
||||||
|
|
@ -1175,8 +1255,9 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.callback-label {
|
.callback-label {
|
||||||
color: #ffffff;
|
color: rgba(255, 255, 255, 0.9);
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
@ -1184,36 +1265,36 @@ body {
|
||||||
.callback-url {
|
.callback-url {
|
||||||
color: #1db954;
|
color: #1db954;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-family: 'Courier New', monospace;
|
font-family: 'SF Mono', 'Courier New', monospace;
|
||||||
background-color: rgba(29, 185, 84, 0.1);
|
background: linear-gradient(135deg, rgba(29, 185, 84, 0.08), rgba(29, 185, 84, 0.04));
|
||||||
border: 1px solid rgba(29, 185, 84, 0.3);
|
border: 1px solid rgba(29, 185, 84, 0.2);
|
||||||
border-radius: 4px;
|
border-radius: 8px;
|
||||||
padding: 6px 8px;
|
padding: 6px 10px;
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
user-select: all;
|
user-select: all;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
.callback-help {
|
.callback-help {
|
||||||
color: #ffffff;
|
color: rgba(255, 255, 255, 0.6);
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
line-height: 1.3;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.setting-help-text {
|
.setting-help-text {
|
||||||
color: #b3b3b3;
|
color: rgba(255, 255, 255, 0.5);
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
|
||||||
border-left: 2px solid rgba(29, 185, 84, 0.3);
|
border-left: 2px solid rgba(29, 185, 84, 0.3);
|
||||||
border-radius: 4px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Form Styling */
|
/* Form Styling - glassmorphic inputs */
|
||||||
.form-group {
|
.form-group {
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
@ -1240,19 +1321,24 @@ body {
|
||||||
.form-group select {
|
.form-group select {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group input:focus,
|
.form-group input:focus,
|
||||||
.form-group select:focus {
|
.form-group select:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
border-color: #1ed760;
|
border-color: rgba(29, 185, 84, 0.6);
|
||||||
background: rgba(29, 185, 84, 0.05);
|
background: rgba(29, 185, 84, 0.05);
|
||||||
|
box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.12), 0 0 16px rgba(29, 185, 84, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group input::placeholder {
|
||||||
|
color: rgba(255, 255, 255, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Checkbox Styling */
|
/* Checkbox Styling */
|
||||||
|
|
@ -1263,6 +1349,12 @@ body {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 12px !important;
|
font-size: 12px !important;
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
|
padding: 4px 0;
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox-label:hover {
|
||||||
|
color: rgba(255, 255, 255, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.checkbox-label input[type="checkbox"] {
|
.checkbox-label input[type="checkbox"] {
|
||||||
|
|
@ -1275,31 +1367,36 @@ body {
|
||||||
|
|
||||||
/* Help Text */
|
/* Help Text */
|
||||||
.help-text {
|
.help-text {
|
||||||
color: #ffffff;
|
color: rgba(255, 255, 255, 0.5);
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
line-height: 1.3;
|
line-height: 1.4;
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
|
padding: 8px 12px;
|
||||||
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.04);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Supported Formats */
|
/* Supported Formats */
|
||||||
.supported-formats {
|
.supported-formats {
|
||||||
color: #ffffff;
|
color: rgba(255, 255, 255, 0.7);
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
background: transparent;
|
background: linear-gradient(135deg, rgba(29, 185, 84, 0.06), rgba(29, 185, 84, 0.02));
|
||||||
border: none;
|
border: 1px solid rgba(29, 185, 84, 0.12);
|
||||||
padding: 4px 0;
|
border-radius: 8px;
|
||||||
|
padding: 6px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read-only Fields */
|
/* Read-only Fields */
|
||||||
.readonly-field {
|
.readonly-field {
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
background: rgba(255, 255, 255, 0.02);
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
|
||||||
border: 1px solid rgba(255, 255, 255, 0.05);
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.7);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-family: 'Courier New', monospace;
|
font-family: 'SF Mono', 'Courier New', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Form Actions */
|
/* Form Actions */
|
||||||
|
|
@ -1309,14 +1406,15 @@ body {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Buttons - gradient + elevation */
|
||||||
.test-button,
|
.test-button,
|
||||||
.detect-button {
|
.detect-button {
|
||||||
padding: 6px 12px;
|
padding: 7px 14px;
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-weight: 500;
|
font-weight: 600;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
border: none;
|
border: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
@ -1332,7 +1430,7 @@ body {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
color: rgba(255, 255, 255, 0.9);
|
color: rgba(255, 255, 255, 0.9);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 500;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preset-buttons {
|
.preset-buttons {
|
||||||
|
|
@ -1343,14 +1441,14 @@ body {
|
||||||
.preset-button {
|
.preset-button {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding: 10px 12px;
|
padding: 10px 12px;
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
border-radius: 8px;
|
border-radius: 10px;
|
||||||
color: rgba(255, 255, 255, 0.7);
|
color: rgba(255, 255, 255, 0.7);
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1358,21 +1456,31 @@ body {
|
||||||
background: rgba(29, 185, 84, 0.1);
|
background: rgba(29, 185, 84, 0.1);
|
||||||
border-color: rgba(29, 185, 84, 0.3);
|
border-color: rgba(29, 185, 84, 0.3);
|
||||||
color: #1ed760;
|
color: #1ed760;
|
||||||
|
transform: translateY(-1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.preset-button.active {
|
.preset-button.active {
|
||||||
background: rgba(29, 185, 84, 0.15);
|
background: linear-gradient(135deg,
|
||||||
|
rgba(29, 185, 84, 0.2) 0%,
|
||||||
|
rgba(30, 215, 96, 0.12) 100%);
|
||||||
border-color: rgba(29, 185, 84, 0.5);
|
border-color: rgba(29, 185, 84, 0.5);
|
||||||
color: #1ed760;
|
color: #1ed760;
|
||||||
font-weight: 600;
|
font-weight: 700;
|
||||||
|
box-shadow: 0 4px 12px rgba(29, 185, 84, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Quality tier cards - upgraded inner cards */
|
||||||
.quality-tier {
|
.quality-tier {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
background: rgba(255, 255, 255, 0.03);
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
|
||||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
border-radius: 8px;
|
border-radius: 12px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quality-tier:hover {
|
||||||
|
border-color: rgba(255, 255, 255, 0.12);
|
||||||
}
|
}
|
||||||
|
|
||||||
.quality-tier-header {
|
.quality-tier-header {
|
||||||
|
|
@ -1389,7 +1497,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.quality-tier-priority {
|
.quality-tier-priority {
|
||||||
color: rgba(255, 255, 255, 0.5);
|
color: rgba(255, 255, 255, 0.45);
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
@ -1401,7 +1509,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.quality-tier-sliders.disabled {
|
.quality-tier-sliders.disabled {
|
||||||
opacity: 0.4;
|
opacity: 0.35;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1436,7 +1544,7 @@ body {
|
||||||
.range-slider::-webkit-slider-track {
|
.range-slider::-webkit-slider-track {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.08);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1446,22 +1554,23 @@ body {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: #1ed760;
|
background: linear-gradient(135deg, #1db954, #1ed760);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
border: 2px solid #0a0a0a;
|
border: 2px solid #0a0a0a;
|
||||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 8px rgba(29, 185, 84, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.range-slider::-webkit-slider-thumb:hover {
|
.range-slider::-webkit-slider-thumb:hover {
|
||||||
background: #1fdf64;
|
background: linear-gradient(135deg, #1ed760, #22e968);
|
||||||
transform: scale(1.1);
|
transform: scale(1.15);
|
||||||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 12px rgba(29, 185, 84, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.range-slider::-moz-range-track {
|
.range-slider::-moz-range-track {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.08);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1469,16 +1578,17 @@ body {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: #1ed760;
|
background: linear-gradient(135deg, #1db954, #1ed760);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
border: 2px solid #0a0a0a;
|
border: 2px solid #0a0a0a;
|
||||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 8px rgba(29, 185, 84, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.range-slider::-moz-range-thumb:hover {
|
.range-slider::-moz-range-thumb:hover {
|
||||||
background: #1fdf64;
|
background: linear-gradient(135deg, #1ed760, #22e968);
|
||||||
transform: scale(1.1);
|
transform: scale(1.15);
|
||||||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 12px rgba(29, 185, 84, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.range-slider-track {
|
.range-slider-track {
|
||||||
|
|
@ -1486,7 +1596,7 @@ body {
|
||||||
top: 18px;
|
top: 18px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background: rgba(29, 185, 84, 0.3);
|
background: rgba(29, 185, 84, 0.25);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
@ -1496,7 +1606,7 @@ body {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
color: rgba(255, 255, 255, 0.6);
|
color: rgba(255, 255, 255, 0.5);
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
@ -1504,7 +1614,7 @@ body {
|
||||||
.slider-values span:first-child,
|
.slider-values span:first-child,
|
||||||
.slider-values span:last-child {
|
.slider-values span:last-child {
|
||||||
color: #1ed760;
|
color: #1ed760;
|
||||||
font-weight: 600;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===== END QUALITY PROFILE STYLES ===== */
|
/* ===== END QUALITY PROFILE STYLES ===== */
|
||||||
|
|
@ -1512,40 +1622,47 @@ body {
|
||||||
.test-button {
|
.test-button {
|
||||||
background: rgba(29, 185, 84, 0.1);
|
background: rgba(29, 185, 84, 0.1);
|
||||||
color: #1ed760;
|
color: #1ed760;
|
||||||
border: 1px solid rgba(29, 185, 84, 0.3);
|
border: 1px solid rgba(29, 185, 84, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
.test-button:hover {
|
.test-button:hover {
|
||||||
background: rgba(29, 185, 84, 0.2);
|
background: rgba(29, 185, 84, 0.2);
|
||||||
border-color: rgba(29, 185, 84, 0.5);
|
border-color: rgba(29, 185, 84, 0.5);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 4px 12px rgba(29, 185, 84, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
.detect-button {
|
.detect-button {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: rgba(255, 255, 255, 0.05);
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.8);
|
||||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
.detect-button:hover {
|
.detect-button:hover {
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.1);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Save Button */
|
/* Save Button - gradient with glow */
|
||||||
.save-button {
|
.save-button {
|
||||||
background: #1db954;
|
background: linear-gradient(135deg, #1db954, #1ed760);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 22px;
|
border-radius: 16px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: 700;
|
||||||
padding: 12px 32px;
|
padding: 12px 32px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
|
box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.save-button:hover {
|
.save-button:hover {
|
||||||
background: #1ed760;
|
background: linear-gradient(135deg, #1ed760, #22e968);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 6px 24px rgba(29, 185, 84, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-actions {
|
.settings-actions {
|
||||||
|
|
@ -1568,51 +1685,50 @@ body {
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: rgba(255, 255, 255, 0.05);
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.8);
|
||||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||||
border-radius: 8px;
|
border-radius: 10px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.browse-button:hover {
|
.browse-button:hover {
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.1);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Auth Button - gradient */
|
||||||
.auth-button {
|
.auth-button {
|
||||||
background: #1db954;
|
background: linear-gradient(135deg, #1db954, #1ed760);
|
||||||
color: #ffffff;
|
color: #000000;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 8px;
|
border-radius: 12px;
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.auth-button {
|
|
||||||
background: #1db954;
|
|
||||||
color: #ffffff;
|
|
||||||
padding: 10px 20px;
|
|
||||||
border: none;
|
|
||||||
border-radius: 15px;
|
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
|
box-shadow: 0 4px 12px rgba(29, 185, 84, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.auth-button:hover {
|
.auth-button:hover {
|
||||||
background: #1ed760;
|
background: linear-gradient(135deg, #1ed760, #22e968);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 6px 16px rgba(29, 185, 84, 0.35);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tidal-title+* .auth-button {
|
.tidal-title+* .auth-button {
|
||||||
background: #ff6600;
|
background: linear-gradient(135deg, #ff6600, #ff8833);
|
||||||
|
box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tidal-title+* .auth-button:hover {
|
.tidal-title+* .auth-button:hover {
|
||||||
background: #e55500;
|
background: linear-gradient(135deg, #ff8833, #ff9944);
|
||||||
|
box-shadow: 0 6px 16px rgba(255, 102, 0, 0.35);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* API Test Buttons */
|
/* API Test Buttons */
|
||||||
|
|
@ -1643,35 +1759,38 @@ body {
|
||||||
.export-button,
|
.export-button,
|
||||||
.import-button {
|
.import-button {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
border-radius: 8px;
|
border-radius: 10px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 500;
|
font-weight: 600;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reset-button {
|
.reset-button {
|
||||||
background: rgba(255, 107, 107, 0.1);
|
background: rgba(255, 107, 107, 0.1);
|
||||||
color: #ff6b6b;
|
color: #ff6b6b;
|
||||||
border: 1px solid rgba(255, 107, 107, 0.3);
|
border: 1px solid rgba(255, 107, 107, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
.reset-button:hover {
|
.reset-button:hover {
|
||||||
background: rgba(255, 107, 107, 0.2);
|
background: rgba(255, 107, 107, 0.2);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
.export-button,
|
.export-button,
|
||||||
.import-button {
|
.import-button {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: rgba(255, 255, 255, 0.05);
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.8);
|
||||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
.export-button:hover,
|
.export-button:hover,
|
||||||
.import-button:hover {
|
.import-button:hover {
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.1);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
transform: translateY(-1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.cancel-button {
|
.cancel-button {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue