123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- QWidget
- {
- font-size: 14px;
- color: #3A3F63;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- }
- QWidget#widget
- {
- background: #FFFFFF;
- border-radius: 8px 8px 8px 8px;
- }
- QWidget#widget_Top
- {
- background: transparent;
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
- border-bottom-left-radius: 0px;
- border-bottom-right-radius: 0px;
- border-bottom: 1px solid #E6E9F4;
- }
- QLabel#label_title
- {
- font-weight: 500;
- font-size: 18px;
- line-height: 24px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- QPushButton
- {
- text-align: center;
- }
- QPushButton#pBtn_close
- {
- /* border-image: url(:/ICON/ICON/Dialog_close.png); */
- background: transparent;
- border-radius: 4px;
- qproperty-icon: url(:/ICON/ICON/Close_Light.png);
- qproperty-iconSize: 20px 20px;
- }
- QPushButton#pBtn_close[Hover = true]
- {
- /* border-image: url(:/ICON/ICON/Dialog_close2.png); */
- background: transparent;
- border-radius: 4px;
- qproperty-icon: url(:/ICON/ICON/Close_pass.png);
- qproperty-iconSize: 20px 20px;
- border: 1px solid #438EFF;
- }
- /********* 普通椭圆按钮三种状态效果 *********/
- QPushButton#pBtn_cancel
- {
- border-radius: 16px;
- text-align: center;
- background: #FFFFFF;
- border: 1px solid #E6E9F4;
- color: #3A3F63;
- }
- QPushButton#pBtn_cancel:hover
- {
- text-align: center;
- background: #FFFFFF;
- border-radius: 16px;
- border: 1px solid #4458FE;
- color: #4458FE;
- }
- /********* 带有底色按钮三种状态效果 *********/
- QPushButton#pBtn_ok
- {
- border-radius: 16px;
- text-align: center;
- color:white;
- background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
- }
- QPushButton#pBtn_ok:hover
- {
- border-radius: 16px;
- text-align: center;
- color:white;
- background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
- }
|