55 lines
736 B
CSS
Raw Normal View History

2012-02-24 11:26:31 +05:30
.todoitem {
2012-06-12 19:24:12 +05:30
padding-bottom: 3px;
min-height: 45px;
2012-03-14 19:06:20 +05:30
clear: both;
2012-02-24 11:26:31 +05:30
}
.todoitem .label {
width: 50px;
display: inline-block;
text-align: center;
2012-06-12 19:24:12 +05:30
margin-right: 11px;
margin-top: 3px;
float: left;
2012-02-24 11:26:31 +05:30
}
.todoitem .close {
2012-06-13 12:01:41 +05:30
margin-left: 5px;
2012-06-12 19:24:12 +05:30
font-size: 17px;
2012-02-24 11:26:31 +05:30
}
2012-06-12 19:24:12 +05:30
.todoitem .close-span {
2012-02-24 11:26:31 +05:30
display: inline-block;
2012-06-12 19:24:12 +05:30
float: right;
}
.todoitem .ref_link {
2012-02-24 11:26:31 +05:30
line-height: 18px;
}
.todoitem .description {
cursor: pointer;
2012-06-12 19:24:12 +05:30
padding: 3px 0px;
display: inline-block;
2012-06-13 12:01:41 +05:30
width: 80%;
2012-06-12 19:24:12 +05:30
}
#todo-list, #assigned-todo-list {
2012-02-24 11:26:31 +05:30
float: left;
2012-06-12 19:24:12 +05:30
width: 50%;
2012-03-22 11:01:38 +05:30
}
2012-06-12 19:24:12 +05:30
.todo-separator {
border-bottom: 1px solid #DEB85F;
margin-bottom: 5px;
clear: both;
}
.todo-content {
padding-right: 15px;
2012-07-09 12:34:02 +05:30
}
.layout-main {
background-color: #FFFDC9;
min-height: 300px;
2012-06-12 19:24:12 +05:30
}