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

36 lines
624 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;
background: var(--background-2);
2024-08-15 22:11:26 +03:00
border-radius: 12px;
.image{
display: flex;
}
.trash-action{
display: none;
2024-08-16 14:34:39 +03:00
margin-right: 20px;
2024-08-15 22:11:26 +03:00
}
&:hover{
background: var(--background-3);
2024-08-15 22:11:26 +03:00
.trash-action{
display: block;
}
}
}
2024-08-16 16:00:48 +03:00
.preview-reference{
background: var(--background-2);
2024-08-16 16:00:48 +03:00
padding: 10px 20px;
margin-bottom: 4px;
}
2024-08-15 22:11:26 +03:00
.sortable-ghost{
border: 2px dashed var(--primary);
2024-08-16 16:00:48 +03:00
}
.sortable-drag { opacity: 0 !important; } .sortable-ghost { opacity: 1 !important; }