gitlabhq/app/assets/stylesheets/sections/tree.scss

77 lines
1 KiB
SCSS
Raw Normal View History

2012-09-03 21:53:16 +03:00
#tree-holder {
#tree-content-holder {
float:left;
width:100%;
2012-02-27 00:41:53 +02:00
}
#tree-readme-holder {
float:left;
width:100%;
.readme {
border:1px solid #ccc;
padding:12px;
background: #F7F7F7;
2012-06-14 10:43:35 +03:00
2012-09-03 21:53:16 +03:00
pre {
2012-06-14 10:43:35 +03:00
overflow: auto;
}
}
}
2012-09-03 21:53:16 +03:00
.tree_progress {
display:none;
margin:20px;
2012-09-03 21:53:16 +03:00
&.loading {
display:block;
}
}
2012-04-07 17:30:00 +03:00
#tree-slider {
@include border-radius(0);
2012-09-03 21:53:16 +03:00
.tree-item {
&:hover {
td {
background: $hover;
border-top:1px solid #FEA;
border-bottom:1px solid #FEA;
}
2012-04-07 17:30:00 +03:00
cursor:pointer;
}
2012-02-11 23:22:33 +02:00
}
2012-04-07 17:30:00 +03:00
}
2012-01-29 12:45:51 +02:00
2012-09-03 21:53:16 +03:00
.tree-item {
.tree-item-file-name {
2012-04-10 08:51:08 +03:00
vertical-align:middle;
2012-09-03 21:53:16 +03:00
a {
&:hover {
2012-04-10 08:51:08 +03:00
color:$blue_link;
}
}
2012-09-03 21:53:16 +03:00
img {
position: relative;
2012-04-10 20:06:17 +03:00
top:-1px;
}
2012-01-29 12:45:51 +02:00
}
2012-01-29 12:04:09 +02:00
}
2012-02-12 19:47:37 +02:00
2012-09-03 21:53:16 +03:00
#tree-slider {
td {
2012-04-06 08:48:58 +03:00
background:#fafafa;
}
2012-02-12 19:47:37 +02:00
}
2012-09-03 21:53:16 +03:00
.tree-commit-link {
color:#333;
2012-02-12 19:47:37 +02:00
}
2012-02-14 23:48:42 +02:00
2012-09-03 21:53:16 +03:00
a.tree-commit-link {
color: #666;
2012-09-03 21:53:16 +03:00
&:hover {
text-decoration: underline;
}
}
2012-02-20 21:38:59 +02:00
}