]> git.quilime.com - clmpr.git/commitdiff
Updated styles of tags and layout
authorGabriel Dunne <gdunne@quilime.com>
Fri, 23 Dec 2011 05:34:45 +0000 (21:34 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Fri, 23 Dec 2011 05:34:45 +0000 (21:34 -0800)
get.php
style.css
tags.php

diff --git a/get.php b/get.php
index 0362670ea1638f289cf34f96b0147e5e4a5e3fba..a2346a93d5fa6e16e8ae4aa43fef8fc04a0f213e 100644 (file)
--- a/get.php
+++ b/get.php
@@ -20,6 +20,7 @@ try {
     if ($params['user']) {
         $user = get_users($dbh, array('user' => $params['user'] ));
         if ($user) {
+
             $q = $dbh->prepare("SELECT *, clumps.id as clump_id
                                 FROM clumps
                                 JOIN users
@@ -83,9 +84,10 @@ switch ($format) {
 
 <?php include 'header.html'; ?>
 
+
 <?php if ($tag) : ?>
 <p>
-<strong><a href="/tags/">tag</a>:</strong> <i><?php echo $tag ?></i>
+<a href="/tags/">tags</a>: <i><?php echo $tag ?></i>
 </p>
 <?php else: ?>
 <p>
@@ -141,6 +143,7 @@ function deleteClump( id, elem ) {
                 </span>
             <?php endif; ?>
             <?php if (count($row['tags']) > 0) : ?>
+            <br />
             <ul class="tags">
                 <?php foreach($row['tags'] as $tag) : ?>
                 <li><a href="/tag/<?=$tag?>"><?=$tag?></a></li>
index 86326f23f15e9107c1c04605e00a3e11d179d837..0d33a4f87d176d59e24a855a36d6cc274a4d889f 100644 (file)
--- a/style.css
+++ b/style.css
@@ -5,10 +5,13 @@ body {
      line-height: 1.3em;
 }
 a {
-    text-decoration:none;
 }
 a:hover {
-    color: #000099 !important;
+    color: #00e !important;
+    text-decoration:none;
+}
+a.mute {
+    color:#444;
 }
 ul {
     padding: 0pt;
@@ -49,15 +52,17 @@ hr {
 }
 
 
+ul.links {
+    padding:0 0 3px 0;
+}
 ul.links li {
-    margin-top:1.5em;
-    margin-bottom:1.5em;
+    margin-top:2em;
+    margin-bottom:2em;
 }
 ul.links li span.url a {
     display:inline-block;
 }
 ul.links li span.url a {
-    text-decoration:underline;
     color:#000;
 }
 ul.links li span.url a:hover {
@@ -73,7 +78,14 @@ ul.links li .desc {
     display:inline-block;
 }
 ul.links li .tags {
-    display:block;
+}
+ul.links li .tags:hover,
+ul.links li .tags:hover a {
+    color:#777;
+}
+ul.links li .tags:hover a:hover {
+    color:#00e !important;
+    text-decoration:underline;
 }
 
 .meta {
@@ -92,13 +104,14 @@ ul.links li .tags {
     font-style:normal;
 }
 a.ui {
-    color:#55d !important;
+    color:#333 !important;
     text-decoration:underline;
 }
 a.ui:hover {
+    color:#00d !important;
     text-decoration:none;
 }
-.ui.delete {
+.ui.delete
 }
 .ui.edit {
 }
@@ -107,7 +120,13 @@ a.ui:hover {
 form.new input[type="text"] {
     width:100%;
 }
-
+form.new textarea {
+    width:100%;
+    height:4em;
+    font-family:Lucida Grande, inherited;
+    font-size:11px;
+    padding:3px;
+}
 
 
 ul.tags, ul.tags li {
@@ -116,13 +135,14 @@ ul.tags, ul.tags li {
     font-size:12px;
 }
 ul.tags li {
-    margin:0 1px 0 0;
+    margin:0 0.2em 0 0;
 }
 ul.tags li a {
     color:#aaa;
     text-decoration:none;
 }
 ul.tags li a:hover {
+    text-decoration:underline;
 }
 ul.tags li:after {
     content:", "
@@ -134,6 +154,8 @@ ul.tags li:last-child:after {
 
 
 
+
+
 .tag-help {
     font-weight:normal;
     font-size:12px;
@@ -146,3 +168,4 @@ ul.tags li:last-child:after {
 #tags li {
     font-size:14px;
 }
+
index ffb9d24c03e4b0f1a44f69f8806bef4c534a4706..0d527021021ff29d4cd2b2f8389b491c84d5d6d6 100644 (file)
--- a/tags.php
+++ b/tags.php
@@ -11,16 +11,16 @@ $dbh->beginTransaction();
 try {
        /*
     if ($params['tag']) {
-        $q = $dbh->prepare("SELECT *, tags.id as tag_id 
-                            FROM tags 
-                            WHERE tag = ? 
+        $q = $dbh->prepare("SELECT *, tags.id as tag_id
+                            FROM tags
+                            WHERE tag = ?
                             ORDER BY tag DESC");
         $q->execute( array( $params['tag'] ));
     }
     else {
        */
-        $q = $dbh->prepare("SELECT * FROM `tags` 
-                            WHERE `count` > 0 
+        $q = $dbh->prepare("SELECT * FROM `tags`
+                            WHERE `count` > 0
                             ORDER BY `count` DESC, `tag` ASC ");
         $q->execute();