We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04ff70 commit 86ca800Copy full SHA for 86ca800
services/static-webserver/client/source/class/osparc/theme/Appearance.js
@@ -722,13 +722,14 @@ qx.Theme.define("osparc.theme.Appearance", {
722
"menu-button": {
723
alias: "atom",
724
725
- style: function(states) {
+ style: states => {
726
return {
727
+ decorator: "rounded",
728
cursor: states.disabled ? "not-allowed" : "pointer",
- backgroundColor: states.selected ? "background-selected-dark" : undefined,
729
+ backgroundColor: states.selected || states.hovered ? "pb-new" : undefined,
730
textColor: states.selected ? "default-button-text" : "text",
- padding: [2, 6]
731
- };
+ padding: [4, 8]
732
+ }
733
}
734
},
735
0 commit comments