123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- QWidget#widget
- {
- border-bottom: 1px solid #E9E9E9;
- }
- QLabel
- {
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- 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;
- }
- 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);
- }
|