summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-06-28 11:22:53 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-06-28 11:22:53 +0000
commit181e434ac94f5159b00582b97e33356a27a56b1b (patch)
tree1febd4070d6baf2878a1b0ef2d243d8b103c211a /static
parent5add940935c084a10b742bc808644906ea7b7b06 (diff)
Added links to d1 and the edit notes field shouldnt be hidden when adding a VN
git-svn-id: svn://vndb.org/vndb@40 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
Diffstat (limited to 'static')
-rw-r--r--static/files/dyna.js4
-rw-r--r--static/files/style.css9
2 files changed, 12 insertions, 1 deletions
diff --git a/static/files/dyna.js b/static/files/dyna.js
index 6a6b169a..1c9c262d 100644
--- a/static/files/dyna.js
+++ b/static/files/dyna.js
@@ -541,10 +541,12 @@ function catLoad() {
var l=x('cat').getElementsByTagName('a');
for(i=0;i<l.length;i++) {
+ if(l[i].id.substr(0, 4) != 'cat_')
+ continue;
catSet(l[i].id.substr(4), cats[l[i].id.substr(4)]||0);
l[i].onclick = function() {
var c = this.id.substr(4);
- if(!cats[c]) cats[c] = 0;
+ if(!cats[c]) cats[c] = 0;
if(c.substr(0,1) == 'p' || c == 'gaa' || c == 'gab' || c.substr(0,1) == 'h' || c.substr(0,1) == 'l' || c.substr(0,1) == 't') {
if(cats[c]++)
cats[c] = 0;
diff --git a/static/files/style.css b/static/files/style.css
index 8b264c73..6a8c4f70 100644
--- a/static/files/style.css
+++ b/static/files/style.css
@@ -361,6 +361,15 @@ span.msg {
span.warning ul, span.msg ul {
padding: 0 0 0 15px;
}
+a.help {
+ vertical-align: super;
+ font-size: 10px;
+ text-decoration: none;
+ font-weight: bold;
+ padding-left: 1px;
+ /*background: #eee;*/
+}
+
/* VN page header, general dl and list markup */
dt {