jQuery ui 将按钮更改为平面样式

jQuery ui change button to flat style

我想手动更改 jQuery ui 中的按钮以适应我的页面主题。我设法改变了颜色,字体...... 但我想要一个平面按钮,像这样:

我的按钮是这样的:

是否可以去除阴影?

这里是 css: (jquery 1.10.3)

.ui-dialog .ui-dialog-buttonpane {
        text-align: left;
        border-width: 1px 0 0 0;
        /*background-image: none;*/
        margin-top: .5em;
        padding: .3em 1em .5em .4em;
            outline: none;
            background: #a3cb38
    }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: right;
    }
.ui-dialog .ui-dialog-buttonpane button {
        /*margin: .5em .4em .5em 0;*/
        position: relative;
            top: 3px;
            left: 15px;
            width: 100px;
            height: 45px;
            cursor: pointer;
            color: #ffffff;   /* couleur police bouton */
            outline: none;
            font-family:Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
            background: #fed136;   /* couleur fond bouton */
            border-radius: 6px 6px 6px 6px; 
    }

我是新来的jquery,按钮行太多了...

这是您看到的默认按钮边框样式,像这样删除边框:

border:0;