1. 标签栏第一个左边有6px的竖杠
修改"ui\main\tabbar\index.css"下
1.tabbar .bottom-wrapper:first-child{2    width: 6px;3}
为
1.tabbar .bottom-wrapper:first-child{2    width: 0;3}
2.修改page.dat ,更改透明度
01/*div#ad-banner{display:none!important}*/02div.ad-banner{opacity: 0.1!important}03div.ad-banner:hover{opacity: 0.9!important}04a.dial{opacity: 0.3!important}05a.dial:hover{opacity: 0.9!important}06div.search{opacity: 0.3!important}07div.search:hover{opacity: 0.8!important}08div.header-tab{opacity: 0.3!important}09div.header-tab:hover{opacity: 0.8!important}10div.customize{opacity: 0.3!important}11div.customize:hover{opacity: 0.8!important}12li{opacity: 0.3!important}
3.修改静音图标,不显示文字
"ui\main\statusbar\buttons.htm"下 注释掉
1<div class="text">$PageMuted$</div>
4.地址栏添加系统信息、放大缩小
"ui\main\navbar\addressbox.htm"下 添加如下代码
01<!-- Status message (在地址栏显示系统信息)-->02<div class="pack sysinfo">03    <div class="separator" />04    <div class="sysinfo-container" mx-object="statusbar.toolsContainer"/>05    <div class="separator" />06</div>07<!-- 添加代码:zoom -->08<div class="pack zoom">09    <!-- 添加代码:zoom.out -->10    <div class="item zoom-out" mx-click="zoom.out" tooltip="$zoom.outmce_markerlt;span mx-hotkey-label='   ({zoom.out})'/>">11        <div class="icon" style="foreground-image: url(images/i_s_zoom_out.png);"/>12    </div>13    <!-- 添加代码:zoom.percent -->14    <div class="item zoom-percent" mx-click="zoom.switch" mx-listen="pageZoomed" tooltip="$zoom.actualmce_markerlt;span mx-hotkey-label='   ({zoom.actual})'/>">15        <div class="text" mx-object="zoom.factor">100%</div>16    </div>17    <!-- 添加代码:zoom.in -->18    <div class="item zoom-in" mx-click="zoom.in" tooltip="$zoom.inmce_markerlt;span mx-hotkey-label='   ({zoom.in})'/>">19        <div class="icon" style="foreground-image: url(images/i_s_zoom_in.png);"/>20    </div>21</div>
No comments:
Post a Comment