mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-08 16:10:56 -04:00
Differentiate between selected and non selected items.
This commit is contained in:
@@ -87,16 +87,10 @@
|
||||
}
|
||||
|
||||
.g-organize-microthumb-grid-cell {
|
||||
margin: 6px;
|
||||
padding: 0 !important;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.g-organize-microthumb {
|
||||
display: block;
|
||||
height: 100px;
|
||||
margin: 0;
|
||||
padding: .4em 0;
|
||||
margin: 6px;
|
||||
padding: .4em 0 !important;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
width: 110px;
|
||||
@@ -106,7 +100,7 @@
|
||||
z-index: 2000 !important;
|
||||
}
|
||||
|
||||
.g-organize-microthumb .ui-icon {
|
||||
.g-organize-microthumb-grid-cell .ui-icon {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
<? foreach ($album->children(25, $offset) as $child): ?>
|
||||
<li class="g-organize-microthumb-grid-cell g-left ui-state-default" ref="<?= $child->id ?>">
|
||||
<div id="g-organize-microthumb-<?= $child->id ?>"
|
||||
class="g-organize-microthumb <?= $child->is_album() ? "g-album" : "g-photo" ?> ui-state-active">
|
||||
<li class="g-organize-microthumb-grid-cell g-left ui-state-default ui-state-active" ref="<?= $child->id ?>">
|
||||
<!-- div id="g-organize-microthumb-<?= $child->id ?>"
|
||||
class="g-organize-microthumb <?= $child->is_album() ? "g-album" : "g-photo" ?> ui-state-active" -->
|
||||
<?= $child->thumb_img(array("class" => "g-thumbnail", "ref" => $child->id), 90, true) ?>
|
||||
<span<?= $child->is_album() ? " class=\"ui-icon ui-icon-note\"" : "" ?>></span>
|
||||
</div>
|
||||
<!-- /div -->
|
||||
</li>
|
||||
<? endforeach ?>
|
||||
|
||||
|
||||
@@ -447,3 +447,4 @@ td {
|
||||
.rtl #g-view-menu #g-slideshow-link {
|
||||
background-image: url('../images/ico-view-slideshow-rtl.png');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user