mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
* Install cropperjs * Add cropper js styles * Add editing image string * Track inner active state * Add temp edit button * Start on image editor modal * Add custom icons for image manipulation * Add image manipulation strings * Tweak cropper styles * Remove unused import * Save as blob * Expose getItem method for manual refreshes * Add cache-busting to file preview * Use new API post endpoint, emit refresh event on success * Add a cache buster to the image editor
29 lines
420 B
SCSS
29 lines
420 B
SCSS
@import 'base';
|
|
@import 'fonts';
|
|
@import 'variables';
|
|
@import 'tooltip';
|
|
@import 'type-styles';
|
|
@import 'themes/dark';
|
|
@import 'themes/light';
|
|
@import 'lib/codemirror';
|
|
@import 'lib/portal-vue';
|
|
@import 'lib/cropperjs';
|
|
|
|
body.light {
|
|
@include light;
|
|
}
|
|
|
|
body.dark {
|
|
@include dark;
|
|
}
|
|
|
|
body.auto {
|
|
@media (prefers-color-scheme: dark) {
|
|
@include dark;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
@include light;
|
|
}
|
|
}
|