-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathOverwriteConfirmDialog.scss
More file actions
61 lines (52 loc) · 971 Bytes
/
OverwriteConfirmDialog.scss
File metadata and controls
61 lines (52 loc) · 971 Bytes
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
@import "../../styles/variables";
.overwrite-confirm-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.overwrite-confirm-dialog {
border-radius: 4px;
min-width: 350px;
max-width: 500px;
overflow: hidden;
}
.dialog-header {
padding: 16px 20px;
border-bottom: 1px solid $border-color;
h2 {
margin: 0;
font-size: 18px;
font-weight: 600;
}
}
.dialog-content {
padding: 20px;
p {
margin: 0 0 12px 0;
font-size: $fm-font-size;
line-height: 1.5;
word-break: break-word;
&:last-child {
margin-bottom: 0;
}
&.filename {
font-weight: 600;
padding: 8px;
border-radius: 3px;
}
}
}
.dialog-actions {
padding: 16px 20px;
border-top: 1px solid $border-color;
display: flex;
gap: 8px;
justify-content: flex-end;
}