summaryrefslogtreecommitdiffstats
path: root/deluge/ui/web/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/ui/web/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss')
-rw-r--r--deluge/ui/web/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/deluge/ui/web/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss b/deluge/ui/web/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss
new file mode 100644
index 000000000..f673f4df4
--- /dev/null
+++ b/deluge/ui/web/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss
@@ -0,0 +1,24 @@
+/**
+ * Method which inserts a full background-image property for a theme image.
+ * It checks if the file exists and if it doesn't, it'll throw an error.
+ * By default it will not include the background-image property if it is not found,
+ * but this can be changed by changing the default value of $include-missing-images to
+ * be true.
+ */
+@mixin theme-background-image($theme-name, $path, $without-url: false, $relative: false) {
+ $exists_image: theme-image($theme-name, $path, true, false);
+
+ @if $exists_image {
+ $exists: theme_image_exists($exists_image);
+
+ @if $exists or $include-missing-images {
+ background-image: theme-image($theme-name, $path, $without-url, $relative);
+ }
+ @else {
+ @warn "@theme-background-image: Theme image not found: #{$exists_image}";
+ }
+ }
+ @else {
+ @warn "@theme-background-image: No arguments passed";
+ }
+} \ No newline at end of file