1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- CCustomMessageBox QLabel#lbIcon {
- min-width: 60;
- min-height: 60;
- }
- CCustomMessageBox QLabel#lbIcon[icon="0"] {
- image: url(Skins/Default/Parts_Icon_Popup_Info.png);
- }
- CCustomMessageBox QLabel#lbIcon[icon="1"] {
- image: url(Skins/Default/Parts_Icon_Popup_Info.png);
- }
- CCustomMessageBox QLabel#lbIcon[icon="2"] {
- image: url(Skins/Default/Parts_Icon_Popup_Warning.png);
- }
- CCustomMessageBox QLabel#lbIcon[icon="3"] {
- image: url(Skins/Default/Parts_Icon_Popup_Error.png);
- }
- CCustomMessageBox QLabel#lbIcon[icon="4"] {
- image: url(Skins/Default/Parts_Icon_Popup_Question.png);
- }
- CCustomMessageBox QPushButton
- {
- width: 80px;
- height: 32px;
- background-color: #ffffff;
- border-radius: 4px;
- border: 1px solid #b9bfc8;
- color: #ffffff;
- }
- CCustomMessageBox QPushButton:hover
- {
- color: #333333;
- background-color: #f0f2f3;
- }
- CCustomMessageBox QPushButton:pressed
- {
- color: #333333;
- background-color: #f0f2f3;
- }
- CCustomMessageBox QPushButton:disabled
- {
- color: #cbcbcb;
- background-color: #ffffff;
- }
- CCustomMessageBox QPushButton#No
- {
- width: 80px;
- height: 32px;
- background-color: #ff2d2d;
- border-radius: 4px;
- }
|