summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/files.scss
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-05-10 14:21:58 +0100
committerFilipa Lacerda <filipa@gitlab.com>2017-05-10 14:21:58 +0100
commitcc8073653ea5f4bf54026b849f1e0b23a10de15a (patch)
tree4dce464e49374b1c67f86f006415bbbc7ecbfa7d /app/assets/stylesheets/framework/files.scss
parenta3074085cd01c0c062cb5f07e848375714dfd6d0 (diff)
parent09c2aab4aa4661b147545e2c41b6a0100fc57b11 (diff)
downloadgitlab-ce-cc8073653ea5f4bf54026b849f1e0b23a10de15a.tar.gz
Merge branch 'master' into 30286-vue-loadin-icon30286-vue-loadin-icon
* master: (62 commits) Fix broken test - load correct data Remove redirect for old issue url containing id instead of iid Use vue file for table pagination component stub error handlers where uncaught Promise rejections currently exist Revert "Fix OpenID spec failure that assumed current_sign_in_at would be set" Add :redis keyword to some specs clear state of trackable attributes Fix OpenID spec failure that assumed current_sign_in_at would be set Kubernetes Helm Chart Install docs Add Repository subnav to 'Find files' Make tree, blob and blame pages more consistent Add screenshots to Triggered Build docs Add Prometheus memory sparkline to MR widget Fix test failure in job vue componenFix test failure in job vue componentt Remove unnecessary if check Fix links in code review docs Improve readability of code Remove some unused Gitlab::Git code Use Rails 'delegate' Remove CI/CD models directory from `eager_load_paths` Don't make Commit#raw_deltas private ...
Diffstat (limited to 'app/assets/stylesheets/framework/files.scss')
-rw-r--r--app/assets/stylesheets/framework/files.scss16
1 files changed, 12 insertions, 4 deletions
diff --git a/app/assets/stylesheets/framework/files.scss b/app/assets/stylesheets/framework/files.scss
index 1dd0e5ab581..f8674b763c8 100644
--- a/app/assets/stylesheets/framework/files.scss
+++ b/app/assets/stylesheets/framework/files.scss
@@ -4,13 +4,14 @@
*/
.file-holder {
border: 1px solid $border-color;
+ border-radius: $border-radius-default;
&.file-holder-no-border {
border: 0;
}
&.readme-holder {
- margin: $gl-padding-top 0;
+ margin: $gl-padding 0;
}
table {
@@ -25,7 +26,7 @@
text-align: left;
padding: 10px $gl-padding;
word-wrap: break-word;
- border-radius: 3px 3px 0 0;
+ border-radius: $border-radius-default $border-radius-default 0 0;
&.file-title-clear {
padding-left: 0;
@@ -94,9 +95,16 @@
tr {
border-bottom: 1px solid $blame-border;
+
+ &:last-child {
+ border-bottom: none;
+ }
}
td {
+ border-top: none;
+ border-bottom: none;
+
&:first-child {
border-left: none;
}
@@ -107,7 +115,7 @@
}
td.blame-commit {
- padding: 0 10px;
+ padding: 5px 10px;
min-width: 400px;
background: $gray-light;
}
@@ -246,7 +254,7 @@ span.idiff {
border-bottom: 1px solid $border-color;
padding: 5px $gl-padding;
margin: 0;
- border-radius: 3px 3px 0 0;
+ border-radius: $border-radius-default $border-radius-default 0 0;
.file-header-content {
white-space: nowrap;