Browse Source

fixed css

flowchartTest
Alex de Mulder 9 years ago
parent
commit
68b75d57ee
5 changed files with 2310 additions and 2304 deletions
  1. +4
    -4
      dist/vis.css
  2. +2297
    -2294
      dist/vis.js
  3. +1
    -1
      dist/vis.min.css
  4. +4
    -4
      lib/network/css/network-configuration.css
  5. +4
    -1
      lib/network/modules/ConfigurationSystem.js

+ 4
- 4
dist/vis.css View File

@ -850,7 +850,7 @@ div.vis-network-configuration.button.hover{
color:#ffffff;
}
div.vis-network-configuration.entree{
div.vis-network-configuration.item{
display:block;
width:495px;
height:25px;
@ -859,19 +859,19 @@ div.vis-network-configuration.entree{
}
div.vis-network-configuration.entree.s2{
div.vis-network-configuration.item.s2{
left:10px;
background-color: #f7f8fa;
padding-left:5px;
border-radius:3px;
}
div.vis-network-configuration.entree.s3{
div.vis-network-configuration.item.s3{
left:20px;
background-color: #e4e9f0;
padding-left:5px;
border-radius:3px;
}
div.vis-network-configuration.entree.s4{
div.vis-network-configuration.item.s4{
left:30px;
background-color: #cfd8e6;
padding-left:5px;

+ 2297
- 2294
dist/vis.js
File diff suppressed because it is too large
View File


+ 1
- 1
dist/vis.min.css
File diff suppressed because it is too large
View File


+ 4
- 4
lib/network/css/network-configuration.css View File

@ -38,7 +38,7 @@ div.vis-network-configuration.button.hover{
color:#ffffff;
}
div.vis-network-configuration.entree{
div.vis-network-configuration.item{
display:block;
width:495px;
height:25px;
@ -47,19 +47,19 @@ div.vis-network-configuration.entree{
}
div.vis-network-configuration.entree.s2{
div.vis-network-configuration.item.s2{
left:10px;
background-color: #f7f8fa;
padding-left:5px;
border-radius:3px;
}
div.vis-network-configuration.entree.s3{
div.vis-network-configuration.item.s3{
left:20px;
background-color: #e4e9f0;
padding-left:5px;
border-radius:3px;
}
div.vis-network-configuration.entree.s4{
div.vis-network-configuration.item.s4{
left:30px;
background-color: #cfd8e6;
padding-left:5px;

+ 4
- 1
lib/network/modules/ConfigurationSystem.js View File

@ -692,8 +692,11 @@ class ConfigurationSystem {
_constructOptions(value,path, optionsObj = {}) {
let pointer = optionsObj;
value = value === 'true' ? true : value;
// when dropdown boxes can be string or boolean, we typecast it into correct types
value = value === 'true' ? true : value;
value = value === 'false' ? false : value;
for (let i = 0; i < path.length; i++) {
if (pointer[path[i]] === undefined) {
pointer[path[i]] = {};

Loading…
Cancel
Save