1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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;
- }
- 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);
- }
|