0d5138f5bc
- drive capacity display with stamp polling - download/upload progress handling - overlay and tooltip issues - FileMaganger readme - ultra-light mode handling - account feed view page - download media files - remove not found syncing link - fix ultra light node wallet page - tooltip issues --------- Co-authored-by: Andrei Mitrea <andrei.mitrea.hq@gmail.com> Co-authored-by: nidishk <nidishkrishnan45@gmail.com> Co-authored-by: Ferenc Sárai <sarai.ferenc@gmail.com> Co-authored-by: Nándor Komlódi <nandor.komlodi@gmail.com> Co-authored-by: rolandlor <33499567+rolandlor@users.noreply.github.com>
92 lines
1.6 KiB
SCSS
92 lines
1.6 KiB
SCSS
.fm-create-drive-modal-container {
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #000c;
|
|
backdrop-filter: blur(5px);
|
|
z-index: 1300;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.fm-create-drive-modal {
|
|
width: 450px;
|
|
padding: 24px;
|
|
background-color: rgb(255, 255, 255);
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.fm-create-drive-modal-header {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: start;
|
|
font-size: 18px;
|
|
color: rgb(237, 129, 49);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.fm-create-drive-modal-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
width: 100%;
|
|
border: 1px solid rgb(229, 231, 235);
|
|
padding: 24px;
|
|
background-color: rgb(249, 250, 251);
|
|
}
|
|
|
|
.fm-create-drive-modal-input-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
color: rgb(55, 65, 81);
|
|
|
|
& input {
|
|
padding: 8px 12px;
|
|
font-size: 14px;
|
|
font-family: 'iAWriterQuattroV';
|
|
border: 1px solid rgb(209, 213, 219);
|
|
|
|
line-height: 21px;
|
|
outline: none;
|
|
}
|
|
|
|
& input::placeholder {
|
|
color: #aaa;
|
|
}
|
|
|
|
& input:focus {
|
|
border: 1px solid rgb(237, 129, 49) !important;
|
|
}
|
|
}
|
|
|
|
.fm-create-drive-modal-footer {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.fm-modal-info-note {
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
margin-top: 4px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.fm-error-text {
|
|
color: var(--fm-error, #dc2626);
|
|
font-size: 12px;
|
|
line-height: 1.25;
|
|
}
|