Skip to content

Commit

Permalink
compile scss
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Dec 17, 2024
1 parent 003cd3c commit bb11bbb
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plonetheme/barceloneta/theme/css/barceloneta.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plonetheme/barceloneta/theme/css/barceloneta.min.css.map

Large diffs are not rendered by default.

91 changes: 91 additions & 0 deletions plonetheme/barceloneta/theme/tinymce/tinymce-ui-content.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
@keyframes tox-rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.mce-content-body .mce-item-anchor {
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
}
Expand Down Expand Up @@ -637,6 +645,60 @@ table[style*="border-width: 0px"] caption,
.mce-item-table[border="0"] caption {
border: 1px dashed #bbb;
}
.tox-uc-loading-background {
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.5);
}
.tox-uc-loading-spinner-wrapper {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.tox-uc-loading-spinner {
width: min(24px, 30%);
aspect-ratio: 1;
border-radius: 50%;
border: 3px solid #006ce7;
border-bottom-color: transparent;
animation: tox-rotation 1s linear infinite;
}
.tox-uploadcare-placeholder {
all: initial;
display: inline-block;
position: relative;
width: 600px;
height: 80px;
--tox-uploadcare-placeholder--content-cursor: auto !important;
--tox-uploadcare-placeholder--content-color: rgba(34, 47, 62, 0.7);
--tox-uploadcare-placeholder--content-background-color: #fff;
--tox-uploadcare-placeholder--content-border: 2px solid #e3e3e3;
--tox-uploadcare-placeholder--content-font-family: monospace, sans-serif;
--tox-uploadcare-placeholder--content-height: 100%;
--tox-uploadcare-placeholder--content-width: 100%;
--tox-uploadcare-placeholder--content-display: inline-flex;
--tox-uploadcare-placeholder--content-align-items: center;
--tox-uploadcare-placeholder--content-justify-content: center;
--tox-uploadcare-placeholder--content-gap: 8px;
--tox-uploadcare-placeholder--icon-fill: rgba(34, 47, 62, 0.7);
--tox-uc-loading-spinner-wrapper-display-none: none;
--tox-uc-loading-spinner-wrapper-display: flex;
--tox-uc-loading-spinner-wrapper-position: absolute;
--tox-uc-loading-spinner-wrapper-top: 0;
--tox-uc-loading-spinner-wrapper-left: 0;
--tox-uc-loading-spinner-wrapper-width: 100%;
--tox-uc-loading-spinner-wrapper-height: 100%;
--tox-uc-loading-spinner-wrapper-justify-content: center;
--tox-uc-loading-spinner-wrapper-align-items: center;
--tox-uc-loading-spinner-aspect-ratio: 1 / 1;
--tox-uc-loading-spinner-width: min(24px, 30%);
--tox-uc-loading-spinner-border-radius: 50%;
--tox-uc-loading-spinner-border: 3px solid #006ce7;
--tox-uc-loading-spinner-border-bottom-color: transparent;
--tox-uc-loading-spinner-animation: tox-rotation 1s linear infinite;
}
.mce-visualblocks p,
.mce-visualblocks h1,
.mce-visualblocks h2,
Expand Down Expand Up @@ -774,6 +836,35 @@ table[style*="border-width: 0px"] caption,
.mce-shy::after {
content: '-';
}
[data-ephox-foam-a11y-violation] {
outline: 2px solid;
position: relative;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation] {
outline-width: 4px;
transition: outline-width 0.1s ease-in-out, background-color 0.1s ease-in-out;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-info] {
outline-color: #006ce7;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-warn] {
outline-color: #FFCC00;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-error] {
outline-color: #c00;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation="info"] {
outline-color: #006ce7;
background-color: #e6f0fd;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation="warning"] {
outline-color: #FFCC00;
background-color: #fffae6;
}
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation="error"] {
outline-color: #c00;
background-color: #fae6e6;
}
body {
font-family: sans-serif;
}
Expand Down

0 comments on commit bb11bbb

Please sign in to comment.