no background for image-list
This commit is contained in:
parent
c638af1d76
commit
f2dfbb9080
3 changed files with 8 additions and 8 deletions
6
ext/index/style.css
Normal file
6
ext/index/style.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
#image-list .blockbody {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
|
@ -50,11 +50,11 @@ and of course start organising your images :-)
|
|||
$page->add_block(new Block("Navigation", $nav, "left", 0));
|
||||
if(count($images) > 0) {
|
||||
if($query) {
|
||||
$page->add_block(new Block("Images", $this->build_table($images, "#search=$query"), "main", 10));
|
||||
$page->add_block(new Block("Images", $this->build_table($images, "#search=$query"), "main", 10, "image-list"));
|
||||
$this->display_paginator($page, "post/list/$query", null, $this->page_number, $this->total_pages);
|
||||
}
|
||||
else {
|
||||
$page->add_block(new Block("Images", $this->build_table($images, null), "main", 10));
|
||||
$page->add_block(new Block("Images", $this->build_table($images, null), "main", 10, "image-list"));
|
||||
$this->display_paginator($page, "post/list", null, $this->page_number, $this->total_pages);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -179,9 +179,3 @@ ARTICLE TABLE {
|
|||
-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* webkit haven't committed yet */
|
||||
-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* mozilla haven't committed yet */
|
||||
}
|
||||
|
||||
#Imagesmain .blockbody {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
|
Reference in a new issue