
| Key: |
LPP-3477
|
| Type: |
Task
|
| Status: |
Open
|
| Priority: |
P2
|
| Assignee: |
Unassigned
|
| Reporter: |
Elliot Winard
|
| Votes: |
0
|
| Watchers: |
1
|
|
If you were logged in you would be able to see more operations.
|
|
|
OpenLaszlo
Created: 26/Jan/07 08:14 AM
Updated: 17/Oct/07 02:49 PM
|
|
| Component/s: |
LFC - CSS
|
| Affects Version/s: |
OL4B1
|
| Fix Version/s: |
Future
|
|
| Severity: |
Minor
|
| Runtime: |
N/A
|
| Fix in hand: |
False
|
|
CSS should support inclusion of resource
Currently, CSS-based skinning can require two files - an LZX file that includes different resources and a change to CSS file that links view to new resources.
CSS compiler should support inclusion of filesystem path in CSS -
[name='controls'] basebutton[name='close']{
closeresource:"gloss_blue_windowcontrols_close.jpg";
}
and possibly http relative and/or universal paths -
/* contact item elements */
contactitem [name='contactitembknd'] {
resource:"http:resources/gloss_blue_listitem.png";
}
|
|
Description
|
CSS should support inclusion of resource
Currently, CSS-based skinning can require two files - an LZX file that includes different resources and a change to CSS file that links view to new resources.
CSS compiler should support inclusion of filesystem path in CSS -
[name='controls'] basebutton[name='close']{
closeresource:"gloss_blue_windowcontrols_close.jpg";
}
and possibly http relative and/or universal paths -
/* contact item elements */
contactitem [name='contactitembknd'] {
resource:"http:resources/gloss_blue_listitem.png";
}
|
Show » |
|
contactitem [name='contactitembknd'] {
background:url(http://www.manisheriar.com/images/bgWrapper.jpg);
}