diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-17 18:01:33 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-17 18:01:33 -0700 |
commit | d659c1d1fddcb4d915f07ad1152b1d8a999a1f64 (patch) | |
tree | 6f59d919b05642ebc84fd1009f2fa8d93d0ea20a /app/views/notify | |
parent | cb3b671839ccb99fbe100ae1fe684d391a30f191 (diff) | |
download | gitlab-ce-d659c1d1fddcb4d915f07ad1152b1d8a999a1f64.tar.gz |
More actively use css variabled to prevent colors duplication
Diffstat (limited to 'app/views/notify')
-rw-r--r-- | app/views/notify/project_was_moved_email.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/notify/project_was_moved_email.html.haml b/app/views/notify/project_was_moved_email.html.haml index f53de2de287..d2df398ed4a 100644 --- a/app/views/notify/project_was_moved_email.html.haml +++ b/app/views/notify/project_was_moved_email.html.haml @@ -6,10 +6,10 @@ = @project.name_with_namespace %p To update the remote url in your local repository run (for ssh): -%p{ style: "background:#f5f5f5; padding:10px; border:1px solid #ddd" } +%p{ style: "background:$background-color; padding:10px; border:1px solid #ddd" } git remote set-url origin #{@project.ssh_url_to_repo} %p or for http(s): -%p{ style: "background:#f5f5f5; padding:10px; border:1px solid #ddd" } +%p{ style: "background:$background-color; padding:10px; border:1px solid #ddd" } git remote set-url origin #{@project.http_url_to_repo} %br |