PluginProbe
Fixed Bottom Menu / 1.13
Fixed Bottom Menu v1.13
trunk 1.00 1.01 1.02 1.03 1.04 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 All 41 releases
fixed-bottom-menu / css / style.css

style.css in Fixed Bottom Menu 1.13, at css/style.css

75 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 body {
2 font-family: Arial, Helvetica, Verdana, sans-serif;
3 font-size: 12px;
4 }
5
6 .r-tabs {
7 position: relative;
8 }
9
10 .r-tabs .r-tabs-nav {
11 border-bottom: 1px solid #ccc;
12 }
13
14 .r-tabs .r-tabs-nav .r-tabs-tab {
15 position: relative;
16 top: 1px;
17 }
18
19 .r-tabs .r-tabs-nav .r-tabs-anchor {
20 background: #000000;
21 margin-bottom: 3px;
22 padding: 10px 12px;
23 display: inline-block;
24 text-decoration: none;
25 color: #fff;
26 font-weight: bold;
27 }
28
29 .r-tabs .r-tabs-nav .r-tabs-state-active {
30 background-color: #fff;
31 margin-bottom: -1px;
32 border-top: 1px solid #ccc;
33 border-right: 1px solid #ccc;
34 border-left: 1px solid #ccc;
35 }
36
37 .r-tabs .r-tabs-nav .r-tabs-state-disabled {
38 opacity: 0.5;
39 }
40
41 .r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
42 color: #000000;
43 background-color: #fff;
44 }
45
46 .r-tabs .r-tabs-panel {
47 border-right: 1px solid #ccc;
48 border-bottom: 1px solid #ccc;
49 border-left: 1px solid #ccc;
50 margin-bottom: 3px;
51 }
52
53 .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
54 display: block;
55 padding: 10px;
56 background-color: #000000;
57 color: #fff;
58 font-weight: bold;
59 text-decoration: none;
60 margin-bottom: 3px;
61 }
62
63 .r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
64 opacity: 0.5;
65 }
66
67 .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
68 background-color: #fff;
69 color: #000000;
70 border-top: 1px solid #ccc;
71 border-right: 1px solid #ccc;
72 border-left: 1px solid #ccc;
73 margin-bottom: 0;
74 }
75