allow users to set categories on their posts

This commit is contained in:
Michael Johnston 2012-04-01 21:28:31 -04:00
parent 06e9a8b7a0
commit 581b54c974
11 changed files with 226 additions and 18 deletions

View file

@ -285,7 +285,7 @@ div.wall-item-content-wrapper.shiny {
float: left;
}
#jot-title {
#jot-title, #jot-category {
border: 0px;
margin: 0px;
height: 20px;
@ -296,11 +296,15 @@ div.wall-item-content-wrapper.shiny {
}
#jot-title::-webkit-input-placeholder{font-weight: normal;}
#jot-category::-webkit-input-placeholder{font-weight: normal;}
#jot-title:-moz-placeholder{font-weight: normal;}
#jot-category:-moz-placeholder{font-weight: normal;}
#jot-title:hover,
#jot-title:focus {
#jot-title:focus,
#jot-category:hover,
#jot-category:focus {
border: 1px solid #cccccc;
}
@ -322,7 +326,7 @@ div.wall-item-content-wrapper.shiny {
margin-bottom: 10px;
}
.group-selected, .nets-selected, .fileas-selected {
.group-selected, .nets-selected, .fileas-selected, .categories-selected {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
@ -1881,11 +1885,11 @@ a.mail-list-link {
margin-top: 10px;
}
.nets-ul, .fileas-ul {
.nets-ul, .fileas-ul, .categories-ul {
list-style-type: none;
}
.nets-ul li, .fileas-ul li {
.nets-ul li, .fileas-ul li, .categories-ul li {
margin-top: 10px;
}
@ -1896,11 +1900,11 @@ a.mail-list-link {
margin-left: 42px;
}
.fileas-link {
.fileas-link, .categories-link {
margin-left: 24px;
}
.fileas-all {
.fileas-all, .categories-all {
margin-left: 0px;
}
@ -2628,12 +2632,12 @@ aside input[type='text'] {
margin-top: 10px;
}
.body-tag, .filesavetags {
.body-tag, .filesavetags, .categorytags {
opacity: 0.5;
filter:alpha(opacity=50);
}
.body-tag:hover, .filesavetags:hover {
.body-tag:hover, .filesavetags:hover, .categorytags:hover {
opacity: 1.0 !important;
filter:alpha(opacity=100) !important;
}