# Unhide composer fullscreen toggle for tablets

**URL:** https://meta.discourse.org/t/unhide-composer-fullscreen-toggle-for-tablets/400433
**Category:** Theme component
**Tags:** composer, tablet
**Created:** [April 10, 2026, 8:39pm UTC](https://meta.discourse.org/t/unhide-composer-fullscreen-toggle-for-tablets/400433 "2026-04-10T20:39:08Z")
**Posts on this page:** 1
**Showing post:** 1

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [April 10, 2026, 8:39pm UTC](https://meta.discourse.org/t/unhide-composer-fullscreen-toggle-for-tablets/400433/1 "2026-04-10T20:39:08Z")

</div>

| | | |
| --- | --- | --- |
| ℹ | **Summary** | Restores the fullscreen toggle button in the composer on touch devices with larger screens (e.g. tablets), where it is hidden by default |
| 👓 | **Preview** | [Theme Creator](https://discourse.theme-creator.io/theme/Moin/tablet-fullscreen-toggle) |
| 🛠 | **Repository** | [https://github.com/moin-Jana/unhide-composer-fullscreen-toggle-for-tablets](https://github.com/moin-Jana/unhide-composer-fullscreen-toggle-for-tablets) |
| ❓ | **Install Guide** | [How to install a theme or theme component](https://meta.discourse.org/t/how-do-i-install-a-theme-or-theme-component/63682) |
| 📖 | **New to Discourse Themes?** | [Beginner’s guide to using Discourse Themes](https://meta.discourse.org/t/beginners-guide-to-using-discourse-themes/91966) |

Install this theme component

It’s a very simple component. It only does what its name says. It unhides the composer fullscreen button on touch devices with a wider screen. The only visible change is the tiny button in the top right corner:

 ![Screenshot of the composer which a circle around the fullscreen toggle button](https://global.discourse-cdn.com/meta/original/4X/c/6/c/c6c53ab479d4f3b4530386ade322215536258b5a.jpeg)

The reason is still the same as when I reported that the button was missing:

> [@Discourse composer and Firefox on Android tablet](https://meta.discourse.org/t/discourse-composer-and-firefox-on-android-tablet/346876/11):
>
> And the full-screen composer button is missing in both now. It was quite helpful as it hides title and category field when you create a new topic, so you can use that space for the body

Especially when using a tablet in landscape orientation, the vertical space is quite limited. In that case, it can be very helpful to be able to hide the fields for the title and category selection when writing a new post. On my tablet the difference is 7 lines of text which I can see additionally when I use the full screen button.

 ![maximized composer - 15 lines visible](https://global.discourse-cdn.com/meta/original/4X/5/7/7/57799c51ee08416f69b8e7ec850b53b2feca38e0.jpeg)  
 ![fullscreen composer - 22 lines visible](https://global.discourse-cdn.com/meta/original/4X/7/e/5/7e5d6a0d3c8cec8cd66f9054d64e4909a0ac9c16.jpeg)

Also, I sometimes find it really hard to use the grip on the top of the composer to resize it. Unfortunately, when I try to reduce the size by swiping down, I often end up refreshing the page and then have to reopen my draft. With the toggle button it’s only one click - and no accidental refresh 🎉

I created the component to make things as easy as possible for admins. That said, the CSS change is so minimal that admins who’d rather not install a component for a single line are equally well served by adding it directly to their theme. And for users whose admin hasn’t installed it, [Stylus](https://github.com/openstyles/stylus?tab=readme-ov-file#releases) or similar browser extensions and apps work just as well - which is how I use it here on Meta:

```css
@media (hover: none) and (width >= 40rem) {
  .discourse-touch #reply-control .toggle-fullscreen,
  .mobile-device #reply-control .toggle-fullscreen {
    display: flex;
  }
}

```

---

_[View the full topic](https://meta.discourse.org/t/unhide-composer-fullscreen-toggle-for-tablets/400433)._
