summaryrefslogtreecommitdiff
path: root/docs/examples/assets/css/tabs-no-images.css
diff options
context:
space:
mode:
authorRichard Wall <richard@aziz>2010-08-22 22:38:05 +0100
committerRichard Wall <richard@aziz>2010-08-22 22:38:05 +0100
commit54b3c39b40077b045e7d10b78eaf85b11dad5a3a (patch)
tree613de63bd5fa0976e138be2601bd4caf991e61f9 /docs/examples/assets/css/tabs-no-images.css
parentfb130e633439f43a733f5de3bd36aa4f34a89fe2 (diff)
parent352f0ea3d709eced87f598b4058d43aff0d5664a (diff)
Merge ~richardw/jarmon/auto-apidocumentationv10.8pre1
* Cleanup and add further doc strings for compatibility with yuidoc * Add a tool to automatically download and run yuidoc on the source tree * Add a tool to automatically create a releasable source archive containing apidocs * Add documentation of the apidoc and release tools. * Rearrange the source tree - moving all examples into the docs/examplesfolder
Diffstat (limited to 'docs/examples/assets/css/tabs-no-images.css')
-rw-r--r--docs/examples/assets/css/tabs-no-images.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/docs/examples/assets/css/tabs-no-images.css b/docs/examples/assets/css/tabs-no-images.css
new file mode 100644
index 0000000..58a54b4
--- /dev/null
+++ b/docs/examples/assets/css/tabs-no-images.css
@@ -0,0 +1,62 @@
+
+/* root element for tabs */
+ul.css-tabs {
+ margin:0 !important;
+ padding:0;
+ height:30px;
+ border-bottom:1px solid #666;
+}
+
+/* single tab */
+ul.css-tabs li {
+ float:left;
+ padding:0;
+ margin:0;
+ list-style-type:none;
+}
+
+/* link inside the tab. uses a background image */
+ul.css-tabs a {
+ float:left;
+ font-size:13px;
+ display:block;
+ padding:5px 30px;
+ text-decoration:none;
+ border:1px solid #666;
+ border-bottom:0px;
+ height:18px;
+ background-color:#efefef;
+ color:#777;
+ margin-right:2px;
+ -moz-border-radius-topleft: 4px;
+ -moz-border-radius-topright:4px;
+ position:relative;
+ top:1px;
+}
+
+ul.css-tabs a:hover {
+ background-color:#F7F7F7;
+ color:#333;
+}
+
+/* selected tab */
+ul.css-tabs a.current {
+ background-color:#ddd;
+ border-bottom:2px solid #ddd;
+ color:#000;
+ cursor:default;
+}
+
+
+/* tab pane */
+.css-panes > div {
+ display:none;
+ border:1px solid #666;
+ border-width:0 1px 1px 1px;
+ min-height:150px;
+ padding:15px 20px;
+ background-color:#ddd;
+}
+
+
+