View Single Post
Old 12-15-2018, 04:50 PM   #33
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by jackie_w View Post
I think these residual "header" & "footer" whitespace areas when Show Title/Footer are both Off exist to accommodate the 'Quick Page Turns' feature.

The footer contains the 'change turning speed' slider and the header contains the 'position in book' progressbar.
That is interesting, because in nickel there is CSS for QuickTurnSlider with heights of 24px / 32px / 44px / 56px.

Has anyone tried changing that CSS to see if it affects the size of the page header / footer when Show Title / Show Footer options are turned off?

e.g. a patch for nickel:
Spoiler:
Code:
Set QuickTurn slider height:
  - Enabled: yes
  # Touch/Mini
  - FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsTrilogy=true]"
  - ReplaceString: {Offset: 0x39, Find: "24px", Replace: "12px"}
  - ReplaceString: {Offset: 0x4F, Find: "24px", Replace: "12px"}
  # Glo/Aura/Aura2
  - FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsPhoenix=true]"
  - ReplaceString: {Offset: 0x39, Find: "32px", Replace: "16px"}
  - ReplaceString: {Offset: 0x4F, Find: "32px", Replace: "16px"}
  # AuraHD/H2O/GloHD/Clara
  - FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsDragon=true]"
  - ReplaceString: {Offset: 0x38, Find: "44px", Replace: "22px"}
  - ReplaceString: {Offset: 0x4E, Find: "44px", Replace: "22px"}
  # AuraOne/Forma
  - FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsDaylight=true]"
  - ReplaceString: {Offset: 0x3A, Find: "56px", Replace: "28px"}
  - ReplaceString: {Offset: 0x50, Find: "56px", Replace: "28px"}
GeoffR is offline   Reply With Quote