-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0463cf2
commit 2e0af3a
Showing
2 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 35 additions & 1 deletion
36
projects/plugins/jetpack/modules/custom-css/custom-css/css/blank.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,35 @@ | ||
/* */ | ||
/* */ | ||
.jp-custom-css__deprecation-warning { | ||
position: absolute; | ||
top: 2.5rem; | ||
left: 50%; | ||
z-index: 99999; | ||
transform: translateX( -50% ); | ||
|
||
display: flex; | ||
align-items: flex-start; | ||
width: 80ch; | ||
|
||
background-color: #fef8ee; | ||
border: solid 1px #ccc; | ||
border-left: solid 5px #f0b849; | ||
box-shadow: 0 0 4px 4px rgba( 0, 0, 0, 0.1 ); | ||
|
||
font-size: 1rem; | ||
} | ||
|
||
.jp-custom-css__deprecation-warning p { | ||
margin: 0; | ||
padding: 1em; | ||
} | ||
|
||
.jp-custom-css__deprecation-warning button { | ||
min-width: 48px; | ||
min-height: 48px; | ||
|
||
border-color: transparent; | ||
background-color: transparent; | ||
|
||
font-size: 1.25rem; | ||
font-weight: bold; | ||
} |