aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.scss
blob: e46e84c1da611e53eae707b1fd7c6000f7db30d4 (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
.wf-catalog {
    background-color: $light-silver;
    height: 100%;
    display: flex;
    flex-direction: column;
    .header {
        align-items: center;
        display: flex;
        justify-content: flex-end;
        background-color: $silver;
        margin-bottom: 2px;
        @include box-shadow(0px 1px 3px 0 rgba(0, 0, 0, 0.2));
        padding: 8px 60px 0 60px;
        &__search {
            height: 25px;
        }
    }
    .main {
        flex: 1;
        &__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 60px;
            &__total {
                @include body-1-semibold;
                color: $dark-gray;
            }
            &__order {
                display: flex;
                &__label {
                    @include body-1-semibold;
                    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;
            }
            &:hover {
                color: $blue;
                .svg-icon-wrapper {
                    color: $blue;
                    fill: $blue;
                }
            }
        }
    }
}