Customise Tinymce Fullscreen - ruby-on-rails-3

I really like Wordpress' "Distraction free editing mode"
and don't like tinymce's default "fullscreen mode"
Is there a plugin that I don't know of that is available for tinymce to allow for this? By this I mean:
spacing on the margins
An outline that appears around content
A toolbar that appears upon hover
A save button that appears upon hover
Or, which I think is more likely, will I just have to style it myself?

I am not sure, because i am not much into wordpress, but their functionality is probably a tinymce plugin of their own. You could search for the tinymce plugin folder in a wordpress installation and copy the plugin you need from there.

Related

How to change the toolbar and icons scale in IntelliJ IDEA?

It seems to me that in my IDE everything is too petty. I would like there to be a font about the same as inside the editor. How can I do it?
And how can I increase the scale of the launch icons? Although I see everything perfectly, it seems inconvenient for me.
IntelliJ IDEA user interface/icons are scaled automatically depending on the system DPI/scaling settings.
You can try to override it in Help | Edit Custom VM Options (effective after IDE restart):
-Dide.ui.scale=1.5
Menu/toolbar font/size can be overridden in the IDE Appearance settings:
More details can be found in this document.

VSCode GUI theming: How to slim down pane tabs?

Hi,
Is it possible to make the tabs shorter?
In the theme I'm working in, the way they look by default they are too tall and look out of place.
I already looked into VSCode settings but couldn't find any property associated to their height.
No. As of VS Code 1.19, you cannot customize the height of the tabs using a theme
This type of customization would probably fall under this feature request

Edit Shopify Admin Area

Can I add additional links to the Shopify admin panel? (ie. under Apps and Settings)? It would be great to include a link straight to the edit HTML/CSS screen instead of navigating via Themes - '...' - Edit HTML/CSS. It will help speed-up the development process when working in the browser direct.
Its in the settings_schema.json. When you go to your themes, choose edit css/html, then find the config section on the left. Expand if necessary and find the file settings_schema.json. You can edit this file to create custom items that you can modify through the admin dashboard by choosing the "customize theme" option.
Basically, you can customize the customize theme area. :)
To address your specific situation, I would create a checkbox in the theme admin to enable/disable a link to what you are looking for. Then could code into the theme somewhere to display that link if it is enabled and other conditions are met. This is optional however, as you could just directly add this code to the theme as well without the enable/disable functionality, just makes it a little cleaner. I'm including the info about settings_schema.json to help others as well.
Summary:
In the admin dashboard click Online Store
Then Click Themes
Next Click the little ... button and choose Edit HTML/CSS
In the left column find the config section and expand it
Click settings_schema.json to edit the file and customize theme admin
Hope this helps someone :)
Shopify is a SaaS or fully hosted (cloud) solution. The admin panel can't be modified "out of the box". You could write a userscript (JavaScript injection) which would alter the Shopify Admin for you. Tampermonkey will help you!
Shopify has a pretty great desktop editor you can download, and directly open your HTML and CSS files in your text editor. When you save, the changes are automatically pushed live to the theme.
https://apps.shopify.com/desktop-theme-editor

Preference bundle icon for theos tweak

possibly an easy answer to this.?
I have a theos built tweak with a preference bundle displayed in the settings app.
This allows me to activate / deactivate my tweak.
My question is, how do you put an icon on the main settings app list along side the title.
I can put an icon by the switch, but thats it.
I have not included any code as the preference bundle is working, it just doesn't have an icon.
The default way to do this is to drag your icon named icon.png into /Resources/.
If you want, you can rename it by editing icon entry in your /layout/Library/PreferenceLoader/Preferences/<yourbundlename>.plist file.

Editor context Menu - Eclipse-RCP

I have an Eclipse RCP application. I have created an Editor. There are few context menu (default), when I right click on the Editor. I have not created these menus.
Please let me know, How to remove the context menu of the Editor?
It needs different approach by which editor you extends.
Let me know What you extends, than I can answer more efficient one.
In general way:
IWorkbenchParSite#registerContextMenu(...) will be used, So find where calls that, override it. It is not recommend. Because by doing this, Menu Extensions which is contributed for your editor will not work anymore.
If you mean the system menu that appears on editor tabs and view tabs, that menu is provided by the presentation (2.1, Classic, Default, etc). There is no tweak to simply modify it.
The 2 ways to remove it would be:
write your own presentation, using
the
org.eclipse.ui.presentations.StackPresentation
API and matching extension point.
Writing a presentation is a involved
undertaking.
Change the internal classes in the
org.eclipse.ui.workbench plugin
and patch that plugin in your RCP
app.
If you use Text or StyleText you will get the system default menu (cut,copy,paste, maybe something about encoding or input). If you are not going to supply your own menu, simply create an empty SWT Menu and set it:
Menu emptyMenu = new Menu(text);
text.setMenu(emptyMenu);
Eclipse also has a text editing framework, if you need more than a basic text box you should check it out. http://wiki.eclipse.org/The_Official_Eclipse_FAQs#Text_Editors