码迷,mamicode.com
首页 > 其他好文 > 详细

RAP开发入门-主题更换

时间:2015-07-09 13:08:50      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

通过配置扩展点修改应用主题

   ps:需要提前准备好主题(theme.css)文件
  <!-- 注册主题扩展点 -->
   <extension
         point="org.eclipse.rap.ui.themes">
      <theme
            file="theme/fancy/fancy.css"
            id="cn.sunline.lttsweb.application.theme"
            name="Default theme">
      </theme>
      <theme
            file="theme/business/business.css"
            id="cn.sunline.lttsweb.application.theme.business"
            name="Business theme">
      </theme>
   </extension>
   <!-- 绑定主题扩展点 -->
   <extension
         point="org.eclipse.rap.ui.branding">
      <branding
            body="body.html"
            favicon="icons/16-png.png"
            id="cn.sunline.lttsweb.application.branding"
            themeId="cn.sunline.lttsweb.application.theme.business"
            title="一体化管理平台">
      </branding>
   </extension>
css定义控件效果语法
Button[PUSH], Button[TOGGLE] {
    border: 2px solid blue;
    color: rgb( 17, 23, 103 );
    background-color: #f9f9f9;
  }
  
  Button[PUSH]:hover, Button[TOGGLE]:hover {
    background-color: white;
  }

  

RAP开发入门-主题更换

标签:

原文地址:http://www.cnblogs.com/wykCN/p/4632770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!