Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 328158
Collapse All | Expand All

(-)a/runtime.ui/org.eclipse.rap.demo/plugin.xml (-1 / +1 lines)
Lines 8-14 Link Here
8
    <theme
8
    <theme
9
        id="org.eclipse.rap.demo.alttheme"
9
        id="org.eclipse.rap.demo.alttheme"
10
        name="Alternative Demo Theme"
10
        name="Alternative Demo Theme"
11
        file="theme1/theme.css"/>
11
        file="theme1/listItemGradient.css"/>
12
  </extension>
12
  </extension>
13
  
13
  
14
  <extension
14
  <extension
(-)a/runtime.ui/org.eclipse.rap.demo/theme1/listItemGradient.css (+3 lines)
Added Link Here
1
List-Item:selected {
2
  background-image: gradient(linear, left top, left bottom, from(#83ACDF), to(#608CCA) );
3
}
0
   328158: support gradient for list-item
4
   328158: support gradient for list-item
(-)a/runtime.rwt/org.eclipse.rap.rwt.q07/js/org/eclipse/swt/theme/AppearancesBase.js (+2 lines)
Lines 655-660 qx.Theme.define( "org.eclipse.swt.theme.AppearancesBase", Link Here
655
      };
655
      };
656
      result.textColor = tv.getCssColor( "List-Item", "color" );
656
      result.textColor = tv.getCssColor( "List-Item", "color" );
657
      result.backgroundColor = tv.getCssColor( "List-Item", "background-color" );
657
      result.backgroundColor = tv.getCssColor( "List-Item", "background-color" );
658
      result.backgroundImage = tv.getCssImage( "List-Item", "background-image" );
659
      result.backgroundGradient = tv.getCssGradient( "List-Item", "background-image" );
658
      return result;
660
      return result;
659
    }
661
    }
660
  },
662
  },
(-)a/runtime.rwt/org.eclipse.rap.rwt/src/org/eclipse/swt/internal/widgets/listkit/List.theme.xml (+2 lines)
Lines 40-45 Link Here
40
      <property name="color"
40
      <property name="color"
41
          description="Text color for list items." />
41
          description="Text color for list items." />
42
42
43
      <property name="background-image" />
44
43
      <property name="background-color"
45
      <property name="background-color"
44
          description="Background color for list items." />
46
          description="Background color for list items." />
45
47

Return to bug 328158