]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22168 Align PageContentFontWrapper
authorIsmail Cherri <ismail.cherri@sonarsource.com>
Wed, 8 May 2024 09:37:36 +0000 (11:37 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 8 May 2024 20:02:44 +0000 (20:02 +0000)
server/sonar-web/design-system/src/components/Text.tsx
server/sonar-web/design-system/src/sonar-aligned/components/Text.tsx [new file with mode: 0644]
server/sonar-web/design-system/src/sonar-aligned/components/index.ts
server/sonar-web/src/main/js/components/icon-mappers/__tests__/__snapshots__/BranchLikeIcon-test.tsx.snap

index 22821cd98ca2d976d0673804baf110fe5a9640d5..1170d99bf56a687e68d84aed9dbbbe9f8ef5f879 100644 (file)
@@ -149,10 +149,6 @@ export const LightPrimary = styled.span`
   color: ${themeContrast('primaryLight')};
 `;
 
-export const PageContentFontWrapper = styled.div`
-  color: ${themeColor('pageContent')};
-`;
-
 export const Highlight = styled.strong`
   color: ${themeColor('pageContentDark')};
 
diff --git a/server/sonar-web/design-system/src/sonar-aligned/components/Text.tsx b/server/sonar-web/design-system/src/sonar-aligned/components/Text.tsx
new file mode 100644 (file)
index 0000000..40acc49
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2024 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.
+ */
+import styled from '@emotion/styled';
+import { themeColor } from '../../helpers/theme';
+
+export const PageContentFontWrapper = styled.div`
+  color: ${themeColor('pageContent')};
+`;
index 9b86ae7d91a8ce4e31e0ee87cb269df6eec1a019..5a8be386785c6dbbe9d43a9bbad3d97756770a3a 100644 (file)
@@ -22,6 +22,7 @@ export * from './Card';
 export { DismissableFlagMessage, FlagMessage } from './FlagMessage';
 export * from './MetricsRatingBadge';
 export * from './Table';
+export * from './Text';
 export * from './ToggleButton';
 export * from './buttons';
 export * from './input';
index 54557157c7f0b7942272b5c37ce9fe41a44726d6..132266b92c9b20527b76f4675a34a3f2d27e261e 100644 (file)
@@ -1,5 +1,5 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
-exports[`should render branch icon correctly 1`] = `"<div><span class="css-nk2far-StyledText-StyledMutedText en0eo9410"><span aria-hidden="true" class="css-lr6nas" role="img">&amp;</span></span></div>"`;
+exports[`should render branch icon correctly 1`] = `"<div><span class="css-nk2far-StyledText-StyledMutedText en0eo949"><span aria-hidden="true" class="css-lr6nas" role="img">&amp;</span></span></div>"`;
 
-exports[`should render pull request icon correctly 1`] = `"<div><span class="css-nk2far-StyledText-StyledMutedText en0eo9410"><span aria-hidden="true" class="css-lr6nas" role="img">)</span></span></div>"`;
+exports[`should render pull request icon correctly 1`] = `"<div><span class="css-nk2far-StyledText-StyledMutedText en0eo949"><span aria-hidden="true" class="css-lr6nas" role="img">)</span></span></div>"`;