Sha256: f21e0c1549afea91e4fa35a65d6b82177f4327e07ee90b6a7634b6e5e6b722f9
Contents?: true
Size: 1.28 KB
Versions: 5
Compression:
Stored size: 1.28 KB
Contents
// Text Editor Mixins @mixin tiny-mce-editor-input { opacity: 0; display: block; width: 100%; margin: 0; } @mixin tiny-mce-editor-basics { border: 1px solid smart-scale($panel-background, $panel-color-scale); .mce-tinymce { box-sizing: inherit; border: 0; } .mce-container { border-color: smart-scale($panel-background, $panel-color-scale); } .mce-path { padding-left: ($global-padding * 0.95); } .mce-top-part { &:before { display: none !important; } } .mce-toolbar .mce-btn-group { margin: 0; padding: ($global-padding / 3) ($global-padding / 2); border: 0; &:first-child { margin-left: -1px; } .mce-btn { &:first-child { margin-left: 0; } &:last-child { margin-right: 0; } } } .mce-menubtn.mce-fixed-width span { position: relative; top: 1px; } @at-root { .mce-panel, .mce-menu { box-shadow: none !important; } .mce-container, .mce-container *, .mce-widget, .mce-widget *, .mce-reset { font-family: $body-font-family; } } } // Text Editor Component @mixin bedrock-tiny-mce-editor { [data-tiny-mce-editor] { @include tiny-mce-editor-input; } .tiny-mce-editor { @include tiny-mce-editor-basics; } }
Version data entries
5 entries across 5 versions & 1 rubygems