pandorafms/pandora_console/include/styles/graph_analytics.css

185 lines
3.2 KiB
CSS
Raw Normal View History

2023-08-10 09:13:48 +02:00
/* .options-graph-analytics {
position: sticky;
top: 110px;
width: -webkit-fill-available;
width: -moz-available;
height: 18px;
margin: -25px -25px 25px -25px;
padding: 10px 20px;
z-index: 1;
font-weight: bold;
display: flex;
min-width: fit-content;
background-color: var(--secondary-color);
border: 1px solid #e5e9ed;
} */
div#menu_tab ul li,
div#menu_tab ul li span {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
font-size: 14px;
cursor: pointer;
}
div#menu_tab ul.mn li.nomn.tab_operation img {
margin-right: 3px;
}
div#menu_tab ul li:hover,
div#menu_tab ul li span:hover {
box-shadow: none;
}
div.main-div {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
div.padding-div {
margin: 0;
padding: 10px;
}
2023-08-11 13:50:32 +02:00
div.filters-div-main {
2023-08-10 09:13:48 +02:00
min-width: 400px;
border-right: 1px solid var(--border-dark-color);
}
2023-08-11 13:50:32 +02:00
div.filters-div-main.filters-div-main-collapsed {
width: 20px;
min-width: 20px;
}
div.filters-div-main.filters-div-main-collapsed
*:not(.filters-div-header):not(.filters-div-header > img) {
display: none;
}
div.filters-div-main > .filters-div-header {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
div.filters-div-main > .filters-div-header > img {
width: 20px;
cursor: pointer;
}
div.filters-div {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
}
div.graphs-div-main {
2023-08-10 09:13:48 +02:00
width: 100%;
}
.handle-graph {
cursor: grab;
}
2023-08-11 13:50:32 +02:00
#droppable-graphs {
2023-08-10 09:13:48 +02:00
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
}
2023-08-11 13:50:32 +02:00
.interval-div {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
margin-bottom: 10px;
}
/* Draggable */
.draggable.ui-draggable-dragging {
width: 100px;
}
.draggable {
width: 100px;
2023-08-10 09:13:48 +02:00
height: 20px;
2023-08-11 13:50:32 +02:00
background: red;
}
.draggable2 {
background: blue;
}
.draggable3 {
background: green;
}
.droppable {
width: 100%;
/* height: 20px; */
margin-bottom: 5px;
display: flex;
}
#droppable-graphs .droppable-zone {
background-color: #0077ff80;
border: 2px dashed #0077ff;
2023-08-10 09:13:48 +02:00
border-radius: 6px;
2023-08-11 13:50:32 +02:00
width: 100%;
height: 20px;
2023-08-10 09:13:48 +02:00
}
2023-08-11 13:50:32 +02:00
#droppable-graphs .drops-hover {
background-color: #82b92e80;
border: 2px dashed #82b92e;
}
#droppable-graphs .droppable.droppable-default-zone:not(.droppable-new) {
height: 70px;
2023-08-10 09:13:48 +02:00
display: flex;
flex-direction: row;
justify-content: center;
2023-08-11 13:50:32 +02:00
align-items: center;
visibility: hidden;
}
#droppable-graphs .droppable.droppable-default-zone.droppable-new {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
#droppable-graphs
.droppable.droppable-default-zone.droppable-new
> span.drop-here {
display: none;
}
#droppable-graphs .droppable.droppable-default-zone > span.drop-here {
font-size: 15pt;
font-weight: bold;
color: #0077ff;
}
#droppable-graphs
.droppable.droppable-default-zone.droppable-new.ui-droppable-active
> span.drop-here {
display: initial;
}
#droppable-graphs .droppable.droppable-default-zone.ui-droppable-active {
visibility: visible;
}
#droppable-graphs
.droppable.droppable-default-zone.ui-droppable-active.drops-hover
> span.drop-here {
color: #82b92e;
2023-08-10 09:13:48 +02:00
}