mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-10 17:29:18 -04:00
Renamed most, if not all css selectors from gName to g-name. Moved a few shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
<li class="ui-icon-left">
|
||||
<span class="ui-icon ui-icon-folder-open"></span>
|
||||
<span class="gDirectory" ref="">
|
||||
<span class="g-directory" ref="">
|
||||
<?= t("All") ?>
|
||||
</span>
|
||||
<ul>
|
||||
@@ -9,7 +9,7 @@
|
||||
<? foreach ($parents as $dir): ?>
|
||||
<li class="ui-icon-left">
|
||||
<span class="ui-icon ui-icon-folder-open"></span>
|
||||
<span class="gDirectory" ref="<?= html::clean_attribute($dir) ?>">
|
||||
<span class="g-directory" ref="<?= html::clean_attribute($dir) ?>">
|
||||
<?= html::clean(basename($dir)) ?>
|
||||
</span>
|
||||
<ul>
|
||||
@@ -18,7 +18,7 @@
|
||||
<? foreach ($files as $file): ?>
|
||||
<li class="ui-icon-left">
|
||||
<span class="ui-icon <?= is_dir($file) ? "ui-icon-folder-collapsed" : "ui-icon-document" ?>"></span>
|
||||
<span class="<?= is_dir($file) ? "gDirectory" : "gFile" ?>"
|
||||
<span class="<?= is_dir($file) ? "g-directory" : "g-file" ?>"
|
||||
ref="<?= html::clean_attribute($file) ?>" >
|
||||
<?= html::clean(basename($file)) ?>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user