aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/_permissions.scss
blob: e652d9d82fdf5d4173e38539099651241f195972 (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
.modal-content {
	.modal-body {
		.manage-permissions-page {
			.validation-form-content {
				overflow-y: visible;
			}

			.manage-permissions-title {
				@extend .body-1-semibold;
				margin-bottom: 10px;
			}
			.owner-details {
				@extend .body-2;
				display: flex;
				margin-bottom: 30px;
				.change-owner {
					margin-left: auto;
					color: $blue;
					cursor: pointer;
					&:hover {
						color: $dark-blue;
					}
				}
			}
			.change-owner-wrapper {
				.form-group {
					margin-bottom: 30px;
				}

			}
			.change-owner-title {
				display: flex;
				align-items: center;
				margin-bottom: 10px;
				.manage-permissions-title {
					margin-bottom: 0;
				}
				.svg-icon-wrapper {
					margin-left: 5px;
					.svg-icon {
						width: 13px;
						height: 13px;
						fill: $dark-gray;
					}
				}
			}
			.contributors-select {
				.Select-menu {
					max-height: 150px;
					overflow-y: auto
				}
			}
		}
	}
}