Skip to content
This repository has been archived by the owner on Nov 16, 2017. It is now read-only.

Commit

Permalink
RF-12476 Fix image resource names
Browse files Browse the repository at this point in the history
  • Loading branch information
kenfinnigan authored and bleathem committed Sep 17, 2012
1 parent a0a9531 commit 06e14a0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Expand Up @@ -16,7 +16,7 @@
}

.rf-ctx-sel {
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.gif']})";
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.png']})";
background-repeat: repeat-x;
background-position: bottom left;
background-color: '#{richSkin.additionalBackgroundColor}';
Expand Down Expand Up @@ -63,7 +63,7 @@
border-color: '#{richSkin.additionalBackgroundColor}';
background-repeat: repeat-y;
background-position: left;
background-image: "url(#{resource['org.richfaces.images:menu_list_bg.gif']})";
background-image: "url(#{resource['org.richfaces.images:menu_list_bg.png']})";
/*from additionalBackgroundColor (left) to tabBackgroundColor (right)*/
}

Expand All @@ -88,7 +88,7 @@
background-color: '#{richSkin.additionalBackgroundColor}';
background-repeat: repeat-x;
background-position: bottom left;
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.gif']})";
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.png']})";
z-index: 10;
}

Expand Down
Expand Up @@ -15,7 +15,7 @@
}

.rf-ddm-sel {
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.gif']})";
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.png']})";
background-repeat: repeat-x;
background-position: bottom left;
background-color: '#{richSkin.additionalBackgroundColor}';
Expand Down Expand Up @@ -64,7 +64,7 @@
border-radius: '#{richSkin.panelBorderRadius}';
background-repeat: repeat-y;
background-position: left;
background-image: "url(#{resource['org.richfaces.images:menu_list_bg.gif']})";
background-image: "url(#{resource['org.richfaces.images:menu_list_bg.png']})";
/*from additionalBackgroundColor (left) to tabBackgroundColor (right)*/
}

Expand All @@ -90,7 +90,7 @@
background-color: '#{richSkin.additionalBackgroundColor}';
background-repeat: repeat-x;
background-position: bottom left;
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.gif']})";
background-image: "url(#{resource['org.richfaces.images:menu_item_bg.png']})";
z-index: 10;
}

Expand Down
Expand Up @@ -22,9 +22,9 @@ org.richfaces.images\:actLeftTabBg.png=org.richfaces.renderkit.html.BaseGradient
org.richfaces.images\:actRightTabBg.png=org.richfaces.renderkit.html.BaseGradient\
{width=26, height=5, baseColorParam=generalBackgroundColor, gradientColorParam=tabBackgroundColor, horizontal=true}

org.richfaces.images\:menu_list_bg.gif=org.richfaces.renderkit.html.BaseGradient\
org.richfaces.images\:menu_list_bg.png=org.richfaces.renderkit.html.BaseGradient\
{width=22, height=3, baseColorParam=additionalBackgroundColor, gradientColorParam=tabBackgroundColor, horizontal=true}
org.richfaces.images\:menu_item_bg.gif=org.richfaces.renderkit.html.BaseGradient\
org.richfaces.images\:menu_item_bg.png=org.richfaces.renderkit.html.BaseGradient\
{width=3, height=16, baseColorParam=additionalBackgroundColor, gradientColorParam=tabBackgroundColor}
org.richfaces.images\:tabLineBg.png=org.richfaces.renderkit.html.BaseGradient\
{width=5, height=26, baseColorParam=additionalBackgroundColor, gradientColorParam=generalBackgroundColor}
Expand Down

0 comments on commit 06e14a0

Please sign in to comment.