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

95 lines
1.6 KiB
SCSS
Raw Normal View History

#tree-holder {
#tree-content-holder {
float:left;
width:100%;
2012-02-26 23:41:53 +01:00
}
#tree-readme-holder {
float:left;
width:100%;
.readme {
border:1px solid #ccc;
padding:12px;
background: #F7F7F7;
2012-06-14 09:43:35 +02:00
pre {
overflow: auto;
}
}
}
.tree_progress {
display:none;
margin:20px;
&.loading {
display:block;
}
}
2012-04-07 16:30:00 +02:00
#tree-slider {
@include border-radius(0);
2012-04-07 16:30:00 +02:00
.tree-item {
&:hover {
td { background: $hover; }
cursor:pointer;
}
2012-02-11 22:22:33 +01:00
}
2012-04-07 16:30:00 +02:00
}
2012-01-29 11:45:51 +01:00
2012-04-07 16:30:00 +02:00
.tree-item {
.tree-item-file-name {
2012-04-10 07:51:08 +02:00
vertical-align:middle;
a {
2012-04-10 07:51:08 +02:00
&:hover {
color:$blue_link;
}
}
img {
position: relative;
2012-04-10 19:06:17 +02:00
top:-1px;
}
2012-01-29 11:45:51 +01:00
}
2012-01-29 11:04:09 +01:00
}
2012-02-12 18:47:37 +01:00
#tree-slider {
2012-07-20 07:39:34 +02:00
@include solid_shade;
2012-04-10 07:51:08 +02:00
width:100%;
2012-02-20 18:59:39 +01:00
2012-04-06 07:48:58 +02:00
border-color:#ccc;
td {
2012-04-10 19:06:17 +02:00
padding:8px;
border-color:#f1f1f1;
2012-04-06 07:48:58 +02:00
background:#fafafa;
}
tr:first-child td:first-child,
tr:first-child td:last-child {
border-radius:0;
}
th {
2012-04-06 07:48:58 +02:00
border-color: #CCC;
border-bottom: 1px solid #bbb;
background:#eee;
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
}
2012-02-12 18:47:37 +01:00
}
.tree-commit-link {
color:#333;
2012-02-12 18:47:37 +01:00
}
2012-02-14 22:48:42 +01:00
a.tree-commit-link {
color: #666;
&:hover {
text-decoration: underline;
}
}
2012-02-20 20:38:59 +01:00
}