app
This commit is contained in:
parent
1a9fa8f505
commit
ab7ae6dcee
|
@ -1159,11 +1159,23 @@ var orbitDesktop = function(dom){
|
|||
break;
|
||||
}
|
||||
return false;
|
||||
})
|
||||
});
|
||||
// fill width for tiny scroll bar
|
||||
var e = $('.list_t'),
|
||||
count = e.length,
|
||||
baseWidth = e.eq(1).outerWidth(true);
|
||||
|
||||
e.parents('.overview').width( baseWidth * count );
|
||||
|
||||
$('.tinycanvas')
|
||||
.tinyscrollbar({ axis: 'x'})
|
||||
.find('.scrollbar')
|
||||
.delay(1500)
|
||||
.addClass('op00', 500);
|
||||
}
|
||||
$("div#apps_store div#panel_r").load("/desktop_appstore/widgets",function(){
|
||||
$.getJSON("/desktop_appstore/getuserwidgets",function(userwidgets){
|
||||
var column = $('<div class="g_col list_t" style="width:350px;"><ul></ul></div>'),
|
||||
var column = $('<div class="g_col list_t"><ul></ul></div>'),
|
||||
counter = 1,
|
||||
li;
|
||||
$.each(userwidgets,function(i,widge){
|
||||
|
|
|
@ -136,6 +136,7 @@ a:focus { outline: none; }
|
|||
padding: 2px 12px;
|
||||
width: 192px;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
background: none;
|
||||
}
|
||||
#search_app .submit {
|
||||
|
@ -688,4 +689,11 @@ a:focus { outline: none; }
|
|||
}
|
||||
#paper_add .s_grid_con:first-child { margin-left: 0; padding-left: 0; border: none; }
|
||||
#paper_add .f_w { width: 336px; }
|
||||
#paper_add label { margin-right: 0; }
|
||||
#paper_add label { margin-right: 0; }
|
||||
|
||||
/* App */
|
||||
#app_frame {
|
||||
margin-right: 96px;
|
||||
min-width: 800px;
|
||||
}
|
||||
#app_frame .holder { background-color: #fff; }
|
|
@ -0,0 +1,10 @@
|
|||
<div id="app_frame" class="thmc2">
|
||||
<div id="content">
|
||||
<div id="header" class="hh3">
|
||||
<div class="dtitle w2 hh3 hp"><span class="thmtxth">Appname</span></div>
|
||||
</div>
|
||||
<div id="holder">
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue