Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .bin/esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ const files = [
{ in: 'assets/css/default-calendar-list.css', out: 'default-calendar-list.min' },
{ in: 'assets/css/sc-welcome-pg-style.css', out: 'sc-welcome-pg-style.min' },
{ in: 'assets/generated/tailwind-output.css', out: 'tailwind.min' },
{ in: 'assets/scss/design-system.scss', out: 'design-system.min' },
{ in: 'assets/scss/connect.scss', out: 'connect.min' },
];

const defaultConfig = {
Expand Down
34 changes: 34 additions & 0 deletions assets/css/admin-post-settings.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,38 @@
.post-type-calendar {
/* Mask over Calendar Settings when no Google API key is saved */
.simcal-settings-content-wrap {
position: relative;
}

.simcal-settings-mask {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #00000099;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
Comment thread
Akhill2020 marked this conversation as resolved.
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
z-index: 10;
}

.simcal-settings-mask__message {
font-family: Poppins, sans-serif;
font-weight: 600;
font-size: 30px;
line-height: 42px;
letter-spacing: 0;
text-align: center;
color: #ffffff;
margin: 0;
padding: 0 24px;
}

#post-body-content #titlediv #title-prompt-text {
padding: 0 0 0 15px;
}
Expand Down
Loading
Loading