summaryrefslogtreecommitdiffstats
path: root/autocomplete/css/tabsexamples.css
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-03-27 22:59:06 +0100
committerAndreas Unterkircher <unki@netshadow.at>2008-03-27 22:59:06 +0100
commitaf0be8f9546fb5dec947be33e465bb6d9e85d0a7 (patch)
tree46fa7f026d861e54753e78ac8265563b0ddfca36 /autocomplete/css/tabsexamples.css
parent2b589908f4624b0ee41217f21d5b0b7cb383d38c (diff)
issue111, first try of auto completion for tag search box
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'autocomplete/css/tabsexamples.css')
-rw-r--r--autocomplete/css/tabsexamples.css107
1 files changed, 107 insertions, 0 deletions
diff --git a/autocomplete/css/tabsexamples.css b/autocomplete/css/tabsexamples.css
new file mode 100644
index 0000000..08f1539
--- /dev/null
+++ b/autocomplete/css/tabsexamples.css
@@ -0,0 +1,107 @@
+/* CSS Document */
+body
+{
+ background-color: #fff;
+}
+
+.pages
+{
+ position: relative;
+ float: none;
+ clear: both;
+ width: 100%;
+ display: none;
+ padding: 3px;
+ border: 1px solid #560702;
+ border-top-width: 0px;
+ background-color: #F4783C;
+ -moz-box-sizing: border-box;
+}
+
+span.hilite
+{
+ color: #00f;
+ background-color: #eee;
+}
+
+#navcontainer
+{
+ position: relative;
+ float: left;
+ width: 100%;
+ border-bottom: 1px solid #7ABBDA;
+ -moz-box-sizing: border-box;
+}
+
+ul.navlist
+{
+ position: relative;
+ top: 1px;
+ display: block;
+ float: left;
+ clear: both;
+
+ margin-top: 0px;
+ margin-left: 0px;
+ margin-bottom: 0px;
+ padding-left: 9px;
+ padding-bottom: 0px;
+
+ font: 10px Verdana, sans-serif;
+ list-style-type: none;
+ -moz-box-sizing: border-box;
+}
+
+ul.navlist li
+{
+ display: block;
+ float: left;
+ margin: 0;
+ padding: 0;
+ padding-right: 5px;
+ width: auto;
+ height: 23px;
+ line-height: 23px;
+ font-weight: bold;
+ background-image: url(../i/iar.png);
+ background-position: center right;
+ background-repeat: no-repeat;
+ -moz-box-sizing: border-box;
+}
+
+ul.navlist li.tabactive
+{
+ background-image: url(../i/ar.png);
+}
+
+ul.navlist li a, ul.navlist li a:link
+{
+ color: #FFB098;
+ text-decoration: none;
+ padding: 0px 5px 0px 11px;
+ display: block;
+ background-image: url(../i/ial.png);
+ background-repeat: no-repeat;
+ background-position: 0px center;
+}
+
+ul.navlist li a:hover
+{
+ color: #FFE5DD;
+ cursor: pointer;
+ background-image: url(../i/ial.png);
+ background-repeat: no-repeat;
+ background-position: 0px center;
+}
+
+ul.navlist li.tabactive a, ul.navlist li.tabactive a:link
+{
+ color: #F8FFC8;
+ cursor: default;
+ background-image: url(../i/al.png);
+}
+
+ul.navlist li.tabactive a:hover
+{
+ background-image: url(../i/al.png);
+}