博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ExtJS在FireFox汉字显示较小的解决方法
阅读量:5940 次
发布时间:2019-06-19

本文共 2686 字,大约阅读时间需要 8 分钟。

ExtJS布局在firefox浏览器中汉字显示为较小,原因是ExtJS的ext-all.css中font-size的单位为em,firefox对汉字大小的解析与其他浏览器不一致。

解决方法如下(转载):

在导入ext-all.css后,再添加ext-patch.css。

.x-window-footer {
position: relative; top: 0; right: 0;}.x-tab-strip SPAN.x-tab-strip-text {
font-size: 12px;}.x-panel-header {
font-size: 12px;}.x-tree-node {
font-size: 12px;}.x-grid3-hd-row TD {
font-size: 12px;}.x-grid3-row TD {
font-size: 12px; LINE-HEIGHT: 16px;}.x-orange-class {
background: #ffb11c;}.x-yellow-class {
background: #ff0;}.x-tip .x-tip-bd {
font-size: 12px;}.x-tip h3{
font-size: 12px;}.x-tip .x-tip-bd-inner{
font-size:12px;}.x-panel-tl .x-panel-header {
FONT: normal 12px tahoma,arial,verdana,sans-serif;}.x-form-field {
FONT: 12px tahoma,arial,helvetica,sans-serif }.x-small-editor .x-form-field {
FONT: 12px tahoma,arial,helvetica,sans-serif }.x-combo-list-item {
FONT: 12px tahoma,arial,helvetica,sans-serif; } .x-menu-list-item {
FONT: 12px tahoma,arial,sans-serif;}.x-window-tl .x-window-header {
FONT: bold 12px tahoma,arial,verdana,sans-serif; }.x-layout-split-west .x-layout-mini {
BACKGROUND-IMAGE: url(../images/mini-left.jpg); }.ext-ie .x-form-text {
margin-top:1px;} /* the textField missing bottom line */.x-form-item {
FONT: 12px tahoma,arial,helvetica,sans-serif}.x-grid-group-hd DIV {
FONT: bold 12px tahoma,arial,helvetica,sans-serif;}.x-btn-text-icon .x-btn-center .x-btn-text {
background-position:0pt 1px;background-repeat:no-repeat;padding:0px 0pt 0px 18px;}.ext-gecko .x-btn button {
padding-left:0pt;padding-right:0pt;}.x-btn button{
font-size:12px;}.x-toolbar td, .x-toolbar span, .x-toolbar input, .x-toolbar div, .x-toolbar select, .x-toolbar label {
font-size:12px;}.x-fieldset legend {
font-size:12px;}.x-tip .x-tip-body {
font-size:12px;}.controlBtn img {
cursor: pointer; }.x-grid3-summary-row{
border-left:1px solid #fff;border-right:1px solid #fff;color:#333;background: #f1f2f4;}.x-grid3-summary-row .x-grid3-cell-inner{
font-weight:bold;padding-bottom:4px;font-size:12px;}.x-grid3-cell-first .x-grid3-cell-inner{
padding-left:16px;}.x-grid-hide-summary .x-grid3-summary-row{
display:none;}.x-grid3-summary-msg{
padding:4px 16px;font-weight:bold;}.negative{
color:#dd0000;}.positive{
color:green;}.x-grid3-body .x-grid3-td-cost{
background-color:#f1f2f4;}.x-grid3-summary-row .x-grid3-td-cost{
background-color:#e1e2e4;}.x-grid3-dirty-cell{
background-image:none;}

 

 

 

转载于:https://www.cnblogs.com/m199/p/3364173.html

你可能感兴趣的文章
C语言中的随意跳转
查看>>
006-spring cloud gateway-GatewayAutoConfiguration核心配置-GatewayProperties初始化加载、Route初始化加载...
查看>>
WPF中如何将ListViewItem双击事件绑定到Command
查看>>
《聚散两依依》
查看>>
小tips:你不知道的 npm init
查看>>
Mac笔记本中是用Idea开发工具在Java项目中调用python脚本遇到的环境变量问题解决...
查看>>
Jmeter也能IP欺骗!
查看>>
Rust 阴阳谜题,及纯基于代码的分析与化简
查看>>
ASP.NET Core的身份认证框架IdentityServer4(4)- 支持的规范
查看>>
(原創) array可以使用reference方式傳進function嗎? (C/C++)
查看>>
STM32F103--(二) GPIO实践
查看>>
关于开源无线路由器的资料
查看>>
Oracle 分页
查看>>
170多个Ionic Framework学习资源(转载)
查看>>
Azure:不能把同一个certificate同时用于Azure Management和RDP
查看>>
Silverlight 控件的验证
查看>>
Directx11教程(15) D3D11管线(4)
查看>>
Microsoft Excel软件打开文件出现文件的格式与文件扩展名指定格式不一致?
查看>>
ios ble 参考
查看>>
[转]Pass a ViewBag instance to a HiddenFor field in Razor
查看>>