Commit 1c2c4c7c authored by Fabien Maniere's avatar Fabien Maniere

node settings > tab Upload: complete the form behaviour to auto detect the file type/format

parent 01bf6a24
......@@ -7,7 +7,6 @@
<!-- <link href="styles/bootstrap.min.css" rel="stylesheet"> -->
<link id="bootstrap-css" href="styles/bootstrap-default.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="styles/highlightjs-solarized-light.css" />
<style> * {margin: 0; padding: 0; list-style: none;} </style>
</head>
<body>
<div id="app"></div>
......
......@@ -6355,6 +6355,10 @@ a.close.disabled {
border-radius: 50px;
}
details summary {
cursor: pointer;
}
.echarts-for-react {
height: 300px;
}
......@@ -6391,7 +6395,7 @@ a:focus {
outline: 0;
}
ul {
ul, li, span {
list-style: none;
}
......@@ -10459,7 +10463,6 @@ input[type=range]:-moz-focusring {
}
.frame-search.card {
width: 1000px;
height: 600px;
}
......
......@@ -6167,6 +6167,10 @@ a.close.disabled {
border-radius: 50px;
}
details summary {
cursor: pointer;
}
.echarts-for-react {
height: 300px;
}
......@@ -6203,7 +6207,7 @@ a:focus {
outline: 0;
}
ul {
ul, li, span {
list-style: none;
}
......@@ -10265,7 +10269,6 @@ input[type=range]:-moz-focusring {
}
.frame-search.card {
width: 1000px;
height: 600px;
}
......
......@@ -6006,6 +6006,10 @@ a.close.disabled {
border-radius: 50px;
}
details summary {
cursor: pointer;
}
.echarts-for-react {
height: 300px;
}
......@@ -6042,7 +6046,7 @@ a:focus {
outline: 0;
}
ul {
ul, li, span {
list-style: none;
}
......@@ -10110,7 +10114,6 @@ input[type=range]:-moz-focusring {
}
.frame-search.card {
width: 1000px;
height: 600px;
}
......
......@@ -6231,6 +6231,10 @@ a.close.disabled {
border-radius: 50px;
}
details summary {
cursor: pointer;
}
.echarts-for-react {
height: 300px;
}
......@@ -6267,7 +6271,7 @@ a:focus {
outline: 0;
}
ul {
ul, li, span {
list-style: none;
}
......@@ -10335,7 +10339,6 @@ input[type=range]:-moz-focusring {
}
.frame-search.card {
width: 1000px;
height: 600px;
}
......
......@@ -6304,6 +6304,10 @@ a.close.disabled {
border-radius: 50px;
}
details summary {
cursor: pointer;
}
.echarts-for-react {
height: 300px;
}
......@@ -6340,7 +6344,7 @@ a:focus {
outline: 0;
}
ul {
ul, li, span {
list-style: none;
}
......@@ -10408,7 +10412,6 @@ input[type=range]:-moz-focusring {
}
.frame-search.card {
width: 1000px;
height: 600px;
}
......
......@@ -598,7 +598,7 @@ li .leaf:hover a.settings {
border: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
height: 600px;
width: 1000px;
/* width: 1000px; */
}
#node-popup-tooltip .popup-container-body {
max-height: 70vh;
......
......@@ -10,7 +10,6 @@
<link href="styles/sass.css" rel="stylesheet" type="text/css" />
<!-- <script type="text/javascript" src="/js/react-bootstrap.min.js"></script> -->
<script type="text/javascript" src="/js/react-bootstrap.js"></script>
<style> * {margin: 0; padding: 0; list-style: none;} </style>
</head>
<body>
<div id="app"></div>
......
......@@ -497,10 +497,10 @@ $node-popup-width: 544px
/////////////////////////////////////////
.frame-search.card
$frame-width: 1000px
// $frame-width: 1000px
$frame-height: 600px
width: $frame-width
// width: $frame-width
height: $frame-height
/////////////////////////////////////////
......
......@@ -32,6 +32,6 @@ a:focus {
outline: 0;
}
ul {
list-style:none;
ul, li, span {
list-style: none;
}
......@@ -558,4 +558,11 @@
.form-control {
border-radius: 50px;
}
}
details {
summary {
cursor: pointer;
// list-style: initial !important;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment