summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-02-26 16:21:04 +0000
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-02-26 16:21:04 +0000
commitb7a3c8f6404ba2890409e0e79697fa34354cf46e (patch)
treee0040fefa76aa9bdb9bb5af9cb2a38dc941770db
parent13c723f1dd99a6488df0efc89f46cdae1e57126d (diff)
parent3282cd5d84728458f9f777afc969a4cc3f5c3a1a (diff)
downloadgitlab-ce-b7a3c8f6404ba2890409e0e79697fa34354cf46e.tar.gz
Merge branch '58202-extend-utility-classes-for-gitlab-ui-search-box' into 'master'
Resolve "Extend utility classes for `gitlab-ui`search-box" Closes #58202 See merge request gitlab-org/gitlab-ce!25554
-rw-r--r--app/assets/stylesheets/framework/common.scss4
-rw-r--r--app/assets/stylesheets/framework/variables_overrides.scss3
2 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss
index fa424532879..b09e44e052a 100644
--- a/app/assets/stylesheets/framework/common.scss
+++ b/app/assets/stylesheets/framework/common.scss
@@ -463,3 +463,7 @@ img.emoji {
background-color: $gray-600;
}
}
+
+.cursor-pointer {
+ cursor: pointer;
+}
diff --git a/app/assets/stylesheets/framework/variables_overrides.scss b/app/assets/stylesheets/framework/variables_overrides.scss
index 1dfe2a69a2f..814e802f7c1 100644
--- a/app/assets/stylesheets/framework/variables_overrides.scss
+++ b/app/assets/stylesheets/framework/variables_overrides.scss
@@ -41,5 +41,6 @@ $spacers: (
2: ($spacer),
3: ($spacer * 2),
4: ($spacer * 3),
- 5: ($spacer * 4)
+ 5: ($spacer * 4),
+ 6: ($spacer * 8)
);