]> source.dussan.org Git - sonarqube.git/commitdiff
Stop referencing alert css directly
authorphilippe-perrin-sonarsource <philippe.perrin@sonarsource.com>
Tue, 20 Aug 2019 13:45:38 +0000 (15:45 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 3 Sep 2019 18:21:04 +0000 (20:21 +0200)
server/sonar-web/src/main/js/components/docs/DocMarkdownBlock.css [new file with mode: 0644]
server/sonar-web/src/main/js/components/docs/DocMarkdownBlock.tsx

diff --git a/server/sonar-web/src/main/js/components/docs/DocMarkdownBlock.css b/server/sonar-web/src/main/js/components/docs/DocMarkdownBlock.css
new file mode 100644 (file)
index 0000000..89f6537
--- /dev/null
@@ -0,0 +1,73 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2019 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+.alert {
+  margin-bottom: var(--gridSize);
+  border: 1px solid;
+  border-radius: 2px;
+}
+
+.alert.is-inline {
+  display: inline-flex;
+}
+
+.alert:empty {
+  display: none;
+}
+
+.alert-error {
+  border-color: var(--alertBorderError);
+  background-color: var(--alertBackgroundError);
+  color: var(--alertTextError);
+}
+
+.alert-error .alert-icon {
+  border-color: var(--alertBorderError);
+}
+
+.alert-warning {
+  border-color: var(--alertBorderWarning);
+  background-color: var(--alertBackgroundWarning);
+  color: var(--alertTextWarning);
+}
+
+.alert-warning .alert-icon {
+  border-color: var(--alertBorderWarning);
+}
+
+.alert-info {
+  border-color: var(--alertBorderInfo);
+  background-color: var(--alertBackgroundInfo);
+  color: var(--alertTextInfo);
+}
+
+.alert-info .alert-icon {
+  border-color: var(--alertBorderInfo);
+}
+
+.alert-success {
+  border-color: var(--alertBorderSuccess);
+  background-color: var(--alertBackgroundSuccess);
+  color: var(--alertTextSuccess);
+}
+
+.alert-success .alert-icon {
+  border-color: var(--alertBorderSuccess);
+}
index 9392a1996379fecfcca304343174751959364043..ae74878bbb341f12dc2e61986fb308f59b8811e4 100644 (file)
@@ -23,11 +23,11 @@ import remark from 'remark';
 import remarkCustomBlocks from 'remark-custom-blocks';
 import reactRenderer from 'remark-react';
 import slug from 'remark-slug';
-import 'sonar-ui-common/components/ui/Alert.css'; // eslint-disable-line import/extension
 import { scrollToElement } from 'sonar-ui-common/helpers/scrolling';
 import DocCollapsibleBlock from './DocCollapsibleBlock';
 import DocImg from './DocImg';
 import DocLink from './DocLink';
+import './DocMarkdownBlock.css';
 import DocToc from './DocToc';
 import DocTooltipLink from './DocTooltipLink';