Expose tags to the user interface (first prototype)

This commit is contained in:
Frederic Guillot
2016-06-24 15:43:34 -04:00
parent b2e92480c2
commit 18cb7ad0a4
26 changed files with 296 additions and 167 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -157,16 +157,3 @@ div.draggable-item-selected {
float: left;
padding-right: 5px;
}
/* board saving state */
.task-board-saving-state {
opacity: 0.3;
}
.task-board-saving-icon {
position: absolute;
margin: auto;
width: 100%;
text-align: center;
color: #000;
}

View File

@@ -61,6 +61,15 @@ select:focus {
outline: 0;
}
.tag-autocomplete {
width: 400px;
}
span.select2-container {
margin-top: 3px;
margin-bottom: 10px;
}
::-webkit-input-placeholder {
color: #ddd;
padding-top: 2px;
@@ -169,7 +178,6 @@ input.form-input-large {
margin-top: 8%;
}
.form-column li,
.form-login li {
margin-left: 25px;
line-height: 25px;

View File

@@ -53,6 +53,19 @@ div.task-board-status-closed {
text-overflow: ellipsis;
}
/* board saving state */
.task-board-saving-state {
opacity: 0.3;
}
.task-board-saving-icon {
position: absolute;
margin: auto;
width: 100%;
text-align: center;
color: #000;
}
/* title one the card */
.task-board-title {
font-size: 1.15em;
@@ -83,6 +96,21 @@ div.task-board-status-closed {
opacity: 0.6;
}
/* tags list */
.task-tags li {
display: inline;
margin: 0;
margin-right: 4px;
padding: 2px;
color: #666;
border: 1px solid #666;
border-radius: 2px;
}
.task-summary-container .task-tags {
margin-top: 10px;
}
/* avatars on the card */
.task-board-avatars {
text-align: right;
@@ -181,6 +209,9 @@ span.task-board-age-column {
border: 2px solid #000;
border-radius: 8px;
padding: 15px;
}
.task-summary-columns {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;

File diff suppressed because one or more lines are too long