tintinweb / vscode-interactive-graphviz

Interactive Graphviz Dot Preview for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=tintinweb.graphviz-interactive-preview
GNU General Public License v3.0
143 stars 22 forks source link

Restyle toolbars to use theme color #80

Closed bigbug closed 2 years ago

bigbug commented 2 years ago

The toolbars for the number of search results and the error shall be restyled so that they use VS Code's theme Colors and so that they fit better into the visual appearance.

Base could be:

        .toolbar-danger {
            background-color: var(--vscode-inputValidation-errorBackground);
            border-color: var(--vscode-inputValidation-errorBorder);
            border-style: solid;
            font-size: .9em;
            margin-left: 5px;
            margin-right: 5px;
            margin-top: 3px;
            margin-bottom: 3px;
            padding: 5px;
            border-width: 1px;
        }
tintinweb commented 2 years ago

fixed with #100