summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/_softwareProductDependencies.scss
blob: 5358e7c51bd59e6e749691bf4c52442955635f58 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.software-product-dependencies {
    .software-product-dependencies-title {
        @extend .heading-1;
        @extend .text-uppercase !optional;
        position: sticky;
        top: -30px;
        z-index: 1;
        background: $white;
        margin-bottom: 20px;
        color: $blue;
    }
    .select-action-table-controllers {
        position: sticky;
        top: 4px;
        z-index: 1;
        background: $white;
        justify-content: flex-end;
        cursor: pointer;
        color: $blue;
        padding-right: 27px;
        margin-bottom: 3px;
        &:hover {
            color: $dark-blue;
        }
    }
    .select-action-table-view {
        min-width: 770px;
    }
    .select-action-table-headers {
        position: sticky;
        top: 27px;
        z-index: 1;
        .select-action-table-header {
            @extend .body-1-semibold;
            color: $text-black;
        }
    }
    .select-action-table-row-wrapper {
        .svg-icon {
            &.__trashO,
            &.__plusCircle {
                fill: $dark-gray;
                &:hover {
                    fill: $black;
                }
            }
        }
    }
}