-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEditSection.scss
More file actions
128 lines (108 loc) · 2.19 KB
/
Copy pathEditSection.scss
File metadata and controls
128 lines (108 loc) · 2.19 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@use '@/common/styles/common.scss' as *;
.edit-section {
display: flex;
flex-direction: column;
gap: 0.313rem;
width: 100%;
padding: 0.75rem 0.938rem;
.input-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
&-field-input {
width: 100%;
}
&-group {
position: relative;
border: 1px solid $edit-group-border-color;
background-color: $edit-group-bg-color;
border-radius: 4px;
padding: 0.938rem;
padding-top: 0.313rem;
display: flex;
flex-direction: column;
gap: 0.313rem;
&-compact {
padding-top: 0.938rem;
}
&:focus-within {
box-shadow: inset 0 0 0 1px $edit-group-border-color;
}
select,
input {
font-size: 1rem;
}
.group-label {
font-size: $font-md;
font-weight: bold;
}
}
.toggle-expansion-button {
color: $blue-2f;
font-size: 0.875rem;
font-weight: bold;
text-decoration: underline;
}
.group-name-container {
display: flex;
justify-content: space-between;
margin-bottom: 0.25rem;
align-items: center;
}
.back-to-top {
position: fixed;
bottom: 1rem;
right: 1rem;
}
.entity-heading {
margin-bottom: 0.188rem;
.heading {
font-size: 1.138rem;
}
.block-heading-controls {
display: flex;
align-items: center;
gap: 0.5rem;
}
.dropdown-options {
width: 20rem;
}
}
.profile-settings-selector {
display: inline-block;
position: relative;
margin: 0;
padding: 0;
#selector-title {
font-size: $font-md;
font-weight: 700;
color: $buttonIcon;
padding-bottom: 5px;
}
&-menu {
position: absolute;
list-style: none;
z-index: 2;
top: 10px;
right: 0;
width: max-content;
padding: 15px 10px;
border: 1px solid $gray-350;
background-color: $base;
box-shadow: $menu-drop-shadow;
button {
font-size: $font-md;
font-weight: 400;
width: 100%;
justify-content: flex-start;
}
}
}
}
.edit-section-passive {
.edit-section-group {
border-color: $disabled-border-color;
background-color: $gray-50;
}
}