[SOLVED]Logon screen text color

Where can I change the text color of the sentence I have circled?

I use Ubuntu Gnome 14.10

Hälsningar från Sverige!

The look of the login screen is determined by your system wide gnome shell theme in /usr/share/gnome-shell/theme (default theme) or in /usr/share/themes/[theme name] (for custom themes). To change the look of the circled text, just modify the following section in gnome-shell.css:

.login-dialog-not-listed-label {
font-size: 10.5pt;
font-weight: bold;
color: #666666;
padding-top: 1em;
}

1 Like

Nice! Thanks, will check that out! SKÅL!

Worked great!

Nice!

You probably already noticed, but I forgot about the section that specifies the color when hovering with the mouse:

.login-dialog-not-listed-button:focus .login-dialog-not-listed-label,
.login-dialog-not-listed-button:hover .login-dialog-not-listed-label {
color: #E8E8E8;
}