EJLD
Posts: 0
Joined: Sun Jun 08, 2014 11:03 pm

item list background color

Hi There,

I am using that code to change the background color from the theme's inherent color to another color;

$(".ui-li-static-container").css("background-color", "white");

however, the shadow color around the list item itself remains as per the inherent one.
would you know that shadow name to change its color ?
I tryed "shadow-color" but it doesn't work.

$(".ui-li-static-container").css("shadow-color", "white");

isn't it ?

thk you,
Eric

obullei
Posts: 0
Joined: Thu Jun 05, 2014 12:17 am

item list background color

Hello!

Please take a look at this thread:
https://getsatisfaction.com/apperyio/...
This might be useful.

EJLD
Posts: 0
Joined: Sun Jun 08, 2014 11:03 pm

item list background color

Hi Arina, thks for your prompt reply but what you indicated to me is for handles on panels with complicate stuff.
I am only asking for the name of the shadow running around the item list.
may I ask you for a more suitable answer pls ?
Thk you in advance,
Eric

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

item list background color

Hi EJLD,

You can use following JS code to cancel shadow for all list(not list item):

pre

//Where "mobilelist_295" is your list component name.
$('[name="mobilelist_295"]').css("box-shadow", "0 0 0");

/pre

Also if you need to add this view to all list components you can use following more useful solution:

1 Add new CSS asset.

2 Populate it with following code: http://prntscr.com/5563o3/direct

pre

html body ul.ui-listview{
box-shadow: 0 0 0;
};

/pre

Also you can do the same with list items(to stylize them).

Regards.

EJLD
Posts: 0
Joined: Sun Jun 08, 2014 11:03 pm

item list background color

Hi Yurii, thks for your prompt feedback.
it looks much more related to what I am looking for :)
best,
Eric

Return to “Issues”