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
import Plugin from '@ckeditor/ckeditor5-core/src/plugin'; | |
import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview'; | |
import { | |
createDropdown, | |
addToolbarToDropdown | |
} from '@ckeditor/ckeditor5-ui/src/dropdown/utils'; | |
export default class MergeFields extends Plugin { | |
static get pluginName() { | |
return 'mergeFields'; | |
} |
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
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |