Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Hunt <rhunt@gitlab.com>2022-03-16 18:46:54 +0300
committerDavid O'Regan <doregan@gitlab.com>2022-03-16 18:46:54 +0300
commit8ac0c28d8a1bb3723dc1cd9c8a6574e8fa0b60db (patch)
tree341366148dec708c5927122d91204fbd10245d23
parent36b871a77ab0bcdb7fe782a49502bb94bacacb71 (diff)
Add fill utilities for severity icons
-rw-r--r--content/assets/stylesheets/_typography.scss22
-rw-r--r--content/assets/stylesheets/_utilities.scss22
2 files changed, 22 insertions, 22 deletions
diff --git a/content/assets/stylesheets/_typography.scss b/content/assets/stylesheets/_typography.scss
index 55ffedfc..b2379526 100644
--- a/content/assets/stylesheets/_typography.scss
+++ b/content/assets/stylesheets/_typography.scss
@@ -1,5 +1,5 @@
---
-version: 13
+version: 12
---
@import 'variables';
@@ -730,23 +730,3 @@ version: 13
}
}
}
-
-.gl-text-red-800 {
- color: $red-800;
-}
-
-.gl-text-red-600 {
- color: $red-600;
-}
-
-.gl-text-orange-400 {
- color: $orange-400;
-}
-
-.gl-text-orange-300 {
- color: $orange-300;
-}
-
-.gl-text-blue-400 {
- color: $blue-400;
-}
diff --git a/content/assets/stylesheets/_utilities.scss b/content/assets/stylesheets/_utilities.scss
index 5761fc71..27184606 100644
--- a/content/assets/stylesheets/_utilities.scss
+++ b/content/assets/stylesheets/_utilities.scss
@@ -1,5 +1,5 @@
---
-version: 7
+version: 8
---
@import 'variables';
@@ -49,3 +49,23 @@ version: 7
.gl-w-3 {
width: 1rem;
}
+
+.gl-fill-red-800 {
+ fill: $red-800;
+}
+
+.gl-fill-red-600 {
+ fill: $red-600;
+}
+
+.gl-fill-orange-400 {
+ fill: $orange-400;
+}
+
+.gl-fill-orange-300 {
+ fill: $orange-300;
+}
+
+.gl-fill-blue-400 {
+ fill: $blue-400;
+}