aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/common/_customVariables.scss
blob: 5e5bef8438285b725b8ab5a593ed4a0168ea3f8d (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
$cursor-disabled: not-allowed !default;
$cursor-pointer: pointer;

$camunda-panel-error-border-color: #cc3333;
$camunda-panel-error-background-color: #f0c2c2;

@mixin body-1-emphasis() {
    @include base-font-semibold;
    font-size: $body-font-1;
}

@mixin heading-1-emphasis() {
    @include base-font-semibold;
    font-size: $heading-font-1;
}

.flex {
    display: flex;
    flex: 1;
}

.flex-column {
    @extend .flex;
    flex-direction: column;
}

.text-uppercase {
    text-transform: uppercase;
}

.content-area {
    padding: 30px 60px 70px 60px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    &.no-padding-content-area {
        padding: 0;
    }
}

.page-title {
    @include heading-1;
    @extend .text-uppercase !optional;
    margin-bottom: 20px;
    color: $blue;
}

.disabled {
    opacity: 0.7 !important;
    cursor: $cursor-disabled;
}