I dont know how to code so this was so nice that it worked out so good. :)
But i understand you guys, that AI is not so good, or maybe so good informed about yout codebases or this stuff.
Next, I will ask it to make all my buttons like my inactive tabs.
`/* Alle Tabs – Basis-Stil /
.tabbrowser-tab .tab-background {
border-radius: 20px !important;
box-shadow: none !important; / Kein Schatten = kein schwarzer Rand /
opacity: 1 !important; / Volle Deckkraft */
}
/* Aktiver Tab – grün, aber gleiches Design /
.tabbrowser-tab[selected="true"] .tab-background {
background-color: rgba(0, 200, 0, 0.95) !important; / Fast undurchsichtig grün */
}
/* Inaktive Tabs – hellgrau, ebenfalls fast undurchsichtig */
.tabbrowser-tab:not([selected]) .tab-background {
background-color: rgba(240, 240, 240, 0.95) !important;
}
/* Tab-Text */
.tabbrowser-tab .tab-label {
color: black !important;
}
/* Neuer Tab-Button */
#tabs-newtab-button,
.tabbrowser-arrowscrollbox > .tabs-newtab-button {
background-color: rgba(0, 200, 0, 0.95) !important;
border-radius: 20px !important;
box-shadow: none !important;
padding: 2px 6px !important;
}
/* Plus-Icon-Farbe */
#tabs-newtab-button .toolbarbutton-icon,
.tabbrowser-arrowscrollbox > .tabs-newtab-button .toolbarbutton-icon {
fill: black !important;
}
/* Lesezeichen-Stil wie inaktive Tabs */
#personal-bookmarks .bookmark-item {
background-color: rgba(240, 240, 240, 0.95) !important;
color: black !important;
border-radius: 20px !important;
padding: 2px 6px !important;
}
`
Which is why people are so hostile to genAI code. It may work now, but it's not built to be maintained and usually has some glaring issues that lay people will not notice.