-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathstyle.scss
129 lines (112 loc) · 2.72 KB
/
style.scss
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
129
// The scrim behind the modal window.
.components-modal__screen-overlay {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba($black, 0.35);
z-index: z-index(".components-modal__screen-overlay");
display: flex;
backdrop-filter: blur($grid-unit);
// This animates the appearance of the white background.
@include edit-post__fade-in-animation();
}
// The modal window element.
.components-modal__frame {
// Use the entire viewport on smaller screens.
margin: 0;
width: 100%;
background: $white;
box-shadow: $shadow-modal;
border-radius: $radius-block-ui;
overflow: hidden;
// Have the content element fill the vertical space yet not overflow.
display: flex;
// Show a centered modal on bigger screens.
@include break-small() {
margin: auto;
width: auto;
min-width: $modal-min-width;
max-width: calc(100% - #{ $grid-unit-20 * 2 });
max-height: calc(100% - #{ $header-height * 2 });
// Animate the modal frame/contents appearing on the page.
animation: components-modal__appear-animation 0.1s ease-out;
animation-fill-mode: forwards;
@include reduce-motion("animation");
&.is-full-screen {
width: 90vw;
min-height: 90vh;
}
}
@include break-large() {
max-height: 70%;
}
}
@keyframes components-modal__appear-animation {
from {
transform: translateY($grid-unit-40);
}
to {
transform: translateY(0);
}
}
// Fix header to the top so it is always there to provide context to the modal
// if the content needs to be scrolled (for example, on the keyboard shortcuts
// modal screen).
.components-modal__header {
box-sizing: border-box;
border-bottom: $border-width solid transparent;
padding: 0 $grid-unit-40;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: $header-height + $grid-unit-20;
width: 100%;
z-index: z-index(".components-modal__header");
position: absolute;
top: 0;
left: 0;
.components-modal__header-heading {
font-size: 1.2rem;
font-weight: 600;
}
h1 {
line-height: 1;
margin: 0;
}
.components-button {
position: relative;
left: $grid-unit-10;
}
.components-modal__content.has-scrolled-content:not(.hide-header) & {
border-bottom-color: $gray-300;
}
}
.components-modal__header-heading-container {
align-items: center;
flex-grow: 1;
display: flex;
flex-direction: row;
justify-content: left;
}
.components-modal__header-icon-container {
display: inline-block;
svg {
max-width: $button-size;
max-height: $button-size;
padding: $grid-unit-10;
}
}
// Modal contents.
.components-modal__content {
flex: 1;
margin-top: $header-height + $grid-unit-20;
padding: 0 $grid-unit-40 $grid-unit-30;
overflow: auto;
&.hide-header {
margin-top: 0;
padding-top: $grid-unit-30;
}
}