1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| QMenu#toptoolbarmenu { padding: 10px 0; border-radius: 15px; background-color: rgba(38, 40, 42, 0.7); } QMenu#toptoolbarmenu::separator { height: 2px; margin: 6px 0; background-color: rgba(255, 255, 255, 1); } QMenu#toptoolbarmenu::icon { padding: 0 0 0 10px; } QMenu#toptoolbarmenu::item { color: white; padding: 3px 10px; font-weight: bold; background-color: transparent; } QMenu#toptoolbarmenu::item:hover, QMenu#toptoolbarmenu::item:pressed, QMenu#toptoolbarmenu::item:selected { color: rgb(95, 174, 200); border-radius: 15px; } QMenu#toptoolbarmenu::item QLabel { color: rgb(145, 145, 145); font-weight: bold; padding-left: 7px; margin-bottom: 5px; background-color: transparent; }
|