aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/features/_composition.scss
blob: b2b701b2d4de945ad9b0d392aeb4158b0407b36f (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
.composition-view {
	display: flex;
	width: 100%;

	.bpmn-container {
		flex-basis: 100%;
		flex-grow: 1;
		.djs-palette.open {
			border: none;
		}
		.djs-palette-entries {
			border: solid 1px $light-gray;
			&:empty {
				border: none;
			}
		}
	}
	.bpmn-sidebar {
		background-color: $light-silver;
		height: 100%;
		width: 320px;

		label {
			@include body-1;
		}
		.group-label {
			@include heading-4-emphasis;
			font-size: 110%;
		}
		.properties-panel {
			background-color: $light-silver;
			overflow-y: auto;
			max-height: calc(100vh - 70px);
			&, .bpp-properties-panel {
				[disabled], [editable-readonly=false] {
					background-color: $light-gray;
					color: $dark-gray;
                    pointer-events: none;
				}
				label[for] {
					cursor: default;
					background: transparent;
				}
				background-color: $light-silver;
				#camunda-activitySelect-select {
					&.invalid {
						border-color: $camunda-panel-error-border-color;
						background-color: $camunda-panel-error-background-color;
					}
				}
			}
		}
		[editable-readonly] {
			font-family: OpenSans-Regular, Arial, sans-serif;
			font-style: normal;
			font-weight: 400;
			font-size: 14px;
			box-sizing: border-box;
		}

		.composition-buttons {
			position: fixed;
			background-color: $light-silver;
			left: 265px;
			bottom: 46px;
			border: 1px solid $light-gray;
			width: 189px;
			display: flex;
			flex-direction: row;
			justify-content: space-around;
			height: 57px;
			align-items: center;
			padding: 10px;
			.divider {
				height: 35px;
    			border: 1px solid $light-gray;
			}
			.diagram-btn {
				
				&:hover {
					fill: $blue;
					cursor: pointer;
				}
				&.disabled {
					fill: $gray;
				}
				.svg-icon {
					width: 25px;
				    height: 23px;
				}
			}
		}
	}
}