theme-store/themes/22c9ec3b-7c62-46ae-991f-c8fff5046829/chrome.css
2024-11-09 15:09:28 +00:00

20 lines
360 B
CSS

tabs {
counter-reset: tab-counter;
}
/* Automatically increment tab numbers for each .tab-content inside a tab */
tab .tab-content::before {
counter-increment: tab-counter;
content: counter(tab-counter) "";
position: absolute;
top: 5px;
right: 1px;
padding: 0px 4px;
border-radius: 7px;
opacity: 0.7;
font-weight: bold;
font-size: 80%;
}