forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
70 lines (58 loc) · 1.34 KB
/
style.scss
File metadata and controls
70 lines (58 loc) · 1.34 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
.block-editor-block-lock-modal {
z-index: z-index(".block-editor-block-lock-modal");
.components-modal__frame {
@include break-small() {
max-width: $break-mobile;
}
}
}
.block-editor-block-lock-modal__checklist {
margin: 0;
}
.block-editor-block-lock-modal__options-title {
padding: $grid-unit-15 0;
.components-checkbox-control__label {
font-weight: 600;
}
.components-base-control__field {
align-items: center;
display: flex;
}
}
.block-editor-block-lock-modal__checklist-item {
display: flex;
justify-content: space-between;
align-items: center;
gap: $grid-unit-15;
margin-bottom: 0;
padding: $grid-unit-15 0 $grid-unit-15 $grid-unit-40;
.block-editor-block-lock-modal__lock-icon {
flex-shrink: 0;
margin-right: $grid-unit-15;
fill: $gray-900;
}
&:hover {
background-color: $gray-100;
border-radius: $radius-block-ui;
}
}
.block-editor-block-lock-modal__template-lock {
border-top: $border-width solid $gray-300;
margin-top: $grid-unit-20;
padding: $grid-unit-15 0;
.components-base-control__field {
margin: 0;
}
}
.block-editor-block-lock-modal__actions {
margin-top: $grid-unit-30;
}
.block-editor-block-lock-toolbar {
.components-button.has-icon {
min-width: $button-size-small + $grid-unit-15 !important;
padding-left: 0 !important;
&:focus::before {
right: $grid-unit-10 !important;
}
}
}