PluginProbe
Simple Ticker / 1.0
Simple Ticker v1.0
trunk 1.0 1.01 1.02 1.03 1.04 1.05 1.06 1.07 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.07 2.08 2.09 2.10 2.11 3.00 3.01 3.02 3.03 All 33 releases
simple-ticker / css / responsive-tabs.css

responsive-tabs.css in Simple Ticker 1.0, at css/responsive-tabs.css

34 lines 540 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .r-tabs .r-tabs-nav {
2 margin: 0;
3 padding: 0;
4 }
5
6 .r-tabs .r-tabs-tab {
7 display: inline-block;
8 margin: 0;
9 list-style: none;
10 }
11
12 .r-tabs .r-tabs-panel {
13 padding: 15px;
14 display: none;
15 }
16
17 .r-tabs .r-tabs-accordion-title {
18 display: none;
19 }
20
21 .r-tabs .r-tabs-panel.r-tabs-state-active {
22 display: block;
23 }
24
25 /* Accordion responsive breakpoint */
26 @media only screen and (max-width: 768px) {
27 .r-tabs .r-tabs-nav {
28 display: none;
29 }
30
31 .r-tabs .r-tabs-accordion-title {
32 display: block;
33 }
34 }