From 56e95d589d32cb448a5880a87540928e5272b7d2 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Fri, 8 Mar 2019 17:43:44 +0100 Subject: [PATCH] Add workaround for Semantic-Org/Semantic-UI#3070 --- indico/modules/rb_new/client/styles/main.scss | 1 + .../rb_new/client/styles/sui_fixes.scss | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 indico/modules/rb_new/client/styles/sui_fixes.scss diff --git a/indico/modules/rb_new/client/styles/main.scss b/indico/modules/rb_new/client/styles/main.scss index eb2c3083fcb..40a5f96a4bd 100644 --- a/indico/modules/rb_new/client/styles/main.scss +++ b/indico/modules/rb_new/client/styles/main.scss @@ -16,6 +16,7 @@ */ @import 'base/palette'; +@import 'rb_new:styles/sui_fixes'; @import 'rb_new:styles/palette'; @import 'rb_new:styles/forms'; diff --git a/indico/modules/rb_new/client/styles/sui_fixes.scss b/indico/modules/rb_new/client/styles/sui_fixes.scss new file mode 100644 index 00000000000..00f4e43d84c --- /dev/null +++ b/indico/modules/rb_new/client/styles/sui_fixes.scss @@ -0,0 +1,23 @@ +/* This file is part of Indico. + * Copyright (C) 2002 - 2019 European Organization for Nuclear Research (CERN). + * + * Indico is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 3 of the + * License, or (at your option) any later version. + * + * Indico is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Indico; if not, see . + */ + +@import 'base/palette'; + +/* https://github.com/Semantic-Org/Semantic-UI/issues/3070 */ +.ui.inverted > .ui.modal > .close { + color: $dark-black; +}