搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Hide Responsive Design Mode Resize Corner?

  • 1 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

It would be nice to not have the little resize grabber icon/control in the bottom right corner of the screen when in Responsive Design Mode as it shows in screen shots. It doesn't seem like it is possible to hide it or have it not show in screen shots. Is there a way? If so, how? If not, what is the best way to get a feature request in front of Moz devs?

It would be nice to not have the little resize grabber icon/control in the bottom right corner of the screen when in Responsive Design Mode as it shows in screen shots. It doesn't seem like it is possible to hide it or have it not show in screen shots. Is there a way? If so, how? If not, what is the best way to get a feature request in front of Moz devs?
已附加屏幕截图

所有回复 (1)

more options

You can add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.browserContainer.responsive-mode .browserStack .viewport-resize-handle       {opacity:0}
.browserContainer.responsive-mode .browserStack .viewport-resize-handle:hover {opacity:1}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true