Theme 25 Responsive Tabs Enhancement: CSS Patch


rwdtabs_titleTheme 25 seems to be popular. I see a lot projects starting development with this theme. Not always because there is a need for enabling the application to be accessed on multiple different devices/screen resolutions, but because of the way you have more control of your region placement on the undelaying grid.
Apart from the grid, APEX/Theme 25 offers more responsive functionality, like form element/label adaption and the the responsive Interactive Report toolbar.
But there are components that are implemented less responsive, like the tab’s. Apart from the discussion, whether or not to use tabs, if you are using this (in my eyes convenient) feature, one would expect a user friendly responsive implementation of the tab’s.



A Little Bit Responsive

The way tab’s in Theme 25 currently react on smaller screens is: you have to scroll through the entries that are hidden outside your viewport.
rwdtabs_scroll_horz

Tab More Responsive

I wanted a different, more intuitive, yet still responsive implementation of the Theme 25 tabs, which is easy to implement in any application using the theme, even afterwards. The solution I came up with is, what I call, a CSS patch. Fortunately, Theme 25 is (almost) entirely based on CSS; no images involved for structural elements. By overwriting the theme’s CSS, I can change the visual layout, and in this case behavior of the tabs, when presented on smaller screens, using the same @media rule definitions as the Theme 25 responsive implementation.
This CSS patch transforms the tab’s into a drop down list on small screensizes. If the list/menu is closed, it shows the current tab’s name and an icon. Once tabbed, it opens and offers the whole list of tabs in the original sequence order, marking the current tab with an indicator:
rwdtabs_closed   rwdtabs_touch

How To Use

Step 1 - Download and include the CSS file in your page template

  • Download the CSS file here and copy it to a the location you prefer, either on the file system of your webserver or upload it into the workspace.
  • Reference the CSS file in your page template in the Cascading Style Sheet setting.
rwdtabs_pagetemplate

Step 2 - A little modification in your page template

Add (exactly) this DIV around the unnumbered list element in your page template Header Source:
rwdtabs_html
<div class=”rwdnav”>…</div>

Step 3 - A tiny modification in your standard tab sub template

Remove the href attribute from the Current Tab sub-template in your page templates Standard Tab Attribute setting. This is necessary, to prevent that the page is reloading as soon as you touch the responsive menu, which is showing the current tab entry.
rwdtabs_href

Enjoy!

themes4apex400

Comments

  1. Hi,
    Very nice! Exactly a solution I was looking for. Much easier to implement than other ones I have seen that require plugins etc.

    Thanks,
    Pat

    ReplyDelete
  2. Beautiful! Nice and simple. I developed a js / css menu that is not any better than this, and is much more complicated.

    I am presenting at Kscope14 and would love to use this in place of my js menu. Would you mind if I used this code in my presentation?

    Obviously I would credit you as the source.

    ReplyDelete
    Replies
    1. Hi John,

      Thanks! No problem. I demoed this at KScope last year, but I guess people will be interested in it anyway. Have a look at the reflow table solution I blogged about recently. Would fit nicely into your presentation too. This wasn't finished yet last year, so you still can have a primer on this.

      See you in Seattle in two weeks. About the credits: no problem, I'll accept a beer from you, if you insist ;-)

      Cheers,
      Christian

      Delete
    2. I will gladly buy you a beer! Thanks!!!

      See you in Seattle.

      Delete
  3. Hi, this is a very good solution, unfortunately nav_imgemb.css patch seems to be unavailable.

    It will be repaired to download.

    Thanks,
    Jose Vergara

    ReplyDelete
  4. hi, the file is not available for download anymore, how can I get the css?

    ReplyDelete
  5. Hi Jose and André,

    The link was broken due to a server migration. I fixed the URL and the CSS is available for download again.

    Cheers,
    Christian

    ReplyDelete

Post a Comment

Popular posts from this blog

Remember Me - APEX Autologin

Tabular Forms on Complex Views - using INSTEAD OF Triggers

Book Review: Oracle APEX 4.0 Cookbook