|
Re: Icon text font too small in Activities
Hi Taamir,
Here's what I wrote up for my own documentation:
Increase the Panel (top line of desktop) font to 13pt. Edit the font-size setting in
the /usr/share/gnome-shell/theme/gnome-shell.css file as follows:
/* Panel */
#panel {
color: #ffffff;
background-color: black;
border-image: url("panel-border.svg") 1;
font-size: 13pt;
height: 1.86em;
}
Increase the Activities->Applications icon caption font to 12pt. Edit the font-size setting in
the /usr/share/gnome-shell/theme/gnome-shell.css file as follows:
/* Apps */
.app-well-app > .overview-icon,
.remove-favorite > .overview-icon,
.search-result-content > .overview-icon {
border-radius: 4px;
padding: 3px;
border: 1px rgba(0,0,0,0);
font-size: 12pt;
color: white;
transition-duration: 100;
text-align: center;
}
Increase the application well item menu font to 12pt. Edit the font-size setting in
the /usr/share/gnome-shell/theme/gnome-shell.css file as follows:
/* Apps */
.app-well-menu {
font-size: 12pt;
}
Increase the Activities->Windows icon caption font to 12pt. Edit the font-size setting in
the /usr/share/gnome-shell/theme/gnome-shell.css file as follows:
/* Overview */
.window-caption {
background: rgba(0,0,0,0.8);
border: 1px solid rgba(128,128,128,0.40);
border-radius: 10px;
font-size: 12pt;
padding: 2px 8px;
-shell-caption-spacing: 4px;
}
Increase the application well tooltip font size to 1.30em. Edit the font-size setting in the
/usr/share/gnome-shell/theme/gnome-shell.css file as follows:
(near top of file)
StTooltip StLabel {
border: 1px solid rgba(255,255,255,0.6);
border-radius: 5px;
padding: 2px 12px;
background-color: rgba(0,0,0,0.9);
color: #ffffff;
font-size: 1.30em;
font-weight: normal;
text-align: center;
}
When finished, restart gnome-shell by typing 'r' and then ENTER in the ALT-F2
run dialog.
======================
Let me know if you have further questions.
Brad
|