diff --git a/src/themes/default/index.php b/src/themes/default/index.php index 62c8a55..b476a53 100644 --- a/src/themes/default/index.php +++ b/src/themes/default/index.php @@ -92,7 +92,7 @@ $().ready(function(){
|
diff --git a/src/themes/default/style.css b/src/themes/default/style.css
index c22c225..e24507c 100644
--- a/src/themes/default/style.css
+++ b/src/themes/default/style.css
@@ -118,6 +118,7 @@ a { color:#0000ff; cursor:pointer; text-decoration:underline; }
/* Live Search */
+#htab_search { float:right; }
#search {
color:#444444; background:#fff; height:1.35em; padding:2px 18px; width:100%; margin-left:-38px; /*padding+border*/
border:1px inset #F0F0F0; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px;
@@ -277,11 +278,11 @@ a.mtt-back-button { font-size:0.8em; }
.ui-datepicker-calendar td.ui-datepicker-today a { color:#fff; background-color:#ccc; }
.ui-datepicker-calendar td a:hover { border-color:#5980FF; }
.ui-datepicker-header { padding:3px 0px; }
-.ui-datepicker-prev { position:absolute; left:2px; height:20px; }
-.ui-datepicker-next { position:absolute; right:2px; height:20px; }
+.ui-datepicker-prev { position:absolute; left:2px; height:20px; text-decoration:none; }
+.ui-datepicker-next { position:absolute; right:2px; height:20px; text-decoration:none; }
.ui-datepicker-title { text-align:center; line-height:20px; }
.ui-icon { width:16px; height:16px; text-indent:-99999px; overflow:hidden; }
-.ui-datepicker .ui-icon-circle-triangle-w { display:block; position:absolute; top:50%; margin-top:-8px; background:url(images/icons.gif) -48px -16px no-repeat; }
+.ui-datepicker .ui-icon-circle-triangle-w { display:block; position:absolute; top:50%; margin-top:-8px; left:50%; background:url(images/icons.gif) -48px -16px no-repeat; }
.ui-datepicker .ui-icon-circle-triangle-e { display:block; position:absolute; top:50%; margin-top:-8px; right:50%; background:url(images/icons.gif) -32px -16px no-repeat; }
.mtt-menu-button {
diff --git a/src/themes/default/style_rtl.css b/src/themes/default/style_rtl.css
index 8607950..df489f2 100644
--- a/src/themes/default/style_rtl.css
+++ b/src/themes/default/style_rtl.css
@@ -1,12 +1,21 @@
body { direction:rtl; }
-h2 { float:right; }
+h2 { float:right; padding-left:10px; padding-right:0px; }
.bar-menu { float:left; }
#loading { float:right; }
#lists .mtt-tabs { float:right; }
-#rss_icon { float:left; }
.mtt-tabs li { float:right; margin:1px 0 0 3px; border-left:none; border-right:1px solid #ededed; background:#fbfbfb url(images/tab_hover.gif) no-repeat top left; }
.mtt-tabs li.mtt-tabs-selected { border-left:none; border-right:1px solid #ededed; background:#ededed url(images/corner_left.gif) no-repeat top left; }
-.mtt-htabs { background:url(images/corner_left.gif) no-repeat top left #ededed; }
+
+#tabs_buttons { float:left; }
+.mtt-tabs-button { float:right; }
+#tagcloudbtn { float:left; }
+
+#htab_search { float:left; }
+#task { padding: 2px 2px 2px 18px; }
+#task_placeholder span { right:0px; left:auto; }
+.mtt-taskbox-icon.mtt-icon-submittask { left:4px; right:auto; }
+.mtt-searchbox-icon.mtt-icon-search { right:4px; left:auto; }
+.mtt-searchbox-icon.mtt-icon-cancelsearch { left:4px; right:auto; }
.task-actions { float:left; text-align:left; width:15px; }
.task-left { float:right; }
@@ -14,6 +23,10 @@ h2 { float:right; }
.task-middle { margin-right:40px; margin-left:25px; }
.task-date { margin-right:4px; }
.duedate { float:left; margin-left:0; margin-right:5px; }
+.duedate-arrow { display:none; }
+.duedate:before { content:'\2190'; }
+.task-through-right { float:left; }
+
#taskedit-date { float:left; }
#page_taskedit .form-row-short { float:right; margin-left:12px; margin-right:0; }
.task-prio { float:right; margin-left:4px; margin-right:0; }
|