Commit 23aaf13e authored by Romain Loth's avatar Romain Loth

Documents view: add 'trashAll' checkbox and smarter duplicates presentation

parent 3924b0fd
......@@ -46,6 +46,25 @@ th a {
}
/* special effects for duplicate rows
*
* NB: top/bottom convention only works because of sort rule that always put smallest id first
*/
.duplrowkeep {
border-top: 3px solid black
}
.duplrowdel {
background-color: #CCC;
border-bottom: 3px solid black
}
/* table titles */
th.dynatable-head {
vertical-align: middle !important;
}
/* notes under table titles */
th .note {
color: #ccc;
......@@ -77,6 +96,8 @@ p.note > input {
p.note > label {
float: left;
margin-bottom: 0 ;
padding-bottom: 0 ;
}
.smaller {
......@@ -89,7 +110,7 @@ p.note > label {
#my-ajax-table tr:hover {
cursor: pointer;
font-weight: bold;
/*font-weight: bold;*/
}
/* ngram states */
......
......@@ -76,7 +76,6 @@
<select id="docFilter" name="docFilter">
<option value="filter_all">All</option>
<option value="filter_favs">Favorite documents</option>
<option value="filter_dupl_tit">Duplicates (title)</option>
<option value="filter_dupl_all">Duplicates (title, date &amp; src)</option>
</select>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment