diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2019-03-29 19:23:08 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2019-03-29 19:23:08 +0000 |
commit | 48438b7eb5c5083499934ceab595af1b345182a0 (patch) | |
tree | 771fe9b2f91e03240ec2de4c10f2f3dec8307ace | |
parent | bafabe28c7d13a7fad514da9d04d0844c716e9c4 (diff) | |
parent | ef1b70058ac04042aa89776c3d01f8a3d97c9229 (diff) | |
download | gitlab-ce-48438b7eb5c5083499934ceab595af1b345182a0.tar.gz |
Merge branch 'dennis-positioning-important' into 'master'
Designate common positioning classes as `!important` a la Bootstrap
See merge request gitlab-org/gitlab-ce!26621
-rw-r--r-- | app/assets/stylesheets/framework/common.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss index 8fc08422d76..d72597a6147 100644 --- a/app/assets/stylesheets/framework/common.scss +++ b/app/assets/stylesheets/framework/common.scss @@ -462,10 +462,10 @@ img.emoji { } /** COMMON POSITIONING CLASSES */ -.position-bottom-0 { bottom: 0; } -.position-left-0 { left: 0; } -.position-right-0 { right: 0; } -.position-top-0 { top: 0; } +.position-bottom-0 { bottom: 0 !important; } +.position-left-0 { left: 0 !important; } +.position-right-0 { right: 0 !important; } +.position-top-0 { top: 0 !important; } .drag-handle { width: 4px; |