Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2016-01-26 19:20:18 +0300
committerJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2016-01-26 19:21:09 +0300
commit111834883d287c89a24ae395900786d771214bdb (patch)
tree493e1ed2bc9d05b76761d14c28c05f8153245e4e /app/assets/stylesheets/pages/tree.scss
parenta14089485ff697d58dddb61e6da2d1b6c64a803e (diff)
Adjusts styles of table tree
Fixes #12725
Diffstat (limited to 'app/assets/stylesheets/pages/tree.scss')
-rw-r--r--app/assets/stylesheets/pages/tree.scss37
1 files changed, 31 insertions, 6 deletions
diff --git a/app/assets/stylesheets/pages/tree.scss b/app/assets/stylesheets/pages/tree.scss
index 4ff549ade1f..ab12f2d55e0 100644
--- a/app/assets/stylesheets/pages/tree.scss
+++ b/app/assets/stylesheets/pages/tree.scss
@@ -1,6 +1,12 @@
.tree-holder {
> .nav-block {
- margin: 11px 0;
+ margin: 22px 0 0 0;
+ background: #F8FAFC;
+ padding: 9px 9px 4px 14px;
+ border: 1px solid #EBECF0;
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+ border-bottom-width: 0;
}
.file-finder {
@@ -13,7 +19,18 @@
.tree-table {
margin-bottom: 0;
-
+ border: 1px solid #EEF0F2;
+ thead {
+ th {
+ background-color: white;
+
+ &:last-child {
+ .light {
+ color: #8C9AAC;
+ }
+ }
+ }
+ }
tr:nth-child(odd) {
background-color: #F7F9FB;
}
@@ -28,8 +45,6 @@
&:hover {
td {
background: $hover;
- border-top: 1px solid #ADF;
- border-bottom: 1px solid #ADF;
}
cursor: pointer;
}
@@ -48,10 +63,14 @@
max-width: 320px;
vertical-align: middle;
- i, a {
+ a {
color: $gl-link-color;
}
+ i {
+ color: #797B7D;
+ }
+
img {
position: relative;
top:-1px;
@@ -60,10 +79,16 @@
.tree_commit {
max-width: 320px;
+ a {
+ color: #8C9AAC;
+ }
}
.tree_time_ago {
min-width: 135px;
+ time {
+ color: #8C9AAC;
+ }
}
}
@@ -129,5 +154,5 @@
.tree-controls {
float: right;
- margin-top: 11px;
+ margin: 32px 7px 0 0;
}