123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- *{
- color: #333333;
- }
- QFrame#frame QLineEdit
- {
- width: 86px;
- height: 32px;
- background-color: #ffffff;
- border-radius: 3px;
- border:1px solid #dcdfe3;
- padding-left:8px;
- }
- QTextEdit#textEdit
- {
- width: 840px;
- height: 60px;
- background-color: #f7f7f7;
- border-radius: 4px;
- }
- QPushButton
- {
- width: 64px;
- height: 32px;
- background-color: #ffffff;
- border-radius: 3px;
- border: 1px solid#b9bfc8;
- }
- QPushButton:hover
- {
- color: #333333;
- background-color: #f0f2f3;
- }
- QPushButton:pressed
- {
- color: #333333;
- background-color: #f0f2f3;
- }
- QPushButton:disabled
- {
- color: #cbcbcb;
- background-color: #ffffff;
- }
- #pushButton
- {
- width: 80px;
- height: 32px;
- border-radius: 4px;
- color: rgba(255, 255, 255);
- background-color: #ff2d2d;
- }
- #pushButton:hover
- {
- color: #ffe4e4;
- background-color: #ff4c4c;
- }
- #pushButton:pressed
- {
- color: #ffffff;
- background-color: #ff2d2d;
- }
- #pushButton:disabled
- {
- color: #ffcaca;
- background-color: #ff9595;
- }
- QRadioButton{
- spacing:8px;
- }
- QRadioButton::indicator:unchecked{
- image:url(Skins/MechHand/resource/radio_n.png);
- }
- QRadioButton::indicator:checked{
- image:url(Skins/MechHand/resource/radio_d-1.png);
- }
- QRadioButton::indicator:unchecked:disabled{
- image:url(Skins/MechHand/resource/radio_n-1.png);
- }
- QRadioButton::indicator:unchecked:hover{
- image:url(Skins/MechHand/resource/radio_n-3.png);
- }
- QRadioButton::indicator:checked:disabled{
- image:url(Skins/MechHand/resource/radio_d.png);
- }
- QRadioButton::indicator:checked:hover{
- image:url(Skins/MechHand/resource/radio_d-2.png);
- }
- #label,#label_2,#label_3
- {
- color: #666666;
- }
- QTableView{
- font-size:14px;
- background:#F8F8F8;
- color:#000000;
- border: 0px;
- gridline-color:#FFFFFF;
- selection-background-color:rgba(200,200,200,0.8);
- }
- QTableView::item{
- height: 40px;
- }
- QHeaderView::section:vertical
- {
- width:0px;
- }
- QHeaderView::section:horizontal
- {
- width: 372px;
- height: 40px;
- background-color: #f2f3f4;
- border-radius: 4px 4px 0px 0px;
- }
- QTableView::section{
- border:0px;
- height:40px;
- background-color: #ffffff;
- color: #ff2d2d;
- }
- QComboBox:active
- {
- background-color: #ffffff;
- color: #ff2d2d;
- }
- QComboBox::down-arrow:on
- {
- image: url(Skins/MechHand/resource/header_dropdown_up.png);
- }
- QComboBox::drop-down
- {
- subcontrol-origin: padding;
- subcontrol-position: top right;
- width: 18px;
- border: 0;
- }
- QComboBox::down-arrow
- {
- image: url(Skins/MechHand/resource/header_dropdown_up.png);
- }
- QComboBox::down-arrow
- {
- image: url(Skins/MechHand/resource/header_dropdown_p.png);
- }
- QComboBox::down-arrow:pressed{
- image: url(Skins/MechHand/resource/header_dropdown_p.png);
- }
- QComboBox::down-arrow:hover{
- image: url(Skins/MechHand/resource/header_dropdown_h.png);
- }
- QComboBox::down-arrow:disabled{
- image: url(Skins/MechHand/resource/header_dropdown_d.png);
- }
|