Do not allow closed tasks to move on the board

This commit is contained in:
Frederic Guillot
2015-07-04 12:39:43 -04:00
parent 554500aa49
commit 37c1b79bdd
11 changed files with 86 additions and 91 deletions

View File

@@ -18,12 +18,8 @@
padding: 6px 0;
background-color: #fff;
border: 1px solid #b2b2b2;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
border-radius: 3px;
box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
}
.dropdown ul li {

View File

@@ -0,0 +1,19 @@
#screenshot-zone {
position: relative;
border: 2px dashed #ccc;
width: 90%;
height: 250px;
overflow: auto;
}
#screenshot-inner {
position: absolute;
left: 0;
bottom: 48%;
width: 100%;
text-align: center;
}
#screenshot-zone.screenshot-pasted {
border: 2px solid #333;
}

View File

@@ -9,7 +9,12 @@
}
div.task-board-recent {
border: 1px solid #666;
box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
}
div.task-board-status-closed {
user-select: none;
border: 1px dotted #555;
}
.task-table a,
@@ -132,6 +137,7 @@ span.task-board-date-overdue {
}
/* task age */
.task-board-closed,
.task-board-days {
position: absolute;
right: 5px;
@@ -218,7 +224,7 @@ span.task-board-date-overdue {
padding-left: 20px;
}
.description-textarea {
.task-show-description-textarea {
width: 99%;
max-width: 99%;
height: 300px;
@@ -283,24 +289,3 @@ span.task-board-date-overdue {
.task-show-file-table {
width: auto;
}
/* screenshots */
#screenshot-zone {
position: relative;
border: 2px dashed #ccc;
width: 90%;
height: 250px;
overflow: auto;
}
#screenshot-inner {
position: absolute;
left: 0;
bottom: 48%;
width: 100%;
text-align: center;
}
#screenshot-zone.screenshot-pasted {
border: 2px solid #333;
}