-
Matthias Konitzny authored
3DCSSSprites no longer block events from propagating to the scene controls, making zooming a much smoother experience. Partially related to #8.
Matthias Konitzny authored3DCSSSprites no longer block events from propagating to the scene controls, making zooming a much smoother experience. Partially related to #8.
display.css 4.96 KiB
#3d-graph {
display: flex;
}
.detail-view-info-area::-webkit-scrollbar {
width: 6px;
background-color: #f5f5f5;
}
.detail-view-info-area::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #f5f5f5;
}
.detail-view-info-area::-webkit-scrollbar-thumb {
background-color: darkgray;
}
.bottom-container-tab-content::-webkit-scrollbar {
width: 6px;
height: 8px;
background-color: #f5f5f5;
}
.bottom-container-tab-content::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #f5f5f5;
}
.bottom-container-tab-content::-webkit-scrollbar-thumb {
background-color: darkgray;
}
.node-container {
pointer-events: none;
}
.node-label {
font-size: 14px;
color: white;
font-weight: bold;
/*text-align: center;*/
padding: 1px 4px;
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.7);
user-select: none;
z-index: 1;
pointer-events: none;
}
.no-select {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
cursor: default;
}
.close-button {
pointer-events: all;
z-index: 99;
cursor: pointer;
right: 30px;
top: 5px;
position: absolute;
font-size: 20px;
}