
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
164 lines
3.7 KiB
CSS
164 lines
3.7 KiB
CSS
.ajax-file-upload-statusbar {
|
|
border: 1px solid #0ba1b5;
|
|
margin-top: 10px;
|
|
width: 420px;
|
|
margin-right: 10px;
|
|
margin: 5px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
padding: 5px 5px 5px 15px
|
|
}
|
|
|
|
.ajax-file-upload-filename {
|
|
width: 300px;
|
|
height: auto;
|
|
margin: 0 5px 5px 0px;
|
|
|
|
}
|
|
|
|
.ajax-file-upload-filesize {
|
|
width: 50px;
|
|
height: auto;
|
|
margin: 0 5px 5px 0px;
|
|
display: inline-block;
|
|
vertical-align:middle;
|
|
}
|
|
.ajax-file-upload-progress {
|
|
margin: 5px 10px 5px 0px;
|
|
position: relative;
|
|
width: 250px;
|
|
border: 1px solid #ddd;
|
|
padding: 1px;
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
color:#FFFFFF;
|
|
|
|
}
|
|
.ajax-file-upload-bar {
|
|
background-color: #0ba1b5;
|
|
width: 0;
|
|
height: 20px;
|
|
border-radius: 3px;
|
|
color:#FFFFFF;
|
|
|
|
}
|
|
.ajax-file-upload-percent {
|
|
position: absolute;
|
|
display: inline-block;
|
|
top: 3px;
|
|
left: 48%
|
|
}
|
|
.ajax-file-upload-red {
|
|
-moz-box-shadow: inset 0 39px 0 -24px #e67a73;
|
|
-webkit-box-shadow: inset 0 39px 0 -24px #e67a73;
|
|
box-shadow: inset 0 39px 0 -24px #e67a73;
|
|
background-color: #e4685d;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
display: inline-block;
|
|
color: #fff;
|
|
font-family: arial;
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
padding: 4px 15px;
|
|
text-decoration: none;
|
|
text-shadow: 0 1px 0 #b23e35;
|
|
cursor: pointer;
|
|
vertical-align: top;
|
|
margin: 5px 10px 5px 0px;
|
|
}
|
|
.ajax-file-upload-green {
|
|
background-color: #77b55a;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: inline-block;
|
|
color: #fff;
|
|
font-family: arial;
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
padding: 4px 15px;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
text-shadow: 0 1px 0 #5b8a3c;
|
|
vertical-align: top;
|
|
margin: 5px 10px 5px 0px;
|
|
}
|
|
.ajax-file-upload {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
/*! font-size: 16px; */
|
|
/*! font-weight: bold; */
|
|
padding: 15px 20px;
|
|
cursor:pointer;
|
|
line-height:20px;
|
|
height:25px;
|
|
margin:0 10px 10px 0;
|
|
display: inline-block;
|
|
background: #fff;
|
|
/*! border: 1px solid #e8e8e8; */
|
|
color: #888;
|
|
/*! text-decoration: none; */
|
|
/*! border-radius: 3px; */
|
|
/*! -webkit-border-radius: 3px; */
|
|
-moz-border-radius: 3px;
|
|
-moz-box-shadow: 0 2px 0 0 #e8e8e8;
|
|
/*! -webkit-box-shadow: 0 2px 0 0 #e8e8e8; */
|
|
/*! box-shadow: 0 2px 0 0 #e8e8e8; */
|
|
padding: 6px 10px 4px 10px;
|
|
color: #495057;
|
|
/*! background: #2f8ab9; */
|
|
/*! border: none; */
|
|
/*! -moz-box-shadow: 0 2px 0 0 #13648d; */
|
|
/*! -webkit-box-shadow: 0 2px 0 0 #13648d; */
|
|
/*! box-shadow: 0 2px 0 0 #13648d; */
|
|
vertical-align: middle;
|
|
display: -ms-flexbox;
|
|
display: ruby;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
padding: .375rem .75rem;
|
|
margin-bottom: 0;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #495057;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
background-color: #e9ecef;
|
|
border: 1px solid #ced4da;
|
|
border-radius: .25rem;
|
|
border-top-right-radius: 0.25rem;
|
|
border-bottom-right-radius: 0.25rem;
|
|
}
|
|
|
|
.ajax-file-upload:hover {
|
|
background: #3396c9;
|
|
-moz-box-shadow: 0 2px 0 0 #15719f;
|
|
-webkit-box-shadow: 0 2px 0 0 #15719f;
|
|
box-shadow: 0 2px 0 0 #15719f;
|
|
}
|
|
|
|
.ajax-upload-dragdrop
|
|
{
|
|
|
|
border:1px solid #DADCE3;
|
|
width: 100%;
|
|
color: #505051;
|
|
text-align:left;
|
|
vertical-align:middle;
|
|
padding:10px 10px 0px 10px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.state-hover
|
|
{
|
|
border:2px solid #A5A5C7;
|
|
}
|
|
.ajax-file-upload-container
|
|
{
|
|
margin:20px 0px 20px 0px;
|
|
} |