Background color

Moderator: crythias

Locked
Karti
Znuny newbie
Posts: 5
Joined: 17 Oct 2011, 09:47
Znuny Version: 3
Real Name: Kartikesvary
Company: Evino group of company

Background color

Post by Karti »

How to change the background color of (Don't work with UserID 1 (System account)! Create new users!) this message in the OTRS system. Please help me and give a clear path to change the color . I could not identify the path and also where the color code located . Thank you.
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Background color

Post by crythias »

in Chrome, you can right-click on it and inspect element. But the better answer is that you won't see it if you do what it says.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Background color

Post by crythias »

ok, ok :)
Kernel/Output/HTML/NotificationUIDCheck.pm says

Code: Select all

    return $Self->{LayoutObject}->Notify(
        Priority => 'Error',
        Link     => '$Env{"Baselink"}Action=AdminUser',
        Data     => '$Text{"Don\'t work with UserID 1 (System account)! Create new users!"}',
Kernel/Output/HTML/Layout.pm says

Code: Select all

    if ( $Param{Priority} && $Param{Priority} eq 'Error' ) {
        $BoxClass = 'Error';
    }
var/httpd/htdocs/skins/Agent/default/css/Core.Default.css says

Code: Select all

.Error {
    color: #ff505e;
}
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Locked