/* ------------------------------------------------------------- 01/04/2025 - * .b-toolsbar * -------------------------------------------------------------------------- */ .b-toolsbar { //border: 1px solid Red; display: grid; grid-template-columns: 1fr auto; align-items: center; > ul { //border: 1px solid Red; display: flex; gap: 1em; /* Abstand li's */ align-items: center; vertical-align: baseline; list-style: none; margin: 0; padding: 0; /* Scrollbar ausblenden */ -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ &::-webkit-scrollbar { display: none; } /* Chrome */ * { margin: 0; } > li { white-space: nowrap; } /* li */ > a { display: inline-block; padding: .6em 1em; /* wie .-button */ text-decoration: none; &:hover { text-decoration: underline; } } /* a */ abbr { display: none; } /* fa Icons */ i[class*="fa"] { margin: 0 2px; } } /* ul */ form { display: inline-block; } } /* .b-toolsbar */