Improve application dock:

- Stack all instances of the same application to one single dock button
- Make the dock scrollable by mouse wheel or touch
This commit is contained in:
DanyLE
2022-12-13 22:05:37 +01:00
committed by Dany LE
parent 2ae390ad4b
commit b5863702cb
9 changed files with 150 additions and 81 deletions

View File

@ -4,12 +4,17 @@ afx-apps-dock{
padding-top: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border:1px solid #262626;
border-left:1px solid #262626;
border-right:1px solid #262626;
box-shadow: none;
}
afx-apps-dock afx-button.selected > button {
background-color: #464646;
color: white;
border: 1px solid #464646;
border: 0;
border-bottom: 3px solid #bb86fc;
}
afx-apps-dock afx-button.plural.selected > button {
border-top: 3px double #646363;
}

View File

@ -4,14 +4,17 @@ afx-apps-dock{
padding-top: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border:1px solid #a6a6a6;
border-left:1px solid #a6a6a6;
border-right:1px solid #a6a6a6;
box-shadow: none;
}
afx-apps-dock afx-button.selected > button {
background-color: #2786F3;
color: white;
/* border: 1px solid #dedede;*/
border: 0;
border-bottom: 3px solid salmon;
}
afx-apps-dock afx-button.plural.selected > button {
border-top: 3px double #66abfa;
}