<p>
<label>title</label>
- <input type="text" name="title" value="<?php echo htmlentities($clump['title']); ?>">
+ <input type="text" tabindex="1" name="title" value="<?php echo htmlentities($clump['title']); ?>">
</p>
<p>
<label>url <a href="<?php echo $clump['url']; ?>" class="ui">go</a></label>
- <input type="text" name="url" value="<?php echo $clump['url']; ?>">
+ <input type="text" tabindex="2" name="url" value="<?php echo $clump['url']; ?>">
</p>
-
- <label>tags <a href="#" class="ui tag-help" onClick="$('#tag-help').toggle();return false;">how to tag »</a></label>
- <ul id="tag-help" style="display:none">
- <li><span class="bull">•</span>combine "multiple words" with quotes</li>
- <li><span class="bull">•</span>separate tags by space, comma, or enter</li>
- </ul>
- <input type="text" id="tag-input" name="tags" value="<?php echo $clump['tags']; ?>">
-
+ <p>
+ <label>tags <span class="ui">(combine "multiple words" with quotes)</span></label>
+ <input type="text" tabindex="3" id="tag-input" name="tags" value="<?php echo $clump['tags']; ?>">
+ <p>
<p>
<label>description</label>
- <input type="text" name="description" value="<?php echo htmlentities($clump['description']); ?>">
+ <input type="text" tabindex="4" name="description" value="<?php echo htmlentities($clump['description']); ?>">
</p>
<p>
<?php if ($canEdit) : ?>
<p>
<input type="hidden" value="<?php echo $clump['clump_id']; ?>" name="id" />
- <input type="submit" value="save">
+ <input type="submit" tabindex="5" value="save">
<a href="#" onClick="return deleteClump(<?php echo $clump['clump_id']; ?>);">delete</a>
</p>
<? endif; ?>
+/* ui overrride */
+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
+ color: #00d;
+ font-weight: normal;
+}
+ul.tagit li.tagit-choice .tagit-close .text-icon {
+
+}
+ul.tagit li.tagit-choice .tagit-close .text-icon:hover {
+ color: #00f !important;
+}
+
+
+
ul.tagit {
border: 1px solid #ccc;
}
}
ul.tagit li.tagit-choice {
border-radius: 2px;
- border: 1px solid #CAD8F3;
- background-color: #DEE7F8;
+ border: 1px solid #bbb;
+ background-color: #e0e0e0;
}
ul.tagit li.tagit-choice a.tagit-close {
text-decoration: none;
background-color: #bbcef1;
border-color: #6d95e0;
}
+
+
ul.tagit li.tagit-choice a.tagLabel:hover,
ul.tagit li.tagit-choice a.tagit-close .text-icon:hover {
- color: #222;
}
ul.tagit input[type="text"] {
color: #333333;
<input type="text" name="url" tabindex="2" value="<?=$params['url']?>">
</p>
- <label>tags <a href="#" class="ui tag-help" onClick="$('#tag-help').toggle();return false;">how to tag »</a></label>
- <ul id="tag-help" style="display:none">
- <li><span class="bull">•</span>combine "multiple words" with quotes</li>
- <li><span class="bull">•</span>separate tags by space, comma, enter</li>
- </ul>
+ <p>
+ <label>tags <span class="ui">(combine "multiple words" with quotes)</span></label>
<input type="text" id="tag-input" name="tags" tabindex="3" value="">
+ </p>
<p>
<label>description</label>
.ui {
font-size:12px;
font-weight:normal;
- color:#55d !important;
font-style:normal;
+}
+a.ui {
+ color:#55d !important;
text-decoration:underline;
}
-.ui:hover {
+a.ui:hover {
text-decoration:none;
}
.ui.delete {