EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: jrnfs on June 04, 2015, 03:52:36 PM



Title: Dialog border size
Post by: jrnfs on June 04, 2015, 03:52:36 PM
Hi,

How to change the dialog/window border width?

Tks,


Title: Re: Dialog border size
Post by: jarry on June 04, 2015, 06:56:31 PM
Please try to override the window CSS styles.
Code:
<style>
  .window{
    padding:2px;
  }
  .window .window-header{
    margin-top:4px;
  }
</style>


Title: Re: Dialog border size
Post by: jrnfs on June 04, 2015, 07:07:42 PM
Tkanks