forked from 77media/video-flow
33 lines
809 B
CSS
33 lines
809 B
CSS
/** Custom styles for Photo Preview Section */
|
|
|
|
/** Override antd Upload component styles for compact mode */
|
|
.photo-upload-button-compact .ant-upload.ant-upload-select {
|
|
width: 4rem !important;
|
|
height: 4rem !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
background: transparent !important;
|
|
border: none !important;
|
|
}
|
|
|
|
.photo-upload-button-compact .ant-upload-wrapper {
|
|
display: inline-block;
|
|
}
|
|
|
|
/** Custom scrollbar for photo list */
|
|
.photo-list-scrollbar::-webkit-scrollbar {
|
|
height: 4px;
|
|
}
|
|
|
|
.photo-list-scrollbar::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
.photo-list-scrollbar::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.photo-list-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
} |