summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/profile.scss
diff options
context:
space:
mode:
authorJose Ivan Vargas <jvargas@gitlab.com>2017-02-16 16:02:40 -0600
committerJose Ivan Vargas <jvargas@gitlab.com>2017-02-23 15:47:23 -0600
commit103f5a116b1ae6ecbef69d6903b26f7259f090cb (patch)
tree0e3d762be03e421a0f07a96c8ad94dc333724f89 /app/assets/stylesheets/pages/profile.scss
parent4802bd512a2492c7560acde077fee2f4cd9483b3 (diff)
downloadgitlab-ce-103f5a116b1ae6ecbef69d6903b26f7259f090cb.tar.gz
Created unit tests, fixtures and integration tests
Also changed the user_callout haml to a partial and added the corresponding SVG icon
Diffstat (limited to 'app/assets/stylesheets/pages/profile.scss')
-rw-r--r--app/assets/stylesheets/pages/profile.scss11
1 files changed, 9 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/profile.scss b/app/assets/stylesheets/pages/profile.scss
index 9add1bafdb3..c9dab696092 100644
--- a/app/assets/stylesheets/pages/profile.scss
+++ b/app/assets/stylesheets/pages/profile.scss
@@ -279,6 +279,7 @@ table.u2f-registrations {
}
#user-callout {
+ display: none;
margin: 24px auto 0;
.bordered-box {
@@ -291,8 +292,8 @@ table.u2f-registrations {
overflow: hidden;
.dismiss-icon {
- position: absolute;
- right: $user-callout-right;
+ float: right;
+ margin-right: 20px;
cursor: pointer;
color: $cycle-analytics-dismiss-icon-color;
}
@@ -306,4 +307,10 @@ table.u2f-registrations {
}
}
}
+
+ @media(max-width: $screen-xs-max) {
+ .inner-content {
+ padding-left: 30px;
+ }
+ }
}