Feat: Add Paste BTN URL Input

This commit is contained in:
MasterAcnolo
2026-02-16 21:34:39 +01:00
parent 556dccec08
commit 6c73dd75be
3 changed files with 81 additions and 1 deletions

View File

@@ -62,6 +62,7 @@ form#downloadForm {
transition: border-color 0.3s ease, box-shadow 0.3s ease;
background-color: var(--form-input-bg-color);
color: var(--form-input-text-color);
flex: 1;
}
#UrlInput:focus {
@@ -74,3 +75,39 @@ form#downloadForm {
#UrlInput::placeholder {
color: var(--form-input-placeholder-color);
}
.url-input-container {
display: flex;
align-items: center;
gap: 0.5em;
width: 100%;
}
.paste-btn {
background-color: var(--form-button-bg-color);
color: var(--form-button-text-color);
border: none;
padding: 0.75em;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
}
.paste-btn:hover {
background-color: var(--form-button-bg-hover-color);
transform: scale(1.05);
}
.paste-btn:active {
transform: scale(0.95);
}
.paste-btn svg {
width: 30px;
height: 30px;
}