mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-21 16:38:06 -06:00
Bug 797842 - Empty Entry widgets not showing insertion cursor
On windows 10, if the font has been specified in CSS with 'sans-serif', the insertion cursor on an empty entry widget is not shown. Choosing a different font such as 'arial' is OK. As reporter based there changes on the example CSS file remove the reference to 'sans-serif'
This commit is contained in:
parent
40d63d478b
commit
ee230a6cca
@ -22,7 +22,7 @@
|
||||
|
||||
/* Application wide font setting */
|
||||
* {
|
||||
font: 12px arial, sans-serif;
|
||||
font: 12px arial;
|
||||
}
|
||||
|
||||
|
||||
@ -40,7 +40,7 @@ scrollbar slider {
|
||||
|
||||
/* Register sheet font setting */
|
||||
gnc-id-sheet {
|
||||
font: 10px arial, sans-serif;
|
||||
font: 10px arial;
|
||||
}
|
||||
|
||||
|
||||
@ -65,7 +65,7 @@ gnc-id-cursor button {
|
||||
|
||||
/* Register sheet calendar */
|
||||
gnc-id-sheet calendar {
|
||||
font: 13px arial, sans-serif;
|
||||
font: 13px arial;
|
||||
background-color:lightgreen;
|
||||
border-color: green;
|
||||
border-width: 1px;
|
||||
|
Loading…
Reference in New Issue
Block a user