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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/utilities.scss')
-rw-r--r--app/assets/stylesheets/utilities.scss23
1 files changed, 17 insertions, 6 deletions
diff --git a/app/assets/stylesheets/utilities.scss b/app/assets/stylesheets/utilities.scss
index 10334d771b8..ccad503c1ed 100644
--- a/app/assets/stylesheets/utilities.scss
+++ b/app/assets/stylesheets/utilities.scss
@@ -87,12 +87,6 @@
padding-bottom: $gl-spacing-scale-8;
}
-// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1495
-.gl-py-13 {
- padding-top: $gl-spacing-scale-13;
- padding-bottom: $gl-spacing-scale-13;
-}
-
.gl-transition-property-stroke-opacity {
transition-property: stroke-opacity;
}
@@ -203,6 +197,10 @@
margin-bottom: -$gl-spacing-scale-3;
}
+.gl-mr-n2 {
+ margin-right: -$gl-spacing-scale-2;
+}
+
// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1408
$gl-line-height-42: px-to-rem(42px);
@@ -228,6 +226,10 @@ $gl-line-height-42: px-to-rem(42px);
max-height: none !important;
}
+.gl-max-w-50p {
+ max-width: 50%;
+}
+
// Will be moved to @gitlab/ui by https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1465
.gl-popover {
.popover-header {
@@ -247,3 +249,12 @@ $gl-line-height-42: px-to-rem(42px);
.gl-min-w-8 {
min-width: $gl-spacing-scale-8;
}
+
+// Will both be moved to @gitlab/ui by https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1526
+.gl-opacity-6 {
+ opacity: 0.6;
+}
+
+.gl-opacity-7 {
+ opacity: 0.7;
+}