From 11699d5172cf48ac35b144d67c6da5f593ff9763 Mon Sep 17 00:00:00 2001 From: Sanne de Vries Date: Fri, 4 Sep 2020 15:25:15 +0200 Subject: [PATCH] Fixed transparent background pattern for blog logo and icon in dark mode --- ghost/admin/app/styles/app-dark.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghost/admin/app/styles/app-dark.css b/ghost/admin/app/styles/app-dark.css index 3389a0480b..82c799bcda 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -428,6 +428,11 @@ input:focus, background: #212A2E; } +.blog-logo, +.blog-icon { + background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3ERectangle%3C/title%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23303e46' d='M0 0h24v24H0z'/%3E%3Cpath fill='%233e515b' d='M0 0h12v12H0zM12 12h12v12H12z'/%3E%3C/g%3E%3C/svg%3E"); +} + .id-item { background: #212A2E; }