5.4.0: Картинка желания по ссылке и единая высота инпутов
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m3s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m3s
This commit is contained in:
@@ -71,6 +71,14 @@
|
||||
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
|
||||
}
|
||||
|
||||
/* Одинаковая высота всех инпутов на экране */
|
||||
.wishlist-form .form-input {
|
||||
height: 2.75rem;
|
||||
box-sizing: border-box;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.image-preview {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
@@ -108,6 +116,105 @@
|
||||
background: rgba(192, 57, 43, 1);
|
||||
}
|
||||
|
||||
.image-url-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.image-url-row + .image-url-row {
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.image-url-label {
|
||||
font-size: 0.9rem;
|
||||
color: #6b7280;
|
||||
flex-shrink: 0;
|
||||
width: 3.5rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.image-url-input {
|
||||
flex: 1;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.wishlist-form .file-input-label {
|
||||
height: 2.75rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.file-input-label {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
justify-content: flex-start;
|
||||
padding: 0 0.75rem;
|
||||
border: 1px solid #d1d5db;
|
||||
border-radius: 0.375rem;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.2s;
|
||||
}
|
||||
|
||||
.file-input-label:hover {
|
||||
border-color: #3498db;
|
||||
}
|
||||
|
||||
.file-input-hidden {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.file-input-button {
|
||||
font-size: 1rem;
|
||||
line-height: 1;
|
||||
color: #9ca3af;
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.image-url-load-button {
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
padding: 0;
|
||||
background: #3498db;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 0.375rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.image-url-load-button svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.image-url-load-button:hover:not(:disabled) {
|
||||
background: #2980b9;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.image-url-load-button:disabled {
|
||||
background: #9ca3af;
|
||||
cursor: not-allowed;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.cropper-modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
@@ -476,7 +583,9 @@
|
||||
|
||||
.date-selector-display-date {
|
||||
flex: 1;
|
||||
padding: 0.75rem;
|
||||
height: 2.75rem;
|
||||
box-sizing: border-box;
|
||||
padding: 0 0.75rem;
|
||||
border: 1px solid #d1d5db;
|
||||
border-radius: 0.375rem;
|
||||
font-size: 1rem;
|
||||
@@ -485,6 +594,8 @@
|
||||
transition: all 0.2s;
|
||||
color: #1f2937;
|
||||
user-select: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.date-selector-display-date:hover {
|
||||
@@ -540,7 +651,9 @@
|
||||
|
||||
.task-autocomplete-input {
|
||||
width: 100%;
|
||||
padding: 12px 36px 12px 14px;
|
||||
height: 2.75rem;
|
||||
box-sizing: border-box;
|
||||
padding: 0 36px 0 14px;
|
||||
border: 1px solid #d1d5db;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
|
||||
Reference in New Issue
Block a user