| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- QPushButton
- {
- border-image: url(:/Res/image/time.png);
- }
- QPushButton[selected=true]
- {
- border-image: url(:/Res/image/time.png);
- }
- QPushButton:hover[selected=true]
- {
- border-image: url(:/Res/image/time.png);
- }
- QDateTimeEdit
- {
- padding-left: 0px;
- border: 0px solid #D8D8D8;
- }
- /* ==========================================================
- * TimeWidget
- * ========================================================== */
- QDateTimeEdit
- {
- background: transparent;
- border: none;
- }
- /* QTimeEdit:disabled
- {
- background: transparent;
- border: none;
- } */
- TimeWidget
- {
- background: #FFFFFF;
- border-radius: 4px;
- border: 1px solid #E6E9F4;
- padding-left: 12px;
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- TimeWidget:disabled
- {
- background: rgba(0, 0, 0, 0.04);
- border-radius: 4px;
- border: 1px solid #E6E9F4;
- padding-left: 12px;
- font-weight: 400;
- font-size: 14px;
- color: #3A3F63;
- }
- TimeWidget:hover
- {
- border: 1px solid #4458FE;
- }
|