CSS for the admin
-
Hi,
the Custom CSS option is only for the front-end if I get it right. However, it would be great if there would be a similar textarea for the admin, or a dedicated CSS file that would be pulled in if it exists.
Currently I’m using this devtools “snippet” to quickly resize textareas and highlight the active row:
var sheet = (function() { var style = document.createElement("style"); style.appendChild(document.createTextNode("")); document.head.appendChild(style); return style.sheet; })(); sheet.insertRule("tr.focus td { background: #69A8BB; }", 0); sheet.insertRule("textarea { min-width: 360px !important; min-height: 96px; }", 0); sheet.insertRule("tr td:nth-child(3) textarea { min-width: 600px !important; }", 0);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘CSS for the admin’ is closed to new replies.