From d1544c2f4907b1e8c16f13457715d1ab82562baa Mon Sep 17 00:00:00 2001 From: Jonathan Steel Date: Mon, 26 Mar 2018 12:14:07 -0400 Subject: [PATCH] Fix fill color for Bootstrap vertical buttons The fillColor was being set twice, so changing the fill would change the fill value that was being ignored. Former-commit-id: b4945c919ab9cfcc413c1947633188b058f23a4e --- src/main/webapp/js/diagramly/sidebar/Sidebar-Bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/js/diagramly/sidebar/Sidebar-Bootstrap.js b/src/main/webapp/js/diagramly/sidebar/Sidebar-Bootstrap.js index b73d41ad..a3a30c80 100644 --- a/src/main/webapp/js/diagramly/sidebar/Sidebar-Bootstrap.js +++ b/src/main/webapp/js/diagramly/sidebar/Sidebar-Bootstrap.js @@ -72,7 +72,7 @@ button4.geometry.offset = new mxPoint(0, -40); button4.vertex = true; bg.insert(button4); - var button1 = new mxCell('All Users', new mxGeometry(0, 0, 160, 40), inh + s + 'topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;resizeWidth=1;'); + var button1 = new mxCell('All Users', new mxGeometry(0, 0, 160, 40), s + 'topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;resizeWidth=1;'); button1.geometry.relative = true; button1.vertex = true; bg.insert(button1);