123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- CRunWidget >.QWidget
- {
- background-color: rgb(255, 255, 255);
- }
- CRunWidget #lineRun
- {
- color:#dcdfe3;
- }
- /*正常*/
- CRunWidget QLabel[whatsThis = "valueRunLabel"]
- {
- width: 140px;
- min-height: 40px;
- background-color: #f0f2f3;
- border-radius: 4px;
- padding-left:12px;
- color: #333333;
- }
- CRunWidget QWidget#widget
- {
- min-height:48px;
- border-bottom:1px solid #dcdfe3;
- }
- CRunWidget QLabel#resultLabel[text= "NG"]
- {
- width: 372px;
- min-height: 100px;
- background-color: rgba(255, 45, 45, 0.1);
- border-radius: 4px;
-
- font-size: 64px;
- color: #ff2d2d;
- }
- CRunWidget QLabel#resultLabel[text= "OK"]
- {
- width: 372px;
- min-height: 100px;
- background-color: #2cdb7d;
- border-radius: 4px;
-
- font-size: 64px;
- color: #ffffff;
- }
- CRunWidget QLabel#errorLabel
- {
- font-size: 14px;
- color: #ff2d2d;
-
- background-repeat: repeat-no-repeat;
- padding-left: 131px ;
- padding-right: 60px ;
- background-origin:content;
- background-position:left;
-
- background-image:url(Skins/MechHand/resource/prompt_异常.png);
-
- width: 372px;
- min-height: 40px;
- background-color: rgba(255, 45, 45, 0.1);
- border-radius: 4px;
- border: 1px solid #ff2d2d;
- }
- CRunWidget QPushButton#runBtn
- {
- width: 72px;
- height: 64px;
- border-radius: 4px;
- font-size: 18px;
-
- text-align : right;
- background-repeat: repeat-no-repeat;
- background-position: left;
- background-origin:content;
- padding-left:150px;
- padding-right:150px;
- background-image:url(Skins/MechHand/resource/btn_icon_run_n.png);
- }
- CRunWidget QPushButton#runBtn:!checked
- {
- background-image:url(Skins/MechHand/resource/btn_icon_run_n.png);
- }
- CRunWidget QPushButton#runBtn:checked
- {
- background-image:url(Skins/MechHand/resource/btn_icon_pause_n.png);
- }
- CRunWidget QPushButton#runBtn:!checked:hover
- {
- color:#ffffff;
- background-image:url(Skins/MechHand/resource/btn_icon_run_n.png);
- }
- CRunWidget QPushButton#runBtn:checked:hover
- {
- color:#ffffff;
- background-image:url(Skins/MechHand/resource/btn_icon_pause_n.png);
- }
- CRunWidget QLineEdit#sceneNameEdit
- {
- width: 240px;
- height: 32px;
- border:0px;
- }
- CRunWidget #adjustCombo,CRunWidget #sceneNameCombo
- {
- height: 32px;
- }
|