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:
authorMartin Wortschack <mwortschack@gitlab.com>2019-02-26 19:21:04 +0300
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-02-26 19:21:04 +0300
commit3282cd5d84728458f9f777afc969a4cc3f5c3a1a (patch)
treee0040fefa76aa9bdb9bb5af9cb2a38dc941770db
parent13c723f1dd99a6488df0efc89f46cdae1e57126d (diff)
Resolve "Extend utility classes for `gitlab-ui`search-box"
-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)
);