Skip to content
Snippets Groups Projects
dotview.css 1.32 KiB
Newer Older
html, body, #svgContainer, #svgImage {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

polygon {
    fill: none;
}

}

#svgContainer {
    position: fixed;
}


#buttonContainer {
    background: var(--vscode-editorWidget-border);
    display: flex;
    padding: 10px;
}
#buttonContainer h3 {
    align-self: center;
    flex-grow: 1;
    padding: 0;
}
#buttonContainer button {
    height: fit-content;
    width: fit-content;
    display: flex;
    margin-left: 5px;
    padding: 2px;
}


#paramContainer {
    background: var(--vscode-editorWidget-background);
    z-index: 10;
    position: fixed;
    top: 10px;
    right: 10px;
}

#paramList {
    max-width: 250px;
    max-height: 400px;
    overflow-y: scroll;
    list-style: none;
    padding: 10px;
}

#paramList li {
    display: flex;
    justify-content: space-between;
    padding: 0.15em 0;
    height: 2.5em;
}

#paramList li label {
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
}

#paramList li input[type=text] {
    max-width: 100px;
}

#paramList li input[type=checkbox] {
    outline: none;