summaryrefslogtreecommitdiffstats
path: root/htdocs/css
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2009-02-08 21:40:17 +1100
committerJeremy Kerr <jk@ozlabs.org>2009-02-08 21:44:25 +1100
commit6ce62d26739ebf0dd81ecff5284adf3fbe2aed23 (patch)
tree1bd8034844b48ef8c91f232de7000ff12450a06d /htdocs/css
parent6cf8d6e128b9117f10431eb9b534e9c8b1024cdf (diff)
downloadpatchwork-6ce62d26739ebf0dd81ecff5284adf3fbe2aed23.tar.bz2
patchwork-6ce62d26739ebf0dd81ecff5284adf3fbe2aed23.tar.xz
Bundle reordering support
Bundles can now be reordered and saved. Add dependency on jquery in INSTALL. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'htdocs/css')
-rw-r--r--htdocs/css/style.css27
1 files changed, 26 insertions, 1 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css
index 4d1e440..1813c20 100644
--- a/htdocs/css/style.css
+++ b/htdocs/css/style.css
@@ -152,7 +152,13 @@ table.patchlist td.patchlistfilters {
border-top: thin solid gray;
border-bottom: thin solid black;
font-size: smaller;
-
+}
+table.patchlist td.patchlistreorder {
+ background: #c0c0ff;
+ border-top: thin solid gray;
+ border-bottom: thin solid black;
+ font-size: smaller;
+ text-align: right;
}
table.patchlist tr.odd {
background: #ffffff;
@@ -178,6 +184,25 @@ div.patchforms {
margin-top: 2em;
}
+/* list order manipulation */
+
+table.patchlist tr.draghover {
+ background: #e8e8e8 !important;
+}
+
+.dragging {
+ border: thin solid black;
+ background: #e8e8e8 !important;
+}
+
+input#reorder-cancel {
+ display: none;
+ color: #505050;
+}
+
+input#reorder-change {
+}
+
/* list pagination */
.paginator { padding-bottom: 1em; padding-top: 1em; font-size: 80%; }