summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/topologies/map/controls/Toolbar.module.scss
blob: 0d505accd871978adbd69a407b8439b9015df007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.toolBar {
    position: absolute;
    bottom: var(--pf-global--spacer--md);
    left: var(--pf-global--spacer--xl);
}

.control {
    &:global(.pf-m-tertiary) {
        margin-right: var(--pf-global--spacer--xs);
        margin-top: var(--pf-global--spacer--xs);
        background-color: var(--pf-global--BackgroundColor--100);
        border: none;
        border-radius: var(--pf-global--BorderRadius--sm);
        box-shadow: var(--pf-global--BoxShadow--sm);

        &:not(:global(.pf-m-disabled)) {
            background-color: var(--pf-global--BackgroundColor--100);
        }

        &:after {
            display: none;
        }

        &:hover {
            border: none;
            box-shadow: var(--pf-global--BoxShadow--md);
        }
    }
}