diff options
author | haseeb <haseebeqx@yahoo.com> | 2018-02-21 22:35:10 +0530 |
---|---|---|
committer | haseeb <haseebeqx@yahoo.com> | 2018-02-28 18:48:26 +0530 |
commit | 6520e2c78ff87f68029a7d71c616073ec640f130 (patch) | |
tree | d80fc9cb3c21d86ef97cf33b55d949368dd52b75 /app | |
parent | cfdbfcc621a7e04c8604bd2d11c1e8a3c764f8c7 (diff) | |
download | gitlab-ce-6520e2c78ff87f68029a7d71c616073ec640f130.tar.gz |
rightside border fix for dropdown
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/snippets.scss | 18 | ||||
-rw-r--r-- | app/assets/stylesheets/snippets.scss | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/snippets.scss b/app/assets/stylesheets/framework/snippets.scss index c2d06b59b7f..69828532bef 100644 --- a/app/assets/stylesheets/framework/snippets.scss +++ b/app/assets/stylesheets/framework/snippets.scss @@ -50,3 +50,21 @@ .snippet-embed-input { height: 35px; } + +.embed-snippet { + padding-right: 0; + + a.btn { + width: 100%; + } + + .form-control { + cursor: auto; + width: 101%; + border-left: 0; + } + + .embed-toggle { + height: 35px; + } +} diff --git a/app/assets/stylesheets/snippets.scss b/app/assets/stylesheets/snippets.scss index b88a8158b35..7d271d25fd9 100644 --- a/app/assets/stylesheets/snippets.scss +++ b/app/assets/stylesheets/snippets.scss @@ -87,8 +87,8 @@ .gitlab-embedded-snippets-title { text-decoration: none; color: $gl-text-color; - - &:hover{ + + &:hover { text-decoration: underline; } } |