mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
label with colors in filter
This commit is contained in:
parent
acb3782561
commit
b19ac2c4c3
@ -102,6 +102,36 @@ input#selectAll {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ---------------------------- Label --------------------------------- */
|
||||||
|
|
||||||
|
.labelColor {
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
left: 2px;
|
||||||
|
top: 1px;
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.labelName {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
left: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.labelTag {
|
||||||
|
border: 1px solid;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: white;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 11px;
|
||||||
|
line-height: 1;
|
||||||
|
padding: 2px 5px 1px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
/* ---------------------------- Sorting --------------------------------- */
|
/* ---------------------------- Sorting --------------------------------- */
|
||||||
|
|
||||||
.sorting_asc {
|
.sorting_asc {
|
||||||
|
@ -1,9 +1,16 @@
|
|||||||
function createLabelItem(data) {
|
function createLabelItem(data) {
|
||||||
|
if (data.color == "") {
|
||||||
|
data.color = "#000000";
|
||||||
|
}
|
||||||
$("#foldersContainer").find("ul").append(
|
$("#foldersContainer").find("ul").append(
|
||||||
$("<li data-filter=\"" + data.title + "\">").append(
|
$("<li data-filter=\"" + data.title + "\">").append(
|
||||||
"<a href=\"#\"> <i class=\"icon-tag\"></i>" + data.title + "</a>"
|
"<a href=\"#\"> <i class=\"icon-tag\"></i>" +
|
||||||
|
"<div class='labelColor' style='background: " + data.color + "'></div>" +
|
||||||
|
"<div class='labelName'>" + data.title + "</div>" +
|
||||||
|
"</a>"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function fetchLabels() {
|
function fetchLabels() {
|
||||||
|
Loading…
Reference in New Issue
Block a user