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

74 lines
1,010 B
SCSS

.tree-holder {
.tree-content-holder {
float:left;
width:100%;
}
.tree_progress {
display:none;
margin:20px;
&.loading {
display:block;
}
}
.tree-table {
@include border-radius(0);
.tree-item {
&:hover {
td {
background: $hover;
border-top:1px solid #ADF;
border-bottom:1px solid #ADF;
}
cursor:pointer;
}
}
}
.tree-item {
.tree-item-file-name {
vertical-align:middle;
a {
&:hover {
color:$blue_link;
}
}
img {
position: relative;
top:-1px;
}
}
}
.tree-table {
th .btn {
margin: -2px -1px;
padding: 2px 10px;
}
td {
background:#fafafa;
}
}
.tree-commit-link {
color:#333;
}
a.tree-commit-link {
color: #666;
&:hover {
text-decoration: underline;
}
}
}
.tree-btn-group {
.btn {
margin-right:-3px;
padding:2px 10px;
}
}