Refactor #4129
parent
8a337acdde
commit
d50ebae1e5
|
@ -60,6 +60,7 @@ import UploadIcon from 'primevue/icons/upload';
|
||||||
import Message from 'primevue/message';
|
import Message from 'primevue/message';
|
||||||
import ProgressBar from 'primevue/progressbar';
|
import ProgressBar from 'primevue/progressbar';
|
||||||
import Ripple from 'primevue/ripple';
|
import Ripple from 'primevue/ripple';
|
||||||
|
import { DomHandler } from 'primevue/utils';
|
||||||
import BaseFileUpload from './BaseFileUpload.vue';
|
import BaseFileUpload from './BaseFileUpload.vue';
|
||||||
import FileContent from './FileContent.vue';
|
import FileContent from './FileContent.vue';
|
||||||
|
|
||||||
|
@ -265,7 +266,7 @@ export default {
|
||||||
},
|
},
|
||||||
onDragOver(event) {
|
onDragOver(event) {
|
||||||
if (!this.disabled) {
|
if (!this.disabled) {
|
||||||
this.$refs.content.classList.add('p-fileupload-highlight');
|
DomHandler.addClass(this.$refs.content, 'p-fileupload-highlight');
|
||||||
this.$refs.content.setAttribute('data-p-highlight', true);
|
this.$refs.content.setAttribute('data-p-highlight', true);
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -273,12 +274,13 @@ export default {
|
||||||
},
|
},
|
||||||
onDragLeave() {
|
onDragLeave() {
|
||||||
if (!this.disabled) {
|
if (!this.disabled) {
|
||||||
this.$refs.content.classList.remove('p-fileupload-highlight');
|
DomHandler.removeClass(this.$refs.content, 'p-fileupload-highlight');
|
||||||
this.$refs.content.setAttribute('data-p-highlight', false);
|
this.$refs.content.setAttribute('data-p-highlight', false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDrop(event) {
|
onDrop(event) {
|
||||||
if (!this.disabled) {
|
if (!this.disabled) {
|
||||||
|
DomHandler.removeClass(this.$refs.content, 'p-fileupload-highlight');
|
||||||
this.$refs.content.setAttribute('data-p-highlight', false);
|
this.$refs.content.setAttribute('data-p-highlight', false);
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #64B5F6;
|
||||||
|
background-color: rgba(100, 181, 246, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #81C784;
|
||||||
|
background-color: rgba(129, 199, 132, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #FFD54F;
|
||||||
|
background-color: rgba(255, 213, 79, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #BA68C8;
|
||||||
|
background-color: rgba(186, 104, 200, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #383838;
|
border: 1px solid #383838;
|
||||||
|
|
|
@ -4394,6 +4394,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #8dd0ff;
|
||||||
|
background-color: #8dd0ff;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #3f4b5b;
|
border: 1px solid #3f4b5b;
|
||||||
|
@ -5959,15 +5963,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
||||||
.p-breadcrumb .p-breadcrumb-chevron {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
||||||
}
|
|
||||||
.p-breadcrumb .p-breadcrumb-chevron:before {
|
|
||||||
content: "/";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc.fc-theme-standard .fc-highlight {
|
.fc.fc-theme-standard .fc-highlight {
|
||||||
background: #476880;
|
background: #476880;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
background-color: #476880;
|
||||||
|
}
|
||||||
|
|
||||||
/* Customizations to the designer theme should be defined here */
|
/* Customizations to the designer theme should be defined here */
|
||||||
|
|
|
@ -4394,6 +4394,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #c298d8;
|
||||||
|
background-color: #c298d8;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #3f4b5b;
|
border: 1px solid #3f4b5b;
|
||||||
|
@ -5959,15 +5963,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
||||||
.p-breadcrumb .p-breadcrumb-chevron {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
||||||
}
|
|
||||||
.p-breadcrumb .p-breadcrumb-chevron:before {
|
|
||||||
content: "/";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc.fc-theme-standard .fc-highlight {
|
.fc.fc-theme-standard .fc-highlight {
|
||||||
background: #614c6c;
|
background: #614c6c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
background-color: #614c6c;
|
||||||
|
}
|
||||||
|
|
||||||
/* Customizations to the designer theme should be defined here */
|
/* Customizations to the designer theme should be defined here */
|
||||||
|
|
|
@ -4394,6 +4394,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #007bff;
|
||||||
|
background-color: #007bff;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
@ -5959,15 +5963,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
||||||
.p-breadcrumb .p-breadcrumb-chevron {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
||||||
}
|
|
||||||
.p-breadcrumb .p-breadcrumb-chevron:before {
|
|
||||||
content: "/";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc.fc-theme-standard .fc-highlight {
|
.fc.fc-theme-standard .fc-highlight {
|
||||||
background: #cce5ff;
|
background: #cce5ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
background-color: #cce5ff;
|
||||||
|
}
|
||||||
|
|
||||||
/* Customizations to the designer theme should be defined here */
|
/* Customizations to the designer theme should be defined here */
|
||||||
|
|
|
@ -4394,6 +4394,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #883cae;
|
||||||
|
background-color: #883cae;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
@ -5959,15 +5963,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
/* Vendor extensions to the designer enhanced bootstrap compatibility */
|
||||||
.p-breadcrumb .p-breadcrumb-chevron {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
||||||
}
|
|
||||||
.p-breadcrumb .p-breadcrumb-chevron:before {
|
|
||||||
content: "/";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc.fc-theme-standard .fc-highlight {
|
.fc.fc-theme-standard .fc-highlight {
|
||||||
background: #e7d8ef;
|
background: #e7d8ef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
background-color: #e7d8ef;
|
||||||
|
}
|
||||||
|
|
||||||
/* Customizations to the designer theme should be defined here */
|
/* Customizations to the designer theme should be defined here */
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 2px;
|
border-bottom-right-radius: 2px;
|
||||||
border-bottom-left-radius: 2px;
|
border-bottom-left-radius: 2px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #0078d4;
|
||||||
|
background-color: #edebe9;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #edebe9;
|
border: 1px solid #edebe9;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #93C5FD;
|
||||||
|
background-color: rgba(147, 197, 253, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #0b213f;
|
border: 1px solid #0b213f;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #A5B4FC;
|
||||||
|
background-color: rgba(165, 180, 252, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #0b213f;
|
border: 1px solid #0b213f;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #C4B5FD;
|
||||||
|
background-color: rgba(196, 181, 253, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #0b213f;
|
border: 1px solid #0b213f;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #5EEAD4;
|
||||||
|
background-color: rgba(94, 234, 212, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #0b213f;
|
border: 1px solid #0b213f;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #3B82F6;
|
||||||
|
background-color: #EFF6FF;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #6366F1;
|
||||||
|
background-color: #EEF2FF;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #8B5CF6;
|
||||||
|
background-color: #F5F3FF;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #14B8A6;
|
||||||
|
background-color: #F0FDFA;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #FFE082;
|
||||||
|
background-color: #FFE082;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #81D4FA;
|
||||||
|
background-color: #81D4FA;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #C5E1A5;
|
||||||
|
background-color: #C5E1A5;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #F48FB1;
|
||||||
|
background-color: #F48FB1;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #4b4b4b;
|
border: 1px solid #4b4b4b;
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #CE93D8;
|
||||||
|
background-color: rgba(206, 147, 216, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #9FA8DA;
|
||||||
|
background-color: rgba(159, 168, 218, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #673AB7;
|
||||||
|
background-color: rgba(103, 58, 183, 0.12);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.12);
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #3F51B5;
|
||||||
|
background-color: rgba(63, 81, 181, 0.12);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.12);
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #CE93D8;
|
||||||
|
background-color: rgba(206, 147, 216, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #9FA8DA;
|
||||||
|
background-color: rgba(159, 168, 218, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #673AB7;
|
||||||
|
background-color: rgba(103, 58, 183, 0.12);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.12);
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
|
|
@ -4406,6 +4406,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #3F51B5;
|
||||||
|
background-color: rgba(63, 81, 181, 0.12);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.12);
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
|
|
@ -4410,6 +4410,10 @@
|
||||||
border-bottom-right-radius: 4px;
|
border-bottom-right-radius: 4px;
|
||||||
border-bottom-left-radius: 4px;
|
border-bottom-left-radius: 4px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #5E81AC;
|
||||||
|
background-color: #D8DEE9;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #E5E9F0;
|
border: 1px solid #E5E9F0;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 1px;
|
border-bottom-right-radius: 1px;
|
||||||
border-bottom-left-radius: 1px;
|
border-bottom-left-radius: 1px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #1174c0;
|
||||||
|
background-color: #44A1D9;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #007ad9;
|
||||||
|
background-color: #e02365;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #c8c8c8;
|
border: 1px solid #c8c8c8;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #007ad9;
|
||||||
|
background-color: #007ad9;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #c8c8c8;
|
border: 1px solid #c8c8c8;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #41b883;
|
||||||
|
background-color: #41b883;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #c8c8c8;
|
border: 1px solid #c8c8c8;
|
||||||
|
|
|
@ -4369,6 +4369,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #007ad9;
|
||||||
|
background-color: #007ad9;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #c8c8c8;
|
border: 1px solid #c8c8c8;
|
||||||
|
|
|
@ -4357,6 +4357,10 @@
|
||||||
border-bottom-right-radius: 2px;
|
border-bottom-right-radius: 2px;
|
||||||
border-bottom-left-radius: 2px;
|
border-bottom-left-radius: 2px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #7B95A3;
|
||||||
|
background-color: #AFD3C8;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dadada;
|
border: 1px solid #dadada;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #2196F3;
|
||||||
|
background-color: #E3F2FD;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #4CAF50;
|
||||||
|
background-color: #E8F5E9;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #FFC107;
|
||||||
|
background-color: #FFF3E0;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #9C27B0;
|
||||||
|
background-color: #F3E5F5;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dee2e6;
|
border: 1px solid #dee2e6;
|
||||||
|
|
|
@ -4381,6 +4381,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #b19df7;
|
||||||
|
background-color: rgba(177, 157, 247, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #3e4053;
|
border: 1px solid #3e4053;
|
||||||
|
|
|
@ -4381,6 +4381,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #7254f3;
|
||||||
|
background-color: #e2dcfc;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #dfe7ef;
|
border: 1px solid #dfe7ef;
|
||||||
|
|
|
@ -4417,6 +4417,10 @@
|
||||||
border-bottom-right-radius: 0.375rem;
|
border-bottom-right-radius: 0.375rem;
|
||||||
border-bottom-left-radius: 0.375rem;
|
border-bottom-left-radius: 0.375rem;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #4F46E5;
|
||||||
|
background-color: #EEF2FF;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #e5e7eb;
|
border: 1px solid #e5e7eb;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #64B5F6;
|
||||||
|
background-color: rgba(100, 181, 246, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #81C784;
|
||||||
|
background-color: rgba(129, 199, 132, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #FFD54F;
|
||||||
|
background-color: rgba(255, 213, 79, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -4382,6 +4382,10 @@
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 1px dashed #BA68C8;
|
||||||
|
background-color: rgba(186, 104, 200, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #304562;
|
border: 1px solid #304562;
|
||||||
|
|
|
@ -4414,6 +4414,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 2px solid #263238 dashed #9eade6;
|
||||||
|
background-color: rgba(158, 173, 230, 0.16);
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #263238;
|
border: 1px solid #263238;
|
||||||
|
|
|
@ -4414,6 +4414,10 @@
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: 6px;
|
||||||
border-bottom-left-radius: 6px;
|
border-bottom-left-radius: 6px;
|
||||||
}
|
}
|
||||||
|
.p-fileupload .p-fileupload-content.p-fileupload-highlight {
|
||||||
|
border: 2px solid #ebebeb dashed #5472d4;
|
||||||
|
background-color: #ced6f1;
|
||||||
|
}
|
||||||
.p-fileupload .p-fileupload-file {
|
.p-fileupload .p-fileupload-file {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #ebebeb;
|
border: 1px solid #ebebeb;
|
||||||
|
|
Loading…
Reference in New Issue