How to hide the formatting toolbar for an html variable on catalog item?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2020 12:28 AM
How to hide the formatting toolbar for an html variable on catalog item?
expected output is
Labels:
- Labels:
-
Service Catalog
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2025 10:45 AM
The following code works for me 😏 (Yokohama patch2-hotfix2)
function onLoad() {
var sheet = top.window.document.styleSheets[0];
sheet.insertRule('.tox-editor-header { display: none !important; }', sheet.cssRules.length);
}