aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.scss
blob: c5c320306fb8ab22e40c7f5804bac494bd0241b4 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
.wf-catalog {
    overflow: auto;
    background-color: $light-silver;
    grid-template-rows: 35px 1fr;
    height: 100vh;
    padding-bottom: 20px;
    .header {
        align-items: center;
        display: flex;
        justify-content: space-between;
        background-color: $silver;
        margin-bottom: 2px;
        @include box-shadow(0px 1px 3px 0 rgba(0, 0, 0, 0.2));
        padding: 8px 60px 0 0px;
        .wf-status-select {
            
            display: grid;
            width: 200px;
            height: 34px;
            margin-top: -8px;            
            background-color: $light-silver;
            color: $blue;
        }
        &__search {
            height: 25px;
        }
    }
    .main {
        &__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 60px;
            &__total {
                @include body-1;
                color: $dark-gray;
            }
            &__order {
                display: flex;
                &__label {
                    @include body-1;
                    color: $dark-gray;
                }
                &__alphabetical {
                    cursor: pointer;
                    display: flex;
                    &__label {
                        margin-left: 5px;
                        @include body-1;
                        color: $blue;
                    }
                    &__icon {
                        display: flex;
                        align-items: center;
                        margin-left: 5px;
                        .svg-icon {
                            width: 9px;
                            height: 9px;
                        }
                        &--flip {
                            transform: rotate(180deg);
                        }
                    }
                }
            }
        }
        &__content {
            display: grid;
            grid-template-columns: repeat(auto-fit, 204px);
            grid-gap: 20px;
            padding: 0 60px;
        }
        .add-workflow {
            border: 2px dashed #a8b3b9;
            width: 204px;
            height: 204px;
            padding: 10px;
            box-sizing: border-box;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: $gray;
            &__icon {
                color: $gray;
                fill: $gray;
            }
            &__label {
                text-transform: uppercase;
                @include body-1-emphasis;
            }
            &:hover {
                color: $blue;
                .svg-icon-wrapper {
                    color: $blue;
                    fill: $blue;
                }
            }
        }
    }
}