mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* more improvements in RTL support
This commit is contained in:
parent
08f02ba2d3
commit
f887a4dee3
5 changed files with 10 additions and 5 deletions
BIN
src/images/corner_left.gif
Normal file
BIN
src/images/corner_left.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 B |
Binary file not shown.
|
Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 270 B |
|
|
@ -96,7 +96,7 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
|
||||
<div id="bar">
|
||||
<div id="msg"><span class="msg-text" onClick="toggleMsgDetails()"></span><div class="msg-details"></div></div>
|
||||
<div class="right">
|
||||
<div class="bar-menu">
|
||||
<span class="menu-owner">
|
||||
<a href="#settings" onClick="showSettings();return false;"><?php _e('a_settings');?></a>
|
||||
</span>
|
||||
|
|
@ -116,10 +116,10 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
<div id="lists">
|
||||
<ul class="mtt-tabs"></ul>
|
||||
<div class="mtt-htabs">
|
||||
<span id="rss_icon"><a href="#" title="<?php _e('rss_feed');?>"><img src="images/feed_bw.png" style="border:none;" onMouseOver="this.src='images/feed.png'" onMouseOut="this.src='images/feed_bw.png'"></a></span>
|
||||
<span id="rss_icon"><a href="#" title="<?php _e('rss_feed');?>"><img src="images/feed_bw.png" onMouseOver="this.src='images/feed.png'" onMouseOut="this.src='images/feed_bw.png'"></a></span>
|
||||
<span id="htab_newtask"><?php _e('htab_newtask');?>
|
||||
<form onSubmit="return submitNewTask(this)"><input type="text" name="task" value="" maxlength="250" id="task"> <input type="submit" value="<?php _e('btn_add');?>"></form>
|
||||
<a href="#" onClick="showEditForm(1);return false;" title="<?php _e('advanced_add');?>"><img src="images/page_white_edit_bw.png" style="border:none;vertical-align:text-top;" onMouseOver="this.src='images/page_white_edit.png'" onMouseOut="this.src='images/page_white_edit_bw.png'"></a>
|
||||
<a href="#" onClick="showEditForm(1);return false;" title="<?php _e('advanced_add');?>"><img src="images/page_white_edit_bw.png" onMouseOver="this.src='images/page_white_edit.png'" onMouseOut="this.src='images/page_white_edit_bw.png'"></a>
|
||||
| <a href="#" class="htab-toggle" onClick="addsearchToggle(1);this.blur();return false;"><?php _e('htab_search');?></a>
|
||||
</span>
|
||||
<span id="htab_search" style="display:none"><?php _e('htab_search');?>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ a { color:#0000ff; }
|
|||
#footer_content a { color:#000000; }
|
||||
|
||||
#bar { border-bottom:1px solid #b5d5ff; padding-bottom:5px; height:15px; }
|
||||
.right { float:right; }
|
||||
.bar-menu { float:right; }
|
||||
.nodecor { text-decoration:none; }
|
||||
#bar_logout { display:none; }
|
||||
#bar_auth { display:none; }
|
||||
|
|
@ -41,6 +41,7 @@ a { color:#0000ff; }
|
|||
|
||||
#page_tasks.readonly #htab_search a.htab-toggle { color:#444; }
|
||||
.mtt-htabs { clear:both; padding:8px; border-bottom:2px solid #DEDEDE; background:url(images/corner_right.gif) no-repeat top right #ededed; }
|
||||
#htab_newtask a>img { border:none; vertical-align:text-top; }
|
||||
#loading { float:left; padding-top:5px; background-color:#ffffff; display:none; padding-right:6px;}
|
||||
#task, #search { color:#444444; width:300px; }
|
||||
.small-bar{ font-size:8pt; color:#999999; font-weight:normal;}
|
||||
|
|
@ -60,6 +61,7 @@ a { color:#0000ff; }
|
|||
|
||||
.mtt-notes-showhide { font-size:8pt; font-weight:normal; margin-left:2px; margin-right:2px; }
|
||||
#rss_icon { float:right;margin-top:4px; }
|
||||
#rss_icon img { border:none; }
|
||||
|
||||
.task-left { float:left; }
|
||||
.task-toggle { visibility:hidden; margin-top:2px; cursor:pointer; width:15px; height:15px; float:left; background:url(images/icons.gif) -32px 0 no-repeat; }
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
body { direction:rtl; }
|
||||
h2 { float:right; }
|
||||
.right { float:left; }
|
||||
.bar-menu { float:left; }
|
||||
#loading { float:right; }
|
||||
#lists .mtt-tabs { float:right; }
|
||||
#rss_icon { float:left; }
|
||||
#sort { float:left; margin-left:0px; margin-right:5px; }
|
||||
.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; }
|
||||
|
||||
.task-actions { float:left; text-align:left; width:15px; }
|
||||
.task-left { float:right; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue