mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* "manage lists" button placed on tabs line
This commit is contained in:
parent
fd4849a737
commit
dc91472d1b
3 changed files with 8 additions and 5 deletions
|
|
@ -949,6 +949,7 @@ function loadLists(onInit)
|
|||
tabLists[i] = item;
|
||||
ti += '<li class="'+(i==0?'mtt-tabs-selected':'')+'"><a href="#list'+item.id+'" onClick="mttTabSelected(this,'+i+');return false;">'+item.name+'</a></li>';
|
||||
});
|
||||
ti += '<li class="mtt-tabs-button menu-owner"><a href="#" id="mylists" onClick="btnMenu(this);return false;"><img src="images/arrdown.gif"></a></li>';
|
||||
$('#lists>ul').html(ti);
|
||||
$('#lists').show();
|
||||
curList = tabLists[0];
|
||||
|
|
|
|||
|
|
@ -94,7 +94,6 @@ $().ajaxStop( function(r,s) {$("#loading").fadeOut();} );
|
|||
<div style="float:left"><span id="msg" onClick="toggleMsgDetails()"></span><div id="msgdetails"></div></div>
|
||||
<div align="right">
|
||||
<span class="menu-owner">
|
||||
<a href="#" id="mylists" class="nodecor" onClick="btnMenu(this);return false;"><u>My lists</u> <img src="images/arrdown.gif" border=0></a> |
|
||||
<a href="settings.php">Settings</a>
|
||||
</span>
|
||||
<span class="bar-delim" style="display:none"> | </span>
|
||||
|
|
|
|||
|
|
@ -24,15 +24,18 @@ a { color:#0000ff; }
|
|||
#authform div.h { font-weight:bold; }
|
||||
|
||||
.mtt-tabs ul { list-style: none; padding:0; margin:0; }
|
||||
.mtt-tabs ul li { margin:0; font-size: 9pt; font-weight:bold; float: left; width:89px; text-align:center; margin-right: 6px; border-left:1px solid #fff; }
|
||||
.mtt-tabs ul a { margin:0px; text-decoration: none; color:#444444; display: block; height:21px; width: 100%; padding-top: 6px; outline:none; }
|
||||
.mtt-tabs ul li { margin:0; font-size: 9pt; font-weight:bold; float: left; width:89px; text-align:center; margin-right:3px; border-left:1px solid #ededed; }
|
||||
.mtt-tabs ul a { margin:0px; text-decoration: none; color:#444444; display: block; height:21px; width: 100%; padding-top: 6px; outline:none; background:url(images/tab_hover.gif) no-repeat top right; }
|
||||
.mtt-tabs ul li.mtt-tabs-selected { background:#ededed; border-left:1px solid #ededed; }
|
||||
.mtt-tabs ul li.mtt-tabs-selected a { background:url(images/corner_right.gif) no-repeat top right; }
|
||||
.mtt-tabs ul li:hover { border-left:1px solid #ededed; }
|
||||
.mtt-tabs ul li:hover a { color: #888888; background:url(images/tab_hover.gif) no-repeat top right; }
|
||||
.mtt-tabs ul li:hover a { color: #888888; }
|
||||
#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; }
|
||||
#loading { float:left; padding-top:5px; background-color:#ffffff; display:none; padding-right:6px;}
|
||||
.mtt-tabs ul li.mtt-tabs-button { width:21px; }
|
||||
.mtt-tabs ul li.mtt-tabs-button a img { border:none;}
|
||||
.mtt-tabs ul li.mtt-tabs-button:hover a img { opacity:0.5; }
|
||||
#page_tasks.readonly li.mtt-tabs-button { display:none; }
|
||||
|
||||
#task, #search { color:#444444; width:300px; }
|
||||
.small-bar{ font-size:8pt; color:#999999; font-weight:normal;}
|
||||
|
|
|
|||
Loading…
Reference in a new issue