
new file: .gitignore new file: .idea/.gitignore new file: .idea/dataSources.xml new file: .idea/dbr-backend.iml new file: .idea/jsLibraryMappings.xml new file: .idea/misc.xml new file: .idea/modules.xml new file: .idea/vcs.xml new file: go.mod new file: go.sum new file: main.go new file: pb_public/admin/index.html new file: pb_public/admin/upload.html new file: pb_public/css/base.css new file: pb_public/css/bootstrap-grid.css new file: pb_public/css/bootstrap-grid.css.map new file: pb_public/css/bootstrap-grid.min.css new file: pb_public/css/bootstrap-grid.min.css.map new file: pb_public/css/bootstrap-grid.rtl.css new file: pb_public/css/bootstrap-grid.rtl.css.map new file: pb_public/css/bootstrap-grid.rtl.min.css new file: pb_public/css/bootstrap-grid.rtl.min.css.map new file: pb_public/css/bootstrap-reboot.css new file: pb_public/css/bootstrap-reboot.css.map new file: pb_public/css/bootstrap-reboot.min.css new file: pb_public/css/bootstrap-reboot.min.css.map new file: pb_public/css/bootstrap-reboot.rtl.css new file: pb_public/css/bootstrap-reboot.rtl.css.map new file: pb_public/css/bootstrap-reboot.rtl.min.css new file: pb_public/css/bootstrap-reboot.rtl.min.css.map new file: pb_public/css/bootstrap-utilities.css new file: pb_public/css/bootstrap-utilities.css.map new file: pb_public/css/bootstrap-utilities.min.css new file: pb_public/css/bootstrap-utilities.min.css.map new file: pb_public/css/bootstrap-utilities.rtl.css new file: pb_public/css/bootstrap-utilities.rtl.css.map new file: pb_public/css/bootstrap-utilities.rtl.min.css new file: pb_public/css/bootstrap-utilities.rtl.min.css.map new file: pb_public/css/bootstrap.css new file: pb_public/css/bootstrap.css.map new file: pb_public/css/bootstrap.min.css new file: pb_public/css/bootstrap.min.css.map new file: pb_public/css/bootstrap.rtl.css new file: pb_public/css/bootstrap.rtl.css.map new file: pb_public/css/bootstrap.rtl.min.css new file: pb_public/css/bootstrap.rtl.min.css.map new file: pb_public/css/icons/bootstrap-icons.css new file: pb_public/css/icons/fonts/bootstrap-icons.woff new file: pb_public/css/icons/fonts/bootstrap-icons.woff2 new file: pb_public/css/slideshow.css new file: pb_public/css/style.css new file: pb_public/css/upload.css new file: pb_public/css/uploadfile.css new file: pb_public/index.html new file: pb_public/js/api/media.js new file: pb_public/js/bootstrap.bundle.js new file: pb_public/js/bootstrap.bundle.js.map new file: pb_public/js/bootstrap.bundle.min.js new file: pb_public/js/bootstrap.bundle.min.js.map new file: pb_public/js/bootstrap.esm.js new file: pb_public/js/bootstrap.esm.js.map new file: pb_public/js/bootstrap.esm.min.js new file: pb_public/js/bootstrap.esm.min.js.map new file: pb_public/js/bootstrap.js new file: pb_public/js/bootstrap.js.map new file: pb_public/js/bootstrap.min.js new file: pb_public/js/bootstrap.min.js.map new file: pb_public/js/jquery-1.11.0.js new file: pb_public/js/jquery.uploadfile.min.js new file: pb_public/js/multiple-uploader.js new file: pb_public/js/pocketbase/pocketbase.esm.js new file: pb_public/js/pocketbase/pocketbase.umd.js new file: pb_public/js/slideshow.js new file: pb_public/js/upload.js new file: pb_public/js/util.js
108 lines
1.8 KiB
CSS
108 lines
1.8 KiB
CSS
|
|
|
|
.multiple-uploader {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
border-radius: 15px;
|
|
border: 2px dashed #858585;
|
|
min-height: 150px;
|
|
margin: 20px auto;
|
|
cursor: pointer;
|
|
width: 80%;
|
|
}
|
|
|
|
.mup-msg {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.mup-msg span {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mup-msg .mup-main-msg {
|
|
color: #606060;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.mup-msg .mup-msg {
|
|
color: #737373;
|
|
}
|
|
|
|
.image-container{
|
|
margin: 1rem;
|
|
width: 120px;
|
|
height: 120px;
|
|
position: relative;
|
|
cursor: auto;
|
|
pointer-events: unset;
|
|
}
|
|
|
|
.image-container:before {
|
|
z-index: 3;
|
|
content: "\2716";
|
|
align-content: center;
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
line-height: 22px;
|
|
color: white;
|
|
position: absolute;
|
|
top: -5px;
|
|
left: -5px;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background: #e50000;
|
|
pointer-events: all;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.image-preview {
|
|
position: absolute;
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.image-size {
|
|
position: absolute;
|
|
z-index: 1;
|
|
height: 120px;
|
|
width: 120px;
|
|
backdrop-filter: blur(4px);
|
|
font-weight: bolder;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 12px;
|
|
opacity: 0;
|
|
pointer-events: unset;
|
|
}
|
|
|
|
.image-size:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.exceeded-size
|
|
{
|
|
position: absolute;
|
|
z-index: 2;
|
|
height: 120px;
|
|
width: 120px;
|
|
display: flex;
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 12px;
|
|
color: white;
|
|
background: rgba(255, 0, 0, 0.6);
|
|
pointer-events: unset;
|
|
}
|