123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- .hidden {
- display: none;
- }
- .attachment-upload {
- text-align: center;
- font-weight: bold;
- }
- .attachment-gallery {
- display: flex;
- flex-direction: column;
- }
- .attachment-item {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 16px;
- }
- .attachment-item:hover {
- background: #e0e0e0;
- }
- .attachment-thumbnail-container {
- display: block;
- width: 150px;
- min-width: 150px;
- max-height: 150px;
- padding-right: 16px;
- }
- .attachment-thumbnail {
- max-width: 150px;
- max-height: 150px;
- min-height: 2em;
- cursor: pointer;
- }
- .attachment-thumbnail-text {
- min-height: 2em;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 2em;
- cursor: pointer;
- border: 1px solid #ccc;
- border-radius: 5px;
- }
- .attachment-details-container {
- display: block;
- flex-grow: 1;
- }
- .attachment-details {
- display: flex;
- justify-content: space-between;
- margin-right: 25px; /* Make sure the icons are not to far to the right */
- }
- .attachment-actions {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .add-attachment {
- display: flex;
- align-items: center;
- justify-content: center;
- border: 1px dashed #555;
- border-radius: 5px;
- padding: 10px;
- cursor: pointer;
- margin-top: 16px;
- }
- .icon {
- font-size: 1.5em;
- cursor: pointer;
- margin-left: 10px;
- }
- .icon:hover {
- color: #666;
- }
- #viewer-overlay {
- width: 100%;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999 !important;
- background: rgba(13, 13, 13, 0.95);
- }
- #viewer-container {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- height: 100%;
- }
- #viewer-top-bar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 100%;
- padding: 16px;
- }
- #attachment-name {
- color: white;
- font-size: 1.5em;
- max-width: calc(
- 100% - 50px
- ); /* Make sure the name does not overlap the close button */
- }
- #viewer-close {
- color: white;
- cursor: pointer;
- font-size: 4em;
- }
- /* Upload progress indicators for drag-and-drop uploads */
- .minicard-upload-progress,
- .card-details-upload-progress {
- background: #f8f9fa;
- border: 1px solid #e9ecef;
- border-radius: 4px;
- padding: 12px;
- margin: 8px 0;
- font-size: 14px;
- }
- .upload-progress-header {
- display: flex;
- align-items: center;
- margin-bottom: 8px;
- font-weight: bold;
- color: #495057;
- }
- .upload-progress-header i {
- margin-right: 8px;
- color: #007bff;
- }
- .upload-progress-item {
- display: flex;
- flex-direction: column;
- margin-bottom: 8px;
- padding: 8px;
- background: white;
- border-radius: 3px;
- border: 1px solid #dee2e6;
- }
- .upload-progress-item.upload-error {
- border-color: #dc3545;
- background: #f8d7da;
- }
- .upload-progress-filename {
- font-weight: 500;
- margin-bottom: 4px;
- color: #495057;
- word-break: break-all;
- }
- .upload-progress-bar {
- width: 100%;
- height: 6px;
- background: #e9ecef;
- border-radius: 3px;
- overflow: hidden;
- margin-bottom: 4px;
- }
- .upload-progress-fill {
- height: 100%;
- background: linear-gradient(90deg, #007bff, #0056b3);
- transition: width 0.3s ease;
- border-radius: 3px;
- }
- .upload-progress-item.upload-error .upload-progress-fill {
- background: #dc3545;
- }
- .upload-progress-error,
- .upload-progress-success {
- display: flex;
- align-items: center;
- font-size: 12px;
- font-weight: 500;
- }
- .upload-progress-error {
- color: #dc3545;
- }
- .upload-progress-success {
- color: #28a745;
- }
- .upload-progress-error i,
- .upload-progress-success i {
- margin-right: 4px;
- }
- /* Minicard specific styles */
- .minicard-upload-progress {
- margin: 4px 0;
- padding: 8px;
- font-size: 12px;
- }
- .minicard-upload-progress .upload-progress-item {
- padding: 6px;
- margin-bottom: 6px;
- }
- .minicard-upload-progress .upload-progress-filename {
- font-size: 11px;
- }
- /* Card details specific styles */
- .card-details-upload-progress {
- margin: 12px 0;
- padding: 16px;
- }
- .card-details-upload-progress .upload-progress-header {
- font-size: 16px;
- margin-bottom: 12px;
- }
- .card-details-upload-progress .upload-progress-item {
- padding: 12px;
- margin-bottom: 10px;
- }
- .card-details-upload-progress .upload-progress-filename {
- font-size: 14px;
- }
- /* Drag over state for minicards */
- .minicard.is-dragging-over {
- border: 2px dashed #007bff !important;
- background: rgba(0, 123, 255, 0.1) !important;
- }
- /* Drag over state for card details */
- .js-card-details.is-dragging-over {
- border: 2px dashed #007bff !important;
- background: rgba(0, 123, 255, 0.05) !important;
- }
- top: 0;
- right: 8px;
- position: absolute;
- }
- .attachment-arrow {
- font-size: 4em;
- color: white;
- cursor: pointer;
- align-self: center;
- margin: 0 20px;
- }
- #viewer-content {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: calc(100% - 50px);
- }
- #image-viewer {
- background: repeating-conic-gradient(#808080 0% 25%, transparent 0% 50%) 50% /
- 20px 20px; /* Checkerboard background for transparent images */
- max-width: 100%;
- max-height: 100%;
- }
- #pdf-viewer {
- width: 40vw;
- height: 100%;
- }
- #txt-viewer {
- background-color: white;
- width: 40vw;
- height: 100%;
- }
- .pdf-preview-error {
- margin-top: 20vh;
- display: block;
- font-size: 2em;
- color: white;
- }
- @media screen and (max-width: 1600px) {
- #pdf-viewer {
- width: 60vw;
- }
- }
- @media screen and (max-width: 800px) {
- #viewer-container {
- display: block;
- }
- .attachment-arrow {
- position: absolute;
- bottom: 2.2em;
- font-size: 1.6em;
- padding: 16px;
- }
- #prev-attachment {
- left: 0;
- }
- #next-attachment {
- right: 0;
- }
- #pdf-viewer {
- width: 100%;
- height: calc(
- 100vh - 155px
- ); /* Full height - height of top and bottom bars */
- }
- #txt-viewer {
- width: 100%;
- height: calc(
- 100vh - 155px
- ); /* Full height - height of top and bottom bars */
- }
- #audio-viewer {
- margin-top: 20%;
- width: 100%;
- }
- .attachment-thumbnail-container {
- width: 100px;
- min-width: 100px;
- }
- .attachment-thumbnail {
- max-width: 100px;
- }
- .attachment-details {
- flex-direction: column;
- margin-right: 0px;
- }
- .attachment-actions {
- flex-direction: row;
- margin-top: 10px;
- }
- }
- /* Attachment migration styles */
- .attachment-item.migrating {
- position: relative;
- opacity: 0.7;
- }
- .attachment-migration-overlay {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(255, 255, 255, 0.9);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- z-index: 10;
- border-radius: 4px;
- }
- .migration-spinner {
- font-size: 24px;
- color: #007cba;
- margin-bottom: 8px;
- }
- .migration-text {
- font-size: 12px;
- color: #666;
- text-align: center;
- }
|