2

我正在使用 jquery ui 对话框并使用 jquery 添加按钮,如下所示:

 $("#151").dialog({
                autoOpen: false,
                autoResize: true,
                buttons: {
                    "OK": function () {
                        jQuery(this).dialog('close');
                    }
                }
                ,
                open: function () {
                    $('.ui-dialog-buttonset').find('button:contains("OK")').focus();
                    $('.ui-dialog-buttonset').find('button:contains("OK")').addClass('customokbutton');
                }
            });

和 custombutton 类看起来像这样:

.customokbutton { 
    text-indent: -9999em; /* hides the text */
    color: transparent; /* also hides text */
    background-image: url(images/login-icon.png); /*replaces default image */
     background-repeat: no-repeat; 
    background-color: transparent;  
    background-repeat: no-repeat;   
    cursor: pointer;  
    border:none;
    height:30px;
    outline: none;
}

但是当我把鼠标放在按钮上时,它会有点向下和向右。我看到使用 Firebug 时,当我将鼠标移开时会添加以下 css 类(更改位置)

<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only customokbutton" role="button" aria-disabled="false"><span class="ui-button-text">OK</span></button>

当我将鼠标悬停在按钮上时,这个:

<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only customokbutton ui-state-hover" role="button" aria-disabled="false"><span class="ui-button-text">OK</span></button>

而css是这样的:

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #707070;
/*  background: #dadada;*/
    font-weight: normal;
    color: #212121;
}

我该如何解决?

4

1 回答 1

0

它很大程度上取决于主题,但似乎ui-state-hoverjQuery CSS 中有一个 1px 边框:

border: 1px solid #fbcb09;

CSS在这里:http ://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/themes/ui-lightness/jquery-ui.css

也许这就是将按钮向右和向下移动 1px 的原因。您可以尝试border: none;在 CSS 中强制执行该属性,如下所示:

.customokbutton { 
  [...]
  border:none !important;
  [...]
}
于 2013-05-03T15:25:40.313 回答