Add Keyboard.

This commit is contained in:
sunwen
2022-07-20 17:05:50 +08:00
parent 6ba8b72cfa
commit e51d0797c2
71 changed files with 16713 additions and 359 deletions

View File

@@ -708,4 +708,90 @@ ListBox {
qproperty-icon:url(":/icons/arrow-down.png");
}
QWidget#KeyBoard QWidget {
background: #eff0f1;
}
QWidget#KeyBoard {
background: #eff0f1;
}
QWidget#KeyBoard QPushButton {
font: 16pt;
font-size: 26px;
color: white;
margin: 2px;
border-radius: 5px;
background: qlineargradient(spread:pad, x1:0.50, y1:0, x2:0.5, y2:1, stop:0 #505050, stop:1 #606060);
border: none;
padding-left: 9;
padding-right: 9;
min-height: 0;
max-height: 500
}
QWidget#KeyBoard QPushButton:pressed {
background: #F0FFFF;
}
QWidget#KeyBoard QListWidget::Item:hover {
background: #006dc7;
color: white;
}
QWidget#KeyBoard QListWidget {
font: 16pt;
outline: none;
border: 1px solid #00000000;
color: black;
background: #fcfcfc;
margin: 0px;
font-weight: normal;
}
QWidget#KeyBoard QListWidget::Item:selected {
background: #006dc7;
color: white;
}
QWidget#KeyBoard QListWidget::Item {
background: #fcfcfc;
min-height: 0px;
border: none;
border-radius: 0px;
user-select:
}
QWidget#KeyBoard QLineEdit {
font: 16pt;
outline: none;
border: 1px solid #00000000;
color: black;
background: white;
min-height: 0px;
max-height: 50px;
border-bottom: 0px;
text-align:center;
}
QWidget#EditMenu QListWidget {
margin: 0px;
font-weight: bold;
font: 10pt;
outline: none;
border: 1px solid #00000000;
color: white;
background: rgba(0, 0, 0, 0.0);
}
QWidget#EditMenu QListWidget:item {
min-height: 0px;
border: 0px;
border-radius: 0px;
background: rgba(0, 0, 0, 0.0);
}
QWidget#EditMenu QListWidget:item:hover {
background: #006dc7;
color: white;
}