123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- QWidget#widget
- {
- border-bottom: 1px solid #E9E9E9;
- }
- QLabel
- {
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- 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
- {
- 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;
- }
- QLineEdit:enabled[Warn=true]
- {
- border: 1px solid #D21F21;
- }
- QLineEdit:!enabled
- {
- background: #F5F5F5;
- color:rgba(58,63,99,0.65);
- }
- QCheckBox
- {
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- QCheckBox::indicator
- {
- width: 16px;
- height: 16px;
- }
- QCheckBox::indicator:unchecked
- {
- image: url(:/unchecked.png);
- }
- QCheckBox::indicator:checked
- {
- image: url(:/checked.png);
- }
- QPushButton
- {
- background: #FFFFFF;
- border-radius: 4px;
- border: 1px solid #E6E9F4;
- font-weight: 500;
- font-size: 14px;
- color: #3A3F63;
- }
- QPushButton:hover
- {
- border: 1px solid #4458FE;
- color: #4458FE;
- }
- /* ==========================================================
- * QCheckBox
- * ========================================================== */
- QCheckBox
- {
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- QCheckBox::indicator
- {
- width: 16px;
- height: 16px;
- }
- QCheckBox::indicator:unchecked
- {
- image: url(:/icon/unchecked.png);
- }
- QCheckBox::indicator:checked
- {
- image: url(:/icon/checked.png);
- }
|