summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2018-10-24 16:19:38 +0000
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2018-10-24 16:19:38 +0000
commit605e952e39ddad4efa786ebc06a3175727563db5 (patch)
tree44a552c0b874cbf121f48e7b3d4d258a7b4657aa
parent9e76a4346b6575e28a135e64029910206a5dcec4 (diff)
parent711c1812b7b71d3c6461ca731be77a37e9a97369 (diff)
downloadgitlab-ce-605e952e39ddad4efa786ebc06a3175727563db5.tar.gz
Merge branch 'backport-ce-for-5781-operations-homepage-mvc-frontend' into 'master'
Backport scss changes for https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7973 See merge request gitlab-org/gitlab-ce!22503
-rw-r--r--app/assets/stylesheets/framework/common.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss
index 3c9505a21d6..fa753b13e5f 100644
--- a/app/assets/stylesheets/framework/common.scss
+++ b/app/assets/stylesheets/framework/common.scss
@@ -334,6 +334,14 @@ img.emoji {
}
}
+.outline-0 {
+ outline: 0;
+
+ &:focus {
+ outline: 0;
+ }
+}
+
/** COMMON CLASSES **/
.prepend-top-0 { margin-top: 0; }
.prepend-top-2 { margin-top: 2px; }
@@ -369,3 +377,5 @@ img.emoji {
.flex-align-self-center { align-self: center; }
.flex-grow { flex-grow: 1; }
.flex-no-shrink { flex-shrink: 0; }
+.mw-460 { max-width: 460px; }
+.ws-initial { white-space: initial; }