gitlabhq/app/assets/stylesheets/projects.css.scss

255 lines
3.7 KiB
SCSS
Raw Normal View History

2012-01-27 00:13:19 +02:00
.git_url_wrapper {
margin-right:50px
}
.file_stats {
span {
img {
2011-12-02 05:57:18 -05:00
width:14px;
2011-10-09 00:36:38 +03:00
float:left;
2012-01-27 00:13:19 +02:00
margin-right:6px;
2011-12-02 05:57:18 -05:00
padding:2px 0;
2011-10-09 00:36:38 +03:00
}
}
}
2012-01-27 00:13:19 +02:00
.handle:hover {
cursor:move;
2011-10-09 00:36:38 +03:00
}
2011-11-04 09:37:38 -04:00
2012-01-27 00:13:19 +02:00
/* Project Dashboard Page */
.news-feed h2 {
float:left;
2011-11-06 22:21:48 +02:00
}
2012-01-27 00:13:19 +02:00
.news-feed .project-updates {
margin-bottom:20px;
display:block;
width:100%;
2011-11-08 12:23:13 -05:00
}
2012-01-27 00:13:19 +02:00
.news-feed .project-updates .data {
padding:0
2011-11-09 06:37:01 -05:00
}
2012-01-27 00:13:19 +02:00
.news-feed .project-updates a.project-update {
padding:10px;
border-bottom:1px solid #eee;
overflow:hidden;
display:block;
}
.news-feed .project-updates a.project-update:last-child {
border-bottom:0
}
.news-feed .project-updates a.project-update img {
float:left;
2011-11-12 14:45:32 +02:00
margin-right:10px;
2012-01-27 00:13:19 +02:00
}
2012-01-28 02:08:26 +02:00
span.update-title,
span.update-author {
2012-01-27 00:13:19 +02:00
display:block;
}
2012-01-28 02:08:26 +02:00
span.update-title {
2012-01-27 00:13:19 +02:00
margin-bottom:10px
}
2012-01-28 02:08:26 +02:00
span.update-author {
2012-01-27 00:13:19 +02:00
color:#999;
font-weight:normal;
font-style:italic;
}
2012-01-28 02:08:26 +02:00
span.update-author strong {
2011-11-12 14:45:32 +02:00
font-weight:bold;
2012-01-27 00:13:19 +02:00
font-style: normal;
2011-11-12 14:45:32 +02:00
}
2012-01-27 00:13:19 +02:00
/** UPDATE ITEM **/
.update-data {
padding:0
2011-11-13 13:58:45 +02:00
}
2012-01-27 00:13:19 +02:00
.update-data {
width:100%;
2012-01-15 22:36:32 +02:00
}
2012-01-27 00:13:19 +02:00
a.update-item {
padding:10px;
border-bottom:1px solid #eee;
overflow:hidden;
display:block;
}
2012-01-27 00:13:19 +02:00
a.update-item:last-child {
border-bottom:0
}
a.update-item img {
float:left;
margin-right:10px;
}
2012-01-28 02:08:26 +02:00
span.update-title,
span.update-author {
2012-01-27 00:13:19 +02:00
display:block;
}
a.update-item span.update-title {
margin-bottom:10px
}
a.update-item span.update-author {
color:#999;
font-weight:normal;
font-style:italic;
}
a.update-item span.update-author strong {
font-weight:bold;
font-style:normal;
}
/** END UPDATE ITEM **/
2011-12-13 00:42:07 +08:00
.ajax-tab-loading {
2011-11-28 22:38:11 +02:00
padding:40px;
display:none;
}
2012-01-27 00:13:19 +02:00
#tree-content-holder {
float:left;
width:100%;
}
2011-12-13 00:42:07 +08:00
#tree-readme-holder {
float:left;
width:100%;
.readme {
@include round-borders-all(4px);
2012-01-27 00:13:19 +02:00
padding:4px 15px;
background: #F7F7F7;
2011-12-13 00:42:07 +08:00
}
}
2012-01-27 00:13:19 +02:00
.dashboard-loader {
float:left;
2012-01-27 00:13:19 +02:00
margin:10px;
2011-12-13 00:08:15 +02:00
display:none;
}
2012-01-27 00:13:19 +02:00
.user-mention {
color:#2FA0BB;
font-weight:bold;
}
2012-01-27 00:13:19 +02:00
a.project-update.titled {
position:relative;
padding-left:35% !important;
.title-block {
padding:10px;
width:35%;
position:absolute;
left:0;
top:0;
}
}
2012-01-28 12:02:03 +02:00
/**
* Project graph
*/
#holder {
cursor: move;
height: 70%;
overflow: hidden;
}
2012-01-29 21:30:03 +02:00
/** Branch/tag selector **/
.project-refs-form {
margin:0;
span {
background:none !important;
position:static !important;
width:auto !important;
height:auto !important;
}
}
.project-refs-select {
width:120px;
}
.project-refs-form .chzn-container {
position:relative;
top: -5px;
left: -11px;
.chzn-drop {
margin:7px 0;
border: 1px solid #CCC;
min-width: 300px;
.chzn-results {
max-height:300px;
}
.chzn-search input {
min-width:200px;
}
}
.chzn-single {
background:#ddd;
//border:none;
//box-shadow:none;
div {
background:transparent;
border-left:none;
}
span {
font-weight: normal;
}
}
}
input.git_clone_url {
width:475px;
}
.team_member_row {
img {
width:60px;
}
}
2012-02-11 19:56:18 +02:00
2012-02-11 23:22:33 +02:00
.merge-request-form-holder {
select {
width:300px;
}
}
/** Issues **/
2012-02-11 19:56:18 +02:00
#issue_assignee_id {
width:300px;
}
2012-02-15 00:33:26 +02:00
#new_issue_dialog textarea{
height: 100px;
}
2012-02-19 16:31:11 +02:00
.project_list_url {
width:270px;
background:#fff !important;
}
2012-02-20 20:16:55 +03:00
.project_tile {
@include shade;
@include round-borders-all(4px);
margin-bottom:20px;
width:338px;
float:left;
margin-left:20px;
border: 1px solid #DDD;
padding-bottom:20px;
.title {
background:#f5f5f5;
padding: 5px 10px 2px 20px;
border-bottom: 1px solid #DDD;
margin-bottom: 15px;
h3 {
&:hover {
text-decoration: underline;
}
}
}
.data {
margin: 0 20px;
}
.buttons {
margin: 0 20px;
}
2012-02-20 20:16:55 +03:00
}