83 lines
1.7 KiB
Plaintext
83 lines
1.7 KiB
Plaintext
RoundMenu {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
MenuActionListWidget {
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
border-radius: 9px;
|
|
background-color: rgb(249, 249, 249);
|
|
outline: none;
|
|
font: 14px 'Segoe UI', 'Microsoft YaHei', 'PingFang SC';
|
|
}
|
|
|
|
MenuActionListWidget[transparent=true] {
|
|
background-color: transparent;
|
|
}
|
|
|
|
MenuActionListWidget::item {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 5px;
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
border: none;
|
|
color: black;
|
|
}
|
|
|
|
MenuActionListWidget::item:disabled {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: rgba(0, 0, 0, 112);
|
|
}
|
|
|
|
MenuActionListWidget::item:hover {
|
|
background-color: rgba(0, 0, 0, 9);
|
|
}
|
|
|
|
MenuActionListWidget::item:selected {
|
|
background-color: rgba(0, 0, 0, 7);
|
|
color: black;
|
|
}
|
|
|
|
MenuActionListWidget::item:selected:active {
|
|
background-color: rgba(0, 0, 0, 0.06);
|
|
color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
#commandListWidget{
|
|
border-color: rgb(233, 233, 233);
|
|
}
|
|
|
|
#completerListWidget[dropDown=true],
|
|
#commandListWidget[dropDown=true][long=false] {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
}
|
|
|
|
#commandListWidget[dropDown=true][long=true] {
|
|
border-top-left-radius: 9px;
|
|
border-top-right-radius: 0px;
|
|
}
|
|
|
|
#commandListWidget[dropDown=false][long=true] {
|
|
border-bottom-left-radius: 9px;
|
|
border-bottom-right-radius: 0px;
|
|
}
|
|
|
|
#completerListWidget[dropDown=false],
|
|
#commandListWidget[dropDown=false][long=false] {
|
|
border-bottom-left-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
}
|
|
|
|
#completerListWidget::item,
|
|
#comboListWidget::item {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
#checkableListWidget::item {
|
|
padding-left: 36px;
|
|
} |