I see the styling_content in the wp_postmeta table and it contains the expected CSS code in the meta_value field.
Additional info:
When reviewing the /plugins/visual-editor-customer/buttons/js/button-1-1.js that was created for my new button, the code does not appear to include any reference to the CSS that was set in the Edit Button interface.
Should the CSS appear somewhere in this JS file ?
(function() {
tinymce.create('tinymce.plugins.vecb_button1', {
init : function(ed, url) {
ed.addButton('vecb_button1', {
title : 'SHNAD1',image : 'http://www.skirtcollective.com/wp-content/uploads/vecb/ad-btn-1.png',onclick : function() {
ed.selection.setContent('<!--shnad1-->');
}
});
},
createControl : function(n, cm) {
return null;
},
});
tinymce.PluginManager.add('vecb_button1', tinymce.plugins.vecb_button1);
})();