Preventing text selection in the home page

Hi I addes CSS code to my widgets to prevent text selection. Double click in ios app generates a magnify glass so i dont want the text being selected at that moment.
The problem that it still selects the tab text “Properties” in the bottom of the screen.

Is there a way to prevent text selection in the page itself?
in my widget i added this code, is it possible to do the same to the page

component: f7-card
config:
  style:
    user-select: none
    -webkit-user-select: none
    -moz-user-select: none
    -ms-user-select: none

Because of the way that tabbed pages are constructed you do not have any access to css at a level that will apply to the tab buttons themselves. There are hack-ish solutions, but there is currently no supported way to accomplish this.