kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.2 KiB
62 lines
1.2 KiB
15 years ago
|
/* SPRINT TABLE STYLES */
|
||
|
#taskboard{
|
||
|
background-color:rgb(254,250,248);
|
||
|
border:1px solid #CCCCCC;
|
||
|
margin-bottom:10px;
|
||
|
margin-right:10px;
|
||
|
}
|
||
|
#taskboard td{
|
||
|
border-right:1px dotted #CFCFCF;
|
||
|
border-bottom:1px solid #CFCFCF;
|
||
|
padding:0 5px 10px 0;
|
||
|
min-width:250px;
|
||
|
vertical-align:top;
|
||
|
width:250px;
|
||
|
}
|
||
|
#taskboard tr:first-child td{
|
||
|
background-color:rgb(235,235,235);
|
||
|
border-bottom:none;
|
||
|
color:rgb(126,126,126);
|
||
|
font-size:14px;
|
||
|
font-weight:bold;
|
||
|
height:30px;
|
||
|
padding:0;
|
||
|
padding-bottom:0;
|
||
|
text-align:center;
|
||
|
vertical-align:middle;
|
||
|
}
|
||
|
#taskboard tr:last-child td{
|
||
|
border-bottom:none;
|
||
|
}
|
||
|
#taskboard td:last-child{
|
||
|
border-right:none;
|
||
|
}
|
||
|
#taskboard td:first-child{
|
||
|
min-width:137px;
|
||
|
padding:10px;
|
||
|
width:137px;
|
||
|
}
|
||
|
#taskboard td.list.hover{
|
||
|
background-color:#CCCCCC;
|
||
|
}
|
||
|
/* BACKLOG TASK STYLES */
|
||
|
#taskboard .task, #taskboard .placeholder{
|
||
|
background-color:rgb(255,253,200);
|
||
|
border:1px solid #CCCCCC;
|
||
|
cursor:move;
|
||
|
display:block;
|
||
|
float:left;
|
||
|
font-size:10px;
|
||
|
height:60px;
|
||
|
margin:10px 0 0 10px;
|
||
|
padding:5px;
|
||
|
position:relative;
|
||
|
width:100px;
|
||
|
}
|
||
|
#taskboard .placeholder{
|
||
|
background-color:#FFFF00;
|
||
|
border:1px dashed #333300;
|
||
|
}
|
||
|
#taskboard .task.blank{
|
||
|
cursor:pointer;
|
||
|
}
|