-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (95 loc) · 2.17 KB
/
Copy pathstyles.css
File metadata and controls
107 lines (95 loc) · 2.17 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
/* Embedded eXeLearning editor: full-screen modal overlay + save spinner.
*
* The overlay/loading-modal class names match the markup emitted by
* amd/src/editor_modal.js (kept as `exeweb-*` from the upstream port so the
* built AMD module and these styles stay in sync without a rebuild).
*/
/* Embedded editor modal overlay. */
.exeweb-editor-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
background: #fff;
display: flex;
flex-direction: column;
}
.exeweb-editor-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 16px;
background: #f8f9fa;
border-bottom: 1px solid #dee2e6;
flex-shrink: 0;
}
.exeweb-editor-title {
font-weight: bold;
font-size: 1.1em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.exeweb-editor-buttons {
display: flex;
align-items: center;
flex-shrink: 0;
}
.exeweb-editor-iframe {
flex: 1;
border: none;
width: 100%;
}
/* Loading modal shown while a save operation is in progress. */
.exeweb-loading-modal {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.6);
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, visibility 0.2s ease;
}
.exeweb-loading-modal.is-visible {
opacity: 1;
visibility: visible;
}
.exeweb-loading-modal__content {
background: #fff;
border-radius: 8px;
padding: 32px 40px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
max-width: 320px;
width: 90%;
}
.exeweb-loading-modal__spinner {
width: 48px;
height: 48px;
margin: 0 auto 16px;
border: 4px solid #dcdcde;
border-top-color: #0f6cbf;
border-radius: 50%;
animation: exeweb-spin 0.8s linear infinite;
}
@keyframes exeweb-spin {
to {
transform: rotate(360deg);
}
}
.exeweb-loading-modal__title {
margin: 0 0 8px;
font-size: 16px;
font-weight: 600;
color: #1d2125;
}
.exeweb-loading-modal__message {
margin: 0;
font-size: 13px;
color: #6a737d;
}