Difference between revisions of "Patch Phone Editing the Lock Screen"

From WebOS Internals
Jump to navigation Jump to search
m (Changing the Dialer Background Image moved to Patch Phone Editing the Lock Screen: split page (moved dialer background -> dialer theme))
(No difference)

Revision as of 18:02, 31 July 2009

Editing the Lock Screen

Changing the Lock Screen background is easy as well. In fact, the image resides in the same directory as the dialer's background.

The file that you'll want to edit is the backdrop-firstuse.png file.

Simply follow the directions above for copying the files out and back into the /usr/palm/applications/com.palm.app.phone/images/ folder, reboot and your lock screen background is changed.

Background-editing-example.jpg

Editing the "Enter Number or Name..." Text Color

It was driving me slightly crazy that there's a slight greenish tint to the writing above the dialpad.

Easy fix.

Open /usr/palm/applications/com.palm.app.phone/stylesheets/dialpad.css

Change:

 .text-input.hinttext { 
  color: #bcceb3;
  font-size: 16px;
  padding: 0 60px 0 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

to:

.text-input.hinttext { 
  color: #ffffff;
  font-size: 16px;
  padding: 0 60px 0 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}