Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

CSS code to remove "Ctrl+Shift+A" from beside the "Add-ons" button in hamburger menu?

  • 7 ответов
  • 2 имеют эту проблему
  • 24 просмотра
  • Последний ответ от cor-el

more options

Hello,

What is the CSS code to remove the "Ctrl+Shift+A" text from beside the "Add-ons" button while still maintaining the "Add-ons" button in hamburger menu?

Please see the following image:

https://i.postimg.cc/xCzQTVtK/Addons.jpg


Cheers.

Hello, What is the CSS code to remove the "Ctrl+Shift+A" text from beside the "Add-ons" button while still maintaining the "Add-ons" button in hamburger menu? Please see the following image: https://i.postimg.cc/xCzQTVtK/Addons.jpg Cheers.

Выбранное решение

Of course:

#appMenu-addons-button[shortcut]::after {
   display: none;
}


PS. Try to learn how to use the code Inspector, instead of asking about every simple thing.

Прочитайте этот ответ в контексте 👍 0

Все ответы (7)

more options

Выбранное решение

Of course:

#appMenu-addons-button[shortcut]::after {
   display: none;
}


PS. Try to learn how to use the code Inspector, instead of asking about every simple thing.

Изменено TyDraniu

more options

TyDraniu said

Of course: #appMenu-addons-button[shortcut]::after { display: none; } PS. Try to learn how to use the code Inspector, instead of asking about every simple thing.

From my experience the inspector would only allow you to analyse webpage assets. When I hover the cursor over a part of the UI there does not seem to my any change in the console. Clearly I'm doing something wrong I suppose...

Either way, I'm done now.

Thank you for the answer.

more options

You need to use the Browser Toolbox and not the Inspector for the user interface. You can enable this toolbox via the developer tools settings page (F1).

more options

cor-el said

You need to use the Browser Toolbox and not the Inspector for the user interface. You can enable this toolbox via the developer tools settings page (F1).

Fantastic. Thank you.

Now how do I keep the browser toolbox focused/not minimized to the taskbar when opening menus to inspect elements not immediately available on a given page?

Изменено Avengement

more options

Avengement said

Now how do I keep the browser toolbox focused/not minimized to the taskbar when opening menus to inspect elements not immediately available on a given page?

Tip: ui.popup.disable_autohide = true.

more options

^The Browser Toolbox has this as a choice in the three dot (...) menu (Disable Popup Auto-Hide). If you change the pref directly on about:config then all menus stay open unless you toggle the pref to default (false).