From 23fb7f833aac7db0880be5017e9215d2ebac7c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 11 Feb 2022 13:17:45 +0300 Subject: [PATCH] Fixed #2143 - FullCalendar | Bootstrap background highlight is wrong --- public/themes/bootstrap4-dark-blue/theme.css | 4 ++++ public/themes/bootstrap4-dark-purple/theme.css | 4 ++++ public/themes/bootstrap4-light-blue/theme.css | 4 ++++ public/themes/bootstrap4-light-purple/theme.css | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index 1635ef123e..914e2601f2 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -5396,4 +5396,8 @@ content: "/"; } +.fc.fc-theme-standard .fc-highlight { + background: #476880; +} + /* Customizations to the designer theme should be defined here */ diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index 73677f4c9a..b3782a7ae9 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -5396,4 +5396,8 @@ content: "/"; } +.fc.fc-theme-standard .fc-highlight { + background: #614c6c; +} + /* Customizations to the designer theme should be defined here */ diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index 6d7e3f7188..163da8c8ac 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -5396,4 +5396,8 @@ content: "/"; } +.fc.fc-theme-standard .fc-highlight { + background: #cce5ff; +} + /* Customizations to the designer theme should be defined here */ diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index ab6913f28e..79815e710b 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -5396,4 +5396,8 @@ content: "/"; } +.fc.fc-theme-standard .fc-highlight { + background: #e7d8ef; +} + /* Customizations to the designer theme should be defined here */