diff options
-rw-r--r-- | lib/gallery.common.css | 30 | ||||
-rw-r--r-- | modules/gallery/views/login.html.php | 2 | ||||
-rw-r--r-- | themes/admin_wind/css/screen.css | 24 | ||||
-rw-r--r-- | themes/admin_wind/views/admin.html.php | 4 | ||||
-rw-r--r-- | themes/wind/css/screen.css | 13 |
5 files changed, 62 insertions, 11 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index 4cb5735f..fc3ed40e 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -523,7 +523,7 @@ div#g-action-status { /* Pagination ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ .g-pager { - padding: 5px 0; + padding: .2em 0; width: 100%; } @@ -573,10 +573,16 @@ div#g-action-status { direction: rtl; } +.rtl #g-header, +.rtl #g-content, +.rtl #g-sidebar, +.rtl #g-footer, .rtl caption, .rtl th, .rtl #g-dialog, -.g-message { +.rtl .g-context-menu li a, +.rtl .g-message-box li, +.rtl #g-site-status li { text-align: right; } @@ -584,6 +590,14 @@ div#g-action-status { text-align: left; } +.rtl .g-error, +.rtl .g-info, +.rtl .g-success, +.rtl .g-warning { + background-position: center right; + padding-right: 30px !important; +} + .rtl .g-left, .rtl .g-inline li, .rtl form ul ul li, @@ -610,3 +624,15 @@ div#g-action-status { .rtl .g-inline li.g-first { margin-right: 0; } + +.rtl .g-breadcrumbs .g-first { + padding-right: 0; +} + +.rtl .g-pager .g-info { + width: 35%; +} + +.rtl .g-pager .g-txt-right { + margin-left: 0; +} diff --git a/modules/gallery/views/login.html.php b/modules/gallery/views/login.html.php index a7734369..4c13ef4b 100644 --- a/modules/gallery/views/login.html.php +++ b/modules/gallery/views/login.html.php @@ -1,5 +1,5 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<ul id="g-login-menu" class="g-inline g-right"> +<ul id="g-login-menu" class="g-inline ui-helper-clearfix"> <? if ($user->guest): ?> <li class="g-first"> <a href="<?= url::site("login/ajax") ?>" diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css index fbcdf4ae..233cacaf 100644 --- a/themes/admin_wind/css/screen.css +++ b/themes/admin_wind/css/screen.css @@ -195,6 +195,12 @@ th { * 3) Page layout containers *********************************************************************/ +/* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ + +#g-header #g-login-menu { + margin-top: 1em; +} + /* View container ~~~~~~~~~~~~~~~~~~~~~~~~ */ .g-view { @@ -217,7 +223,7 @@ th { #g-content { font-size: 1.1em; - padding-left: 20px; + padding: 0 2em; width: 96%; } @@ -457,11 +463,6 @@ th { * 7) Right to left styles *********************************************************************/ -.rtl #g-admin-menu { - left: auto; - right: 150px; -} - .rtl #g-content #g-album-grid .g-item, .rtl #g-site-theme, .rtl #g-admin-theme, @@ -478,3 +479,14 @@ th { margin-left: 1em; margin-right: 0em; } + +.rtl #g-site-admin-menu { + left: auto; + right: 150px; +} + +.rtl #g-header #g-login-menu li { + margin-left: 0; + padding-left: 0; + padding-right: 1.2em; +} diff --git a/themes/admin_wind/views/admin.html.php b/themes/admin_wind/views/admin.html.php index e554b817..25ba1c97 100644 --- a/themes/admin_wind/views/admin.html.php +++ b/themes/admin_wind/views/admin.html.php @@ -41,7 +41,7 @@ <div id="doc3" class="yui-t7 g-view"> <? endif; ?> <?= $theme->site_status() ?> - <div id="g-header"> + <div id="g-header" class="ui-helper-clearfix"> <?= $theme->admin_header_top() ?> <ul id="g-login-menu" class="g-inline g-right"> <li class="g-first"> @@ -57,7 +57,7 @@ </li> <li id="g-logout-link"><a href="<?= url::site("logout?csrf=$csrf&continue=" . urlencode(item::root()->url())) ?>"><?= t("Logout") ?></a></li> </ul> - <a id="g-logo" href="<?= item::root()->url() ?>" title="<?= t("go back to the Gallery")->for_html_attr() ?>"> + <a id="g-logo" class="g-left" href="<?= item::root()->url() ?>" title="<?= t("go back to the Gallery")->for_html_attr() ?>"> ← <?= t("back to the ...") ?> </a> <div id="g-site-admin-menu" class="ui-helper-clearfix"> diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index b73c21f0..acc6af03 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -307,6 +307,7 @@ td { #g-banner #g-login-menu { color: #999; + float: right; } #g-banner #g-login-menu li { @@ -415,6 +416,18 @@ td { * 7) Right to left styles *********************************************************************/ +.rtl #g-header #g-login-menu, +.rtl #g-header #g-quick-search-form { + clear: left; + float: left; +} + +.rtl #g-header #g-login-menu li { + margin-left: 0; + padding-left: 0; + padding-right: 1.2em; +} + .rtl #g-site-menu { left: auto; right: 150px; |