Files
lucent-laravel/front/sass/_preview.scss
T

66 lines
1002 B
SCSS
Raw Normal View History

2024-08-16 16:00:48 +03:00
.preview-file,.preview-reference{
2024-08-15 22:11:26 +03:00
display: flex;
align-items: center;
2024-08-16 14:34:39 +03:00
justify-content: space-between;
2024-08-15 22:11:26 +03:00
gap: 10px;
2024-08-17 19:23:19 +03:00
background: var(--p10);
2024-08-15 22:11:26 +03:00
border-radius: 12px;
2024-10-05 15:19:53 +03:00
&.is-trashed{
border: 2px solid var(--err10);
background: var(--p20);
}
.trashed-text{
background: var(--err10);
font-size: 12px;
padding:2px 10px;
}
2024-08-15 22:11:26 +03:00
.image{
display: flex;
}
2024-08-18 17:23:18 +03:00
.reference-action{
2024-08-15 22:11:26 +03:00
display: none;
2024-08-18 17:23:18 +03:00
2024-08-15 22:11:26 +03:00
}
&:hover{
2024-08-17 19:23:19 +03:00
background: var(--p30);
2024-08-18 17:23:18 +03:00
.reference-action{
2024-08-15 22:11:26 +03:00
display: block;
}
}
}
2024-08-17 19:23:19 +03:00
.file-preview-small{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2px;
border-radius: 12px;
padding: 4px;
//background: var(--p10);
}
2024-08-16 16:00:48 +03:00
.preview-reference{
2024-08-17 19:23:19 +03:00
background: var(--p10);
2024-08-16 16:00:48 +03:00
padding: 10px 20px;
}
2024-08-17 19:23:19 +03:00
.sortable-container {
display: flex;
flex-direction: column;
gap: 5px;
}
2024-08-15 22:11:26 +03:00
.sortable-ghost{
2024-08-17 19:23:19 +03:00
border: 2px dashed var(--p60);
2024-08-16 16:00:48 +03:00
}
.sortable-drag { opacity: 0 !important; } .sortable-ghost { opacity: 1 !important; }