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

	.bpmn-container {
		flex-basis: 100%;
		flex-grow: 1
	}
	.bpmn-sidebar {
		height: 100%;
		.properties-panel {
			&, .bpp-properties-panel {
				height: 100%;
			}
		}
		.composition-buttons {
			position: fixed;
			background-color: #fafafa;
			left: 265px;
			bottom: 46px;
			border: 1px solid lightgray;
			width: 189px;
			display: flex;
			flex-direction: row;
			justify-content: space-around;
			height: 57px;
			align-items: center;
			padding: 10px;
			.divider {
				height: 35px;
    			border: 1px solid $silver;
			}
			.diagram-btn {
				
				&:hover {
					fill: $blue;
					cursor: pointer;
				}
				.svg-icon {
					width: 25px;
				    height: 23px;
				}
			}
		}
	}
}