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

53 lines
834 B
SCSS
Raw Normal View History

2013-03-19 11:34:59 +01:00
.wall-page {
2013-03-19 13:39:32 +01:00
.wall-note-form {
2013-03-19 11:34:59 +01:00
@extend .span12;
margin: 0;
height: 140px;
background: #F9F9F9;
position: fixed;
bottom: 0px;
padding: 3px;
padding-bottom: 25px;
border: 1px solid #DDD;
}
.notes {
margin-bottom: 160px;
background: #FFE;
border: 1px solid #EED;
> li {
@extend .clearfix;
border-bottom: 1px solid #EED;
padding: 10px;
}
2013-03-19 12:28:29 +01:00
.wall-author {
color: #666;
float: left;
width: 100px;
text-overflow: ellipsis;
}
.wall-text {
border-left: 1px solid #CCC;
margin-left: 10px;
padding-left: 10px;
float: left;
width: 80%;
2013-03-19 12:28:29 +01:00
}
.wall-file {
2013-03-19 13:39:32 +01:00
margin-left: 8px;
background: #EEE;
}
abbr {
2013-03-19 12:28:29 +01:00
float: right;
2013-03-19 13:39:32 +01:00
color: #AAA;
border: none;
2013-03-19 12:28:29 +01:00
}
2013-03-19 11:34:59 +01:00
}
}