From e6bd017149455f7d01eaf060787e970ded89dd25 Mon Sep 17 00:00:00 2001 From: Ayrton Ricardo Date: Sat, 8 May 2021 19:09:03 +0200 Subject: [PATCH] Fix cloudflare minification (#197) * Change color 'black' to hex '#000000' * Remove spaces from comment section * Remove double semicolon Co-authored-by: Alexander Bilz --- assets/css/style.css | 4 ++-- assets/css/style.rtl.css | 4 ++-- assets/js/medium-zoom.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index 8b4c2158..56e28bfa 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -28,7 +28,7 @@ html[data-theme='dark'] { --bg-color: #010408; - --secondary-bg-color: rgb(56, 56, 56);; + --secondary-bg-color: rgb(56, 56, 56); --heading-color: #c9d1d9; --body-color: rgb(169, 169, 179); --post-color: rgba(0, 0, 0, 0.44); @@ -526,7 +526,7 @@ a:active { .post .post-thumbnail { width: 100%; padding-bottom: 1em; - box-shadow: black; + box-shadow: #000000; border-radius: 0.5em; overflow: hidden; transition: box-shadow .3s ease; diff --git a/assets/css/style.rtl.css b/assets/css/style.rtl.css index 5e0bfab7..652f6848 100644 --- a/assets/css/style.rtl.css +++ b/assets/css/style.rtl.css @@ -28,7 +28,7 @@ html[data-theme='dark'] { --bg-color: #010408; - --secondary-bg-color: rgb(56, 56, 56);; + --secondary-bg-color: rgb(56, 56, 56); --heading-color: #c9d1d9; --body-color: rgb(169, 169, 179); --post-color: rgba(0, 0, 0, 0.44); @@ -525,7 +525,7 @@ a:active { .post .post-thumbnail { width: 100%; padding-bottom: 1em; - box-shadow: black; + box-shadow: #000000; border-radius: 0.5em; overflow: hidden; transition: box-shadow .3s ease; diff --git a/assets/js/medium-zoom.js b/assets/js/medium-zoom.js index a190f27e..9459f8a6 100644 --- a/assets/js/medium-zoom.js +++ b/assets/js/medium-zoom.js @@ -1,4 +1,4 @@ -/*! medium-zoom 1.0.5 | MIT License | https://github.com/francoischalifour/medium-zoom */ +/*!medium-zoom 1.0.5 | MIT License | https://github.com/francoischalifour/medium-zoom*/ (function (global, factory) { typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = global || self, global.mediumZoom = factory());