Replies: 1 comment
-
|
Agreed, console font-size feels unnecessarily small, and at some point applied a local "fix" for myself and mostly forgot about it. Workaround: I use the Stylus-browser plugin to add minor style changes to various sites, and it also works for some elements created by other browser extensions like SNUtils.
This is the CSS I use for slightly increasing the CSS for the SNUtils console: /* increase font */
input.snutils#snufilter{
font-size: 12pt !important;
}
ul#snuhelper{
span.cmdlabel{
font-size: 9pt !important;
}
span.cmdkey{
font-size: 10pt !important;
}
}
div#snuswitches{
div.cmdlabel{
font-size: 10pt !important;
}
}If you end up using Stylus, below is a import-ready version for Stylus, which includes some other of my minor adjustments to SNUtils looks. @-moz-document domain("https://service-now.com"), url-prefix("https://now.example.com"), url-prefix("https://nowtest.example.com") {
/* CMD console */
/* increase font */
input.snutils#snufilter{
font-size: 12pt !important;
}
ul#snuhelper{
span.cmdlabel{
font-size: 9pt !important;
}
span.cmdkey{
font-size: 10pt !important;
}
}
div#snuswitches{
div.cmdlabel{
font-size: 10pt !important;
}
}
div#snudirectlinks{
max-width: 90vw !important;
}
}
@-moz-document domain("https://service-now.com"), url-prefix("https://now.example.com"), url-prefix("https://nowtest.example.com") {
/* Select & other */
/* easier select on technical names */
span.label-snu,
span.snuwrap span,
div.snuwrap,
span#snuinfo div div{
user-select: all;
}
/* selected cells for /copycells stand out more */
td.list_edit_selected_cell{
background-color: #b7cce3 !important;
border: dashed 1px #063e7b;
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Appologies if I missed it while searching.
Is there a way to change the font size of the slashcommand popup besides zooming in the whole window?
The SN pages are a good size for me, but the menu font is just a hair too small for these eyes.
Environment details
Beta Was this translation helpful? Give feedback.
All reactions