summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/admin_wind/css/screen.css33
-rw-r--r--themes/wind/css/fix-ie.css15
-rw-r--r--themes/wind/views/album.html.php2
-rw-r--r--themes/wind/views/page.html.php6
4 files changed, 50 insertions, 6 deletions
diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css
index dbfb59e8..2ea60402 100644
--- a/themes/admin_wind/css/screen.css
+++ b/themes/admin_wind/css/screen.css
@@ -399,6 +399,37 @@ th {
background-color: #FFF;
}
+/* Theme options ~~~~~~~~~~~~~~~~~~~~~~~~ */
+#g-theme-options-form {
+ border: 1px solid #a6c9e2;
+}
+#g-theme-options-form-tabs {
+ border: none !important;
+}
+#g-theme-options-form fieldset {
+ border: none;
+}
+
+.ui-tabs .ui-tabs-nav li a {
+ padding: 0 1em;
+}
+
+.ui-tabs .ui-tabs-nav li a.g-error {
+ background: none no-repeat scroll 0 0 transparent;
+ color: #FF0000 !important;
+}
+
+/* Language options ~~~~~~~~~~~~~~~~~~~~~~~~ */
+#g-share-translations-form fieldset {
+ border: 0px;
+ margin: 0px;
+ padding: 0px;
+}
+
+#g-share-translations-form fieldset legend {
+ display: none;
+}
+
/** *******************************************************************
* 5) Navigation and menus
*********************************************************************/
@@ -487,4 +518,4 @@ th {
.rtl .g-selected img,
.rtl .g-available .g-block img {
margin: 0 0 1em 1em;
-} \ No newline at end of file
+}
diff --git a/themes/wind/css/fix-ie.css b/themes/wind/css/fix-ie.css
index f7f08486..ac100da4 100644
--- a/themes/wind/css/fix-ie.css
+++ b/themes/wind/css/fix-ie.css
@@ -7,6 +7,10 @@
zoom: 1;
}
+#g-sidebar {
+ overflow: hidden;
+}
+
#g-photo,
#g-movie {
zoom: 1;
@@ -22,8 +26,17 @@ input.submit {
display: inline !important;
}
+.g-short-form input[type='submit'] {
+ line-height: 1em;
+ padding: .38em .3em;
+}
+
#g-add-tag-form input.textbox {
- width: 110px;
+ width: 110px !important;
+}
+
+#g-add-tag-form input[type='submit'] {
+ padding: .3em 0 !important;
}
#g-dialog .g-cancel {
diff --git a/themes/wind/views/album.html.php b/themes/wind/views/album.html.php
index b9072e2b..de196be0 100644
--- a/themes/wind/views/album.html.php
+++ b/themes/wind/views/album.html.php
@@ -29,7 +29,7 @@
<? endforeach ?>
<? else: ?>
<? if ($user->admin || access::can("add", $item)): ?>
- <? $addurl = url::site("flash_uploader/app/$item->id") ?>
+ <? $addurl = url::site("uploader/index/$item->id") ?>
<li><?= t("There aren't any photos here yet! <a %attrs>Add some</a>.",
array("attrs" => html::mark_clean("href=\"$addurl\" class=\"g-dialog-link\""))) ?></li>
<? else: ?>
diff --git a/themes/wind/views/page.html.php b/themes/wind/views/page.html.php
index 16e43c63..9f94b04f 100644
--- a/themes/wind/views/page.html.php
+++ b/themes/wind/views/page.html.php
@@ -29,7 +29,7 @@
<?= $theme->css("themeroller/ui.base.css") ?>
<?= $theme->css("gallery.common.css") ?>
<?= $theme->css("screen.css") ?>
- <!--[if lt IE 8]>
+ <!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="<?= $theme->url("css/fix-ie.css") ?>"
media="screen,print,projection" />
<![endif]-->
@@ -107,13 +107,13 @@
level you're on the right page. -->
<a href="<?= $parent->url($parent == $theme->item()->parent() ?
"show={$theme->item()->id}" : null) ?>">
- <?= text::limit_chars(html::purify($parent->title), 15) ?>
+ <?= html::purify(text::limit_chars($parent->title, 15)) ?>
</a>
</li>
<? $i++ ?>
<? endforeach ?>
<li class="g-active<? if ($i == 0) print " g-first" ?>">
- <?= text::limit_chars(html::purify($theme->item()->title), 15) ?>
+ <?= html::purify(text::limit_chars($theme->item()->title, 15)) ?>
</li>
</ul>
<? endif ?>