mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-09 00:43:23 +01:00
Default editor colors appear in the pallete.
Remove discard changes button.
This commit is contained in:
parent
4cd765cfb9
commit
f6953aad9c
@ -198,7 +198,8 @@ mindplot.MainTopic = new Class({
|
|||||||
result = $msg('SUB_TOPIC');
|
result = $msg('SUB_TOPIC');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
result = $msg('ISOLATED_TOPIC');;
|
result = $msg('ISOLATED_TOPIC');
|
||||||
|
;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
},
|
},
|
||||||
@ -213,7 +214,7 @@ mindplot.MainTopic = new Class({
|
|||||||
size:8,
|
size:8,
|
||||||
style:"normal",
|
style:"normal",
|
||||||
weight:"normal",
|
weight:"normal",
|
||||||
color:"#525c61"
|
color:"rgb(82,92,97)"
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
result = {
|
result = {
|
||||||
@ -221,7 +222,7 @@ mindplot.MainTopic = new Class({
|
|||||||
size:6,
|
size:6,
|
||||||
style:"normal",
|
style:"normal",
|
||||||
weight:"normal",
|
weight:"normal",
|
||||||
color:"#525c61"
|
color:"rgb(82,92,97)"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -230,18 +231,18 @@ mindplot.MainTopic = new Class({
|
|||||||
size:8,
|
size:8,
|
||||||
style:"normal",
|
style:"normal",
|
||||||
weight:"normal",
|
weight:"normal",
|
||||||
color:"#525c61"
|
color:"rgb(82,92,97)"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
},
|
},
|
||||||
|
|
||||||
_defaultBackgroundColor:function () {
|
_defaultBackgroundColor:function () {
|
||||||
return "#E0E5EF";
|
return "rgb(224,229,239)";
|
||||||
},
|
},
|
||||||
|
|
||||||
_defaultBorderColor:function () {
|
_defaultBorderColor:function () {
|
||||||
return '#023BB9';
|
return 'rgb(2,59,185)';
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
@ -89,7 +89,13 @@ mindplot.widget.ColorPalettePanel = new Class({
|
|||||||
var modelValue = model.getValue();
|
var modelValue = model.getValue();
|
||||||
colorCells.each(function (elem) {
|
colorCells.each(function (elem) {
|
||||||
var color = elem.getStyle("background-color");
|
var color = elem.getStyle("background-color");
|
||||||
if (modelValue == color) {
|
if (modelValue != null && modelValue[0] == 'r') {
|
||||||
|
modelValue = modelValue.rgbToHex();
|
||||||
|
}
|
||||||
|
console.log("modelValue:" + modelValue);
|
||||||
|
console.log("color:" + color);
|
||||||
|
|
||||||
|
if (modelValue != null && modelValue.toUpperCase() == color.toUpperCase()) {
|
||||||
elem.parentNode.className = 'palette-cell palette-cell-selected';
|
elem.parentNode.className = 'palette-cell palette-cell-selected';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<div id="color-palette" class="palette-panel palette-panel-vertical palette-panel-noaccel"
|
<div id="color-palette" class="palette-panel palette-panel-vertical palette-panel-noaccel"
|
||||||
style="-webkit-user-select: none; left: 451px; top: 128px; visibility: visible; " role="menu" aria-haspopup="true"
|
style="-webkit-user-select: none; left: 451px; top: 128px; visibility: visible; " role="menu" aria-haspopup="true"
|
||||||
aria-activedescendant="">
|
aria-activedescendant="">
|
||||||
|
|
||||||
<div class="palette" id=":3p">
|
<div class="palette" id=":3p">
|
||||||
<table class="palette-table" cellspacing="0" cellpadding="0" role="grid"
|
<table class="palette-table" cellspacing="0" cellpadding="0" role="grid"
|
||||||
aria-activedescendent="palette-cell-244">
|
aria-activedescendent="palette-cell-244">
|
||||||
@ -46,8 +47,8 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="palette-cell">
|
<td class="palette-cell">
|
||||||
<div class="palette-colorswatch"
|
<div class="palette-colorswatch"
|
||||||
style="background-color: rgb(255, 255, 255);"
|
style="background-color: rgb(254, 255, 255);"
|
||||||
title="RGB (255, 255, 255)"></div>
|
title="RGB (254, 255, 255)"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -395,4 +396,55 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="palette" id=":2p">
|
||||||
|
<table class="palette-table" cellspacing="0" cellpadding="0" role="grid"
|
||||||
|
aria-activedescendent="palette-cell-244">
|
||||||
|
<tbody class="palette-body">
|
||||||
|
<tr class="palette-row">
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color: rgb(255, 255, 255);"
|
||||||
|
title="RGB (255, 255, 255)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color: rgb(224, 229, 239);"
|
||||||
|
title="RGB (224, 229, 239)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color:rgb(80, 157, 192);"
|
||||||
|
title="RGB (80, 157, 192)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color:rgb(57, 113, 177);"
|
||||||
|
title="RGB (57, 113, 177)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color: rgb(2, 59, 185);"
|
||||||
|
title="RGB (2, 59, 185)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color: rgb(244, 184, 45);"
|
||||||
|
title="RGB (244, 184, 45)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell palette-cell-selected">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color: rgb(241, 163, 39);"
|
||||||
|
title="RGB (241, 163, 39)"></div>
|
||||||
|
</td>
|
||||||
|
<td class="palette-cell">
|
||||||
|
<div class="palette-colorswatch"
|
||||||
|
style="background-color: rgb(82, 92, 97);"
|
||||||
|
title="RGB (82, 92, 97)"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
<div id="save" class="buttonOn">
|
<div id="save" class="buttonOn">
|
||||||
<img src="images/save.png"/>
|
<img src="images/save.png"/>
|
||||||
</div>
|
</div>
|
||||||
<div id="discard" class="buttonOn">
|
<%--<div id="discard" class="buttonOn">--%>
|
||||||
<img src="images/discard.png"/>
|
<%--<img src="images/discard.png"/>--%>
|
||||||
</div>
|
<%--</div>--%>
|
||||||
</c:if>
|
</c:if>
|
||||||
<div id="print" class="buttonOn">
|
<div id="print" class="buttonOn">
|
||||||
<img src="images/print.png"/>
|
<img src="images/print.png"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user