mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* pda style: hide task toggles
This commit is contained in:
parent
02f4d1702a
commit
8907051b4b
3 changed files with 8 additions and 7 deletions
|
|
@ -912,7 +912,7 @@ function loadLists(onInit, updAccess)
|
|||
if(curList.published) $('#btnPublish').addClass('mtt-item-checked');
|
||||
else $('#btnPublish').removeClass('mtt-item-checked');
|
||||
//if(curList.published)
|
||||
$('#rss_icon').show().find('a').attr('href', 'feed.php?list='+curList.id);
|
||||
$('#rss_icon').find('a').attr('href', 'feed.php?list='+curList.id);
|
||||
if(flag.needAuth && !flag.isLogged) $('#bar_public').show();
|
||||
}
|
||||
else {
|
||||
|
|
@ -920,7 +920,6 @@ function loadLists(onInit, updAccess)
|
|||
$('#lists .mtt-htabs').children().addClass('invisible');
|
||||
$('#page_tasks h3').children().addClass('invisible');
|
||||
$('#mylistscontainer .mtt-need-list').addClass('mtt-disabled');
|
||||
$('#rss_icon').hide();
|
||||
$('#tasklist').html('');
|
||||
}
|
||||
ti += '<li class="mtt-tabs-button menu-owner"><a href="#" id="mylists" onClick="btnMenu(this);return false;"><span><img src="images/arrdown.gif"></span></a></li>';
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
<div id="lists">
|
||||
<ul class="mtt-tabs"></ul>
|
||||
<div class="mtt-htabs">
|
||||
<span id="rss_icon" style="display:none;"><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" style="border:none;" 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>
|
||||
|
|
|
|||
10
src/pda.css
10
src/pda.css
|
|
@ -22,12 +22,14 @@ h3 { margin-bottom:4px; padding:4px 0; }
|
|||
#tasklist li .task-through { white-space:nowrap; overflow:hidden; }
|
||||
#tasklist li:hover { background-color:#ffffff; }
|
||||
#tasklist li.task-expanded .task-note-block { display:none; }
|
||||
#tasklist li.task-expanded .task-toggle { background-position:-32px 0; }
|
||||
/*#tasklist li.task-expanded .task-toggle { background-position:-32px 0; }*/
|
||||
#tasklist li.clicked { background-color:#f6f6f6; }
|
||||
#tasklist li.clicked .task-actions { display:block; }
|
||||
#tasklist li.clicked .task-through { white-space:normal; }
|
||||
#tasklist li.clicked .task-through { white-space:normal; display:inline; }
|
||||
#tasklist li.clicked.task-has-note .task-note-block { display:block; }
|
||||
#tasklist li.clicked.task-has-note .task-toggle { background-position:-48px 0; }
|
||||
/*#tasklist li.clicked.task-has-note .task-toggle { background-position:-48px 0; } */
|
||||
.task-toggle { display:none; }
|
||||
.task-middle { margin-left:25px; }
|
||||
|
||||
#page_taskedit { max-width:100%; padding:0px; }
|
||||
.form-table { width:100%; }
|
||||
|
|
@ -39,4 +41,4 @@ h3 { margin-bottom:4px; padding:4px 0; }
|
|||
|
||||
#tagcloud { max-width:100%; }
|
||||
.mtt-settings-table .in350 { min-width:50px; }
|
||||
.mtt-notes-showhide { display:none; }
|
||||
.mtt-notes-showhide { display:none; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue