123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- QLabel#label_tip
- {
- font-weight: 400;
- font-size: 14px;
- color: rgba(58,63,99,0.8);
- line-height: 21px;
- text-align: left;
- font-style: normal;
- }
- /* ==========================================================
- * QLineEdit
- * ========================================================== */
- QLineEdit
- {
- background: #FFFFFF;
- border-radius: 4px;
- border: 1px solid #E6E9F4;
- padding-left: 12px;
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- QLineEdit:hover,QLineEdit:focus
- {
- border: 1px solid #4458FE;
- }
- /* ==========================================================
- * QPushButton
- * ========================================================== */
- QPushButton
- {
- font-weight: 500;
- font-size: 14px;
- text-align: center;
- }
- /* QPushButton#pBtn_close
- {
- background: transparent;
- border-radius: 4px;
- qproperty-icon: url(:/ICON/ICON/Close_Light.png);
- qproperty-iconSize: 20px 20px;
- }
- QPushButton#pBtn_close[Hover = true]
- {
- background: transparent;
- border-radius: 4px;
- qproperty-icon: url(:/ICON/ICON/Close_pass.png);
- qproperty-iconSize: 20px 20px;
- border: 1px solid #4458FE;
- } */
- /********* 普通椭圆按钮三种状态效果 *********/
- /* QPushButton#pBtn_cancel, #pBtn_saveTotemplate
- {
- background: transparent;
- color: #3A3F63;
- border: 1px solid #E6E9F4;
- border-radius: 16px;
- }
- QPushButton#pBtn_cancel:hover, #pBtn_saveTotemplate:hover
- {
- background: transparent;
- color: #4458FE;
- border: 1px solid #4458FE;
- border-radius: 16px;
- } */
- /********* 带有底色椭圆按钮三种状态效果 *********/
- /* QPushButton#pBtn_ok
- {
- color:white;
- background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
- border-radius: 16px;
- }
- QPushButton#pBtn_ok:hover
- {
- color:white;
- background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
- border-radius: 16px;
- } */
- /********* 普通方框按钮三种状态效果 *********/
- QPushButton
- {
- background: transparent;
- color: #3A3F63;
- border: 1px solid #E6E9F4;
- border-radius: 4px;
- }
- QPushButton:hover
- {
- background: transparent;
- color: #4458FE;
- border: 1px solid #4458FE;
- border-radius: 4px;
- }
- /********* 带有底色方框按钮三种状态效果 *********/
- /* QPushButton#pBtn_addPlan
- {
- color:white;
- background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF);
- border-radius: 4px;
- }
- QPushButton#pBtn_addPlan:hover
- {
- color:white;
- background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF);
- border-radius: 4px;
- } */
|