Steps to reproduce the issue
make the tab-title of a focused tab bold (see below in "Remark I" how this
works)
open many tabs
tab-browse to the left or to the right
Result
Other tabs that are not in focus are moving a little bit to the side
Expectation
Other tabs should not move at all
Remark I
If geany.css does not exist in .config/geany, type this code in the terminal:
cp /usr/share/geany/geany.css .config/geany/
Open geany.css that is located in .config/geany/
Add at the end of the document those lines:
```
notebook tab:checked label {
font-weight:bold;
}
```
Save the document, close Geany, open Geany
Remark II
I use an ePaper-display in that way that only the black color is on the screen.
So, after an installation of Geany, when many tabs are open, I can't see at all
which tab is in focus and which tab was changed, but not saved.
I add in geany.css in `geany-document-status-changed` the following code to see
which tab was changed but not saved:
`font-style:oblique;`
And I delete there the color.
And this is what I use in geany.css for the tab that is in focus:
```
notebook tab:checked label {
color:white;
background:black;
}
```
I would prefer to use bold, but then some tabs are a little bit moving while
tab-browsing.
Geany 1.38
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3771
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/[email protected]>