This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/tagger/style.css
Artanis 3aaf13887b Tagger v2
git-svn-id: file:///home/shish/svn/shimmie2/trunk@571 7f39781d-f577-437e-ae19-be835c7a54ca
2007-10-26 02:55:40 +00:00

108 lines
2.2 KiB
CSS

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Tagger - Advanced Tagging v2 *
* Author: Artanis (Erik Youngren <artanis.00@gmail.com>) *
* Do not remove this notice. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#tagger_parent {
text-align:left;
position:fixed;
max-width:300px;
}
#tagger_parent * {
background-color:#EEE;
}
#tagger_titlebar {
background-color:#ddd;
border:2px solid;
cursor:move;
font-weight:bold;
-moz-border-radius:5px 5px 0 0;
padding:.25em;
text-align:center;
}
#tagger_toolbar, #tagger_body {
padding:2px 2px 0 2px;
border-style:solid;
border-width: 0px 2px 0px 2px;
}
#tagger_body {
max-height:175px;
overflow:auto;
overflow-x:hidden;
overflow-y:auto;
}
#tagger_statusbar {
background-color:#ddd;
border:2px solid;
font-weight: bold;
min-height:16px;
-moz-border-radius:0 0 5px 5px;
padding:.25em;
} #tagger_statusbar * { background-color:#ddd; }
#tagger_body div {
padding-top:2px;
margin-top:2px;
border-top:1px solid;
}
/* Tagger Styling
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#tagger_parent form {
display:inline;
}
#tagger_parent input {
width:auto;
}
#tagger_parent input[type=text] {
background-color:white;
}
/* Custom Element Base Styles
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#tagger_parent list {
display: block;
}
#tagger_parent tag {
font-size:1.25em;
display:block;
}
#tagger_parent list[id=image] tag:before {
font-family: monospace;
content:"[ ]";
}
#tagger_parent list[id=search] tag:before {
font-family: monospace;
content:"[ ]";
}
/* Hovering */
#tagger_parent tag:hover {
cursor:pointer;
background-color:#ddd;
}
#tagger_parent list[id=image] tag:hover {
background-color:#faa;
}
#tagger_parent list[id=search] tag:hover {
background-color:#afa;
}
#tagger_parent list[id=image] tag:hover:before {
font-family: monospace;
content:"[\00d7]";
}
#tagger_parent list[id=search] tag:hover:before {
font-family: monospace;
content:"[+]";
}