diff options
Diffstat (limited to 'app/assets/stylesheets/pages/commit.scss')
-rw-r--r-- | app/assets/stylesheets/pages/commit.scss | 52 |
1 files changed, 41 insertions, 11 deletions
diff --git a/app/assets/stylesheets/pages/commit.scss b/app/assets/stylesheets/pages/commit.scss index a2646ce738c..7badea256c1 100644 --- a/app/assets/stylesheets/pages/commit.scss +++ b/app/assets/stylesheets/pages/commit.scss @@ -4,24 +4,54 @@ .commit-row { display: inline-block; - width: 70%; + width: 64%; + + @media (max-width: $screen-md-min) { + width: inherit; + } } -.commit-header { - background-color: $background-color; +.content-list { + .commit-header { + background-color: $background-color; + padding: 4px 0; - .light { - margin-left: 10px; + .light { + margin-left: 10px; + color: $btn-white-active; + } } -} -.pull-right { - .commit_short_id, .ci-status-link, { - padding: 0 5px; + .commit { + .avatar { + margin-right: 10px; + } } - .browse-code { - margin: 0 5px; + .pull-info-right { + float: right; + + .commit_short_id, .ci-status-link, { + padding: 0 5px; + } + + .commit_short_id { + display: inline-block; + width: 73px; + font-weight: 600; + } + + .btn-clipboard, .browse-code { + color: $btn-white-active; + } + + .browse-code { + margin: 0 5px; + } + + @media (max-width: $screen-xs-max) { + float: none; + } } } |