').html(c(b));$("#body").replaceWith(p),a("./divider-drag")(),$(window).resize(),this.bodyView&&this.bodyView.close(),this.bodyView=new d({el:p,model:this.model.get("resource")}),this.bodyView.render(),j.init(),k.init(),o?m.navigate("/edit/"+o):m.navigate(this.model.get("resourceId"))}})}),define("entry",["require","exports","module","./backbone-utils","./knockout-utils","./view/undo-button-view","./view/divider-drag","./view/app-view","./router"],function(a,b,c){a("./backbone-utils"),a("./knockout-utils"),a("./view/undo-button-view"),a("./view/divider-drag");var d=a("./view/app-view"),e=a("./router"),f=new d;Backbone.history.start()})
\ No newline at end of file
+define("app",["require","exports","module"],function(a,b,c){var d=Backbone.Model.extend({defaults:{appName:"My App",appUrl:"",resourceType:""},initialize:function(){this.on("change:resourceTypeId",this.setDocLink,this),this.setDocLink()},setDocLink:function(){var a=this.get("resourceTypeId"),b="http://deployd.github.com/deployd/";a==="Static"?b+="#Files-Resource":a==="Collection"?b+="#Collection-Resource":a==="UserCollection"&&(b+="#User-Collection-Resource"),this.set("documentation",b)}});c.exports=new d}),define("view/save-status-view",["require","exports","module"],function(a,b,c){function g(a){d=$("#save-status"),a?(d.text(e),l(f)):(j(""),l(!1))}function h(){j("Saving..."),l(!0)}function i(){var a=new Date;j("Last saved "+a.toLocaleTimeString()),l(!1)}function j(a){e=a,d.text(a)}function k(){j("Error"),l(!1)}function l(a){a?d.removeClass("inactive"):d.addClass("inactive"),f=a}var d,e="",f=!1;c.exports={init:g,saving:h,saved:i,error:k},g()}),define("backbone-utils",["require","exports","module","./app","./view/save-status-view"],function(a,b,c){function h(a){return Object.prototype.toString.call(a)==="[object Array]"}var d=a("./app"),e=a("./view/save-status-view");Backbone.Model.prototype.idAttribute="_id",Backbone.View.prototype.close=function(){this.remove(),this.unbind()};var f=Backbone.sync;Backbone.sync=function(a,b,c){var g=_.isFunction(b.url)?b.url():b.url;g=d.get("appUrl")+g;if(a==="create"||a==="update"||a==="delete"){e.saving();var h=c.success,i=c.error,j=function(){e.saved(),h&&h.apply(this,arguments)},k=function(){e.error(),i&&i.apply(this,arguments)};c.success=j,c.error=k}if(a==="create"||a==="update"){var l=c.data||b.toJSON();typeof l!="string"&&(Backbone.Utils.removeClientValues(l),c.contentType="application/json",c.data=JSON.stringify(l))}return c.headers={"x-dssh-key":d.get("authKey")},c.url=c.url||g,f(a,b,c)};var g=Backbone.History.prototype.checkUrl;Backbone.History.prototype.checkUrl=function(a){this._lastFragment=this.fragment;if(this.getFragment()!==this.fragment){var b={cancel:!1};this.trigger("load",b);if(b.cancel)return this.navigate(this.fragment,{trigger:!0,replace:!0}),a.preventDefault(),window.location.hash=this.fragment,!1}g.apply(this,arguments)},Backbone.Utils=Backbone.Utils||{},Backbone.Utils.removeClientValues=function(a){return h(a)?_.each(a,function(a,b){typeof a=="object"&&Backbone.Utils.removeClientValues(a)}):_.each(a,function(b,c){_.str.startsWith(c,"c_")?delete a[c]:typeof b=="object"&&Backbone.Utils.removeClientValues(b)}),a},Backbone.Utils.parseDictionary=function(a,b){var c={keyProperty:"label"};b=_.defaults(b||{},c);var d=Object.keys(a),e=[];return _.each(d,function(c){var d=a[c];d._id=c,d[b.keyProperty]=d[b.keyProperty]||c,e.push(d)}),e},Backbone.Utils.toJSONDictionary=function(a,b){var c={keyProperty:"label"};_.defaults(b,c);var d={};return _.each(a,function(a){var c=a[b.keyProperty];delete a[b.keyProperty],d[c]=a}),d},Backbone.Utils.cancelEvent=function(a){return!1}}),define("knockout-utils",["require","exports","module"],function(a,b,c){function e(a,b){var c;for(c in b)if(typeof a[c]=="undefined")return!1;for(c in b)if(b[c])switch(typeof b[c]){case"object":if(!e(a[c],b[c]))return!1;break;case"function":if(typeof a[c]=="undefined"||c!="equals"&&b[c].toString()!=a[c].toString())return!1;break;default:if(b[c]!=a[c])return!1}else if(a[c])return!1;for(c in a)if(typeof b[c]=="undefined")return!1;return!0}var d=ko.utils.unwrapObservable;ko.bindingHandlers.cssNamed={update:function(a,b){var c=ko.utils.unwrapObservable(b()),d=$(a).data("knockoutCssNamed");$(a).removeClass(d||" ").addClass(c).data("knockoutCssNamed",c)}},ko.bindingHandlers.enter={init:function(a,b,c,d){var e=ko.utils.unwrapObservable(b());$(a).keypress(function(a){a.which===13&&e.call(d,d,a)})}},ko.bindingHandlers.escape={init:function(a,b,c,d){var e=ko.utils.unwrapObservable(b());$(a).keypress(function(a){a.which===23&&e.call(d,d,a)})}},ko.bindingHandlers.tooltip={init:function(a,b){var c=ko.toJS(b());typeof c=="string"&&(c={title:c}),$(a).tooltip(c)},update:function(a,b){var c=b(),e;typeof c=="string"?e=c:e=d(c.title),$(a).attr("data-original-title",e).tooltip("fixTitle")}},ko.bindingHandlers.popover={init:function(a,b){var c=ko.toJS(b());$(a).popover(c)},update:function(a,b){$(a).attr("data-original-title",d(b().title)),$(a).attr("data-content",d(b().content))}},ko.extenders.variableName=function(a){var b=ko.computed({read:a,write:function(b){var c=a();b=b.replace(/[^A-Za-z0-9]/g,""),c!==b&&a(b)}});return b(a()),b},c.exports={objectEquals:e}}),define("view/undo-button-view",["require","exports","module"],function(a,b,c){function g(){d=$("#undo-btn"),e=$(".action-label",d),i(),d.click(function(){f(),d.hide()})}function h(a,b){d.show(),e.text(a),f=b}function i(){d.hide(),f=null,e.text("")}var d,e,f;c.exports={init:g,show:h,hide:i},g()}),define("view/divider-drag",["require","exports","module"],function(a,b,c){c.exports=function(){function j(a){a>h-b?a=h-b:a
").text("Uploading "+a.fileName+"...").appendTo(d.$("#currentUploads"));b.on("sync",function(){d.files.fetch(),f.fadeOut(500,function(){f.remove()})}),b.save()})},"delete":function(a){var b=$(a.currentTarget).attr("filename"),c=new e({path:this.model.get("path"),info:{fileName:b},_id:b}),d=this.files;return c.destroy({success:function(){d.fetch()}}),!1},addFile:function(){var a=prompt("Enter a name for this file, including the extension:"),b=this.files.url;return b==="/"?b="":b=b.slice(1)+"/",a&&d.set("edit",b+a),!1}}),h={}}),define("view/header-view",["require","exports","module","../model/resource","./save-status-view","./undo-button-view"],function(a,b,c){var d=a("../model/resource"),e=a("./save-status-view"),f=a("./undo-button-view"),g=c.exports=Backbone.View.extend({el:"#header",template:_.template($("#header-template").html()),events:{"click .resourceName":"rename"},initialize:function(){this.model.on("change",this.render,this)},rename:function(){var a=this.model.get("resource"),b=prompt("Enter a new name for this "+a.get("type"),a.get("path"));return b&&(b=d.sanitizePath(b),a.save({path:b,$renameFrom:a.get("path")}),this.model.set("resourceName",b)),!1},render:function(){return $(this.el).html(this.template(this.model.toJSON())),e.init(!0),f.init(),this}})}),define("view/file-editor-view",["require","exports","module","../app","../model/file","./code-editor-view"],function(a,b,c){var d=a("../app"),e=a("./code-editor-view"),f=a("../model/file"),g=a("./save-status-view"),h=c.exports=Backbone.View.extend(Backbone.Events).extend({events:{"click .back":"back","click #save-btn":"save"},initialize:function(){var a=this.path="/"+d.get("edit"),b=this,c=a.slice(a.indexOf(".")+1),f=this.editor=(new e({el:$("#editor"),mode:c})).render();f.updateTime=1,_.bind(b.save,b),f.on("save",function(){b.save()}),f.on("change",function(){b.hasChanges()}),$.get(a,function(a){f.setText(a)});var g=$(".editor-container"),h=$(window);h.resize(function(){g.height(h.height()-200),f.resize()}),h.resize(),b.saved()},back:function(){return d.unset("edit"),!1},save:function(){var a=new f({path:this.path,data:this.editor.getText()});a.save({},{success:function(){g.saved()}}),this.saved(),g.saving()},hasChanges:function(){$("#file-status").empty().append(' '+this.link()+' '),$("#save-btn").removeAttr("disabled")},link:function(){return''+this.path+""},saved:function(){$("#file-status").empty().append(' '+this.link()),$("#save-btn").attr("disabled",!0)}})}),define("router",["require","exports","module","./app"],function(a,b,c){var d=a("./app"),e=Backbone.Router.extend({routes:{"":"home",":id":"resource","edit/*path":"edit"},home:function(){d.set({resourceId:"",resourceName:undefined,resourceType:undefined,edit:undefined})},resource:function(a){d.set({resourceId:a,edit:undefined})},edit:function(a){d.set({edit:a})}});c.exports=new e}),define("view/resource-view",["require","exports","module","./undo-button-view","../router"],function(a,b,c){var d=a("./undo-button-view"),e=a("../router"),f=_.template($("#resource-template").html()),g=c.exports=Backbone.View.extend({tagName:"li",className:"component-item",events:{"click .delete-btn":"delete","click .component-item-header":"onClickHeader","click .path":"activate","click .rename-btn":"activate","click .cancel-btn":"deactivate","click .save-btn":"save",'keypress input[name="path"]':"onKeypress",'keyup input[name="path"]':"onKeyup"},initialize:function(){this.parentView=this.options.parentView,this.model.on("change:c_active",this.render,this),this.model.on("change:_id",this.render,this),this.model.on("change:path",this.render,this)},render:function(){var a=$(this.el);return a.attr("id",this.model.cid).html(f({resource:this.model.toJSON()})),this.model.isNew()?a.addClass("unsaved"):a.removeClass("unsaved"),this},gotoDetail:function(){return this.model.isNew()||e.navigate(this.model.get("_id"),{trigger:!0}),!1},"delete":function(){var a=this;return a.model.isNew()?a.model.destroy():confirm("Do you wish to delete this resource? All associated data and configuration will be permanently removed.")&&a.model.destroy({wait:!0}),!1},activate:function(){return this.model.set({c_active:!0}),this.$('input[name="path"]').focus(),!1},deactivate:function(){return this.model.isNew()?this.delete():this.model.set({c_active:!1}),!1},save:function(){return this.model.save({path:this.$('input[name="path"]').val()}),this.model.set({c_active:!1}),!1},onClickHeader:function(a){if($(a.target).hasClass("component-item-header"))return this.model.get("c_active")?this.deactivate():this.gotoDetail(),!1;this.onFocus(a)},onFocus:function(a){$(a.target).focus()},onKeypress:function(a){var b=$(a.currentTarget).val();_.str.startsWith(b,"/")||(b="/"+b,$(a.currentTarget).val(b))},onKeyup:function(a){a.which==13&&(this.model.isNew()?this.model.save({path:this.$('input[name="path"]').val()},{success:_.bind(function(){this.gotoDetail()},this)}):this.save()),a.which==27&&this.deactivate()},destroy:function(){this.model.off("change:c_active",this.render),this.model.off("change:_id",this.render),this.model.off("change:path",this.render)}})}),define("view/resource-list-view",["require","exports","module","../model/resource","./resource-view"],function(a,b,c){var d=a("../model/resource"),e=a("./resource-view"),f=c.exports=Backbone.View.extend({el:"#resource-list",emptyEl:"#resource-list-empty",subViews:[],initialize:function(){this.parentView=this.options.parentView,this.collection=this.options.collection,this.typeCollection=this.options.typeCollection,this.collection.on("reset",this.render,this),this.collection.on("add",this.render,this),this.collection.on("remove",this.render,this),this.initializeDom()},initializeDom:function(){$(this.el).sortable({revert:!1,placeholder:"placeholder",cancel:".placeholder",distance:10,receive:_.bind(function(){if($(this.el).is(":visible")){var a=$($(this.el).data().sortable.currentItem),b=$(this.el).children(":not(.placeholder)").index(a);this.onReceiveComponent(a,b)}},this),update:_.bind(this.onReorder,this)}),$(".placeholder",this.emptyEl).droppable({hoverClass:"highlight",drop:_.bind(function(a,b){if(this.collection.length===0){var c=$(b.helper);this.onReceiveComponent(c)}},this)})},addItem:function(a,b){isNaN(b)&&(b=this.collection.length);var c=new d({path:a.get("defaultPath"),typeLabel:a.get("label"),type:a.get("_id"),order:b+1,c_active:!0});return this.collection.add(c,{at:b}),this.updateOrder(),setTimeout(function(){this.$("#"+c.cid).find('input[name="path"]').focus()},0),!1},updateOrder:function(){var a=this,b=[];$(this.el).children().each(function(){var c=a.collection.getByCid($(this).attr("id"));c&&b.push(c)});var c=0;_.each(b,function(a){c+=1,a.isNew()?a.set({order:c},{silent:!0}):a.save({order:c},{silent:!0})})},onReceiveComponent:function(a,b){var c=a.attr("data-cid"),d=this.parentView.resourceTypes.getByCid(c);a.remove(),this.addItem(d,b)},onReorder:function(){this.updateOrder()},render:function(a){var b=this;_.each(b.subViews,function(a){a.destroy()}),$(b.el).empty(),b.collection.length?($(b.el).show(),$(b.emptyEl).hide(),b.subViews=b.collection.map(function(a){var c=new e({model:a,parentView:b});return $(b.el).append(c.el),c.render(),c})):($(b.el).hide(),$(b.emptyEl).show())}})}),define("view/resources-view",["require","exports","module","./component-type-sidebar-view","./resource-list-view","../model/resource-collection","../model/resource-type-collection"],function(a,b,c){var d=a("./component-type-sidebar-view"),e=a("./resource-list-view"),f=a("../model/resource-collection"),g=a("../model/resource-type-collection"),h=c.exports=Backbone.View.extend({el:"body",typesTemplate:_.template($("#resource-types-template").html()),events:{"click #property-types a":"addItem"},initialize:function(){this.resourceTypes=new g,this.resources=new f,this.resourceListView=new e({collection:this.resources,typeCollection:this.resourceTypes,parentView:this}),this.resourceTypes.on("reset",this.renderTypes,this),this.resourceTypes.fetch(),this.resources.fetch()},addItem:function(a){var b=$(a.currentTarget).parents("li").attr("data-cid"),c=this.resourceTypes.getByCid(b);this.resourceListView.addItem(c)},renderTypes:function(){$("#property-types").html(this.typesTemplate({types:this.resourceTypes})).find("li").popover({placement:"left"})}})}),define("view/collection-view",["require","exports","module","../model/property-type-collection","../model/collection-settings","../model/data-collection","./property-list-view","./property-reference-view","./collection-data-view","./collection-event-view","./collection-routes-view","../app","../router","./undo-button-view"],function(a,b,c){var d=a("../model/property-type-collection"),e=a("../model/collection-settings"),f=a("../model/data-collection"),g=a("./property-list-view"),h=a("./property-reference-view"),i=a("./collection-data-view"),j=a("./collection-event-view"),k=a("./collection-routes-view"),l=a("../app"),m=a("../router"),n=a("./undo-button-view"),o=c.exports=Backbone.View.extend({events:{"click .cta-link":"onClickCta"},initialize:function(){this.propertyTypes=new d,this.dataCollection=new f([]),this.dataCollection.path=this.model.get("path"),this.dataCollection.fetch(),this.model.on("change:path",function(){this.dataCollection.path=this.model.get("path")},this),this.propertyListView=new g({collection:this.model.get("properties"),typeCollection:this.propertyTypes,parentView:this}),this.PropertyReferenceView=new h({model:this.model}),this.dataView=new i({properties:this.model.get("properties"),collection:this.dataCollection}),this.routesView=new k({model:this.model}),this.eventsView=(new j({el:this.$("#events-panel"),model:this.model})).render(),this.model.on("change",this.save,this),this.dataCollection.on("reset",this.render,this),this.model.on("change",this.render,this),this.propertyTypes.fetch(),this.initializeDom(),this.render()},initializeDom:function(){this.onKeypress=_.bind(this.onKeypress,this),$(".icon-info-sign").popover(),this._navSections=navSections=[],this.onScroll=_.bind(this.onScroll,this),$(window).on("scroll",this.onScroll),this.onScroll(),this.model.get("properties").length&&this.$('#page-nav a[href="#data"]').click()},save:function(){var a=this;this.model.save()},onKeypress:function(a){if((a.ctrlKey||a.metaKey)&&a.which=="83")return this.save(),a.preventDefault(),!1},onScroll:function(a){},onClickCta:function(a){var b=$(a.currentTarget).attr("href"),c=$('#page-nav a[href="'+b+'"]');return c.click(),!1},navigate:function(a){var b=$(a.currentTarget),c=b.attr("href");return $(window).scrollTop($(c).offset().top-50),!1},render:function(){var a=$("#property-now-what");return this.model.get("properties").length&&!this.dataCollection.length?a.show():a.hide(),this},close:function(){Backbone.View.prototype.close.call(this),this.propertyListView.close(),this.dataView.close(),this.eventsView.close(),$(window).off("scroll",this.onScroll)}})}),define("view/app-view",["require","exports","module","../model/collection-settings","./resources-view","./collection-view","./static-view","./header-view","./file-editor-view","./undo-button-view","./save-status-view","../app","../router","./divider-drag"],function(a,b,c){var d=a("../model/collection-settings"),e=a("./resources-view"),f=a("./collection-view"),g=a("./static-view"),h=a("./header-view"),i=a("./file-editor-view"),j=a("./undo-button-view"),k=a("./save-status-view"),l=a("../app"),m=a("../router"),n=c.exports=Backbone.View.extend({headerTemplate:_.template($("#header-template").html()),resourcesTemplate:_.template($("#resources-template").html()),collectionTemplate:_.template($("#collection-template").html()),staticTemplate:_.template($("#static-template").html()),fileEditorTemplate:_.template($("#file-editor-template").html()),events:{"click #authModal .save":"authenticate"},initialize:function(){this.model=this.model||l,this.model.on("change:resourceId",this.loadResource,this),this.model.on("change:resource",this.render,this),this.model.on("change:edit",this.render,this),this.headerView=new h({model:l}),this.$modal=$("#authModal").modal();var a=location.protocol+"//"+location.host;l.set({appUrl:a,authKey:$.cookie("DPDAuthKey")}),l.get("appUrl")&&l.get("authKey")?this.$modal.modal("hide"):this.$modal.on("click",".save",_.bind(this.authenticate,this))},authenticate:function(){return l.set({authKey:this.$modal.find("[name=key]").val()}),$.cookie("DPDAuthKey",l.get("authKey"),{expires:7}),this.$modal.modal("hide"),this.render(),!1},loadResource:function(){var a=this;if(this.model.get("resourceId")){var b=new Backbone.Model({_id:a.model.get("resourceId")});b.url="/resources/"+b.id,b.fetch({success:function(){var c=new d;l.set({resourceName:b.get("path"),resourceType:b.get("typeLabel"),resourceTypeId:b.get("type")}),c.set(c.parse(b.attributes)),a.model.set({resource:c})}})}else a.model.set({resource:null})},render:function(){var b=this.model.toJSON(),c,d,h=this.model&&this.model.get("resourceId"),n=this.model&&h&&this.model.get("resourceTypeId"),o=this.model&&this.model.get("edit")||!1;o?(c=this.fileEditorTemplate,d=i):n==="Collection"||n==="UserCollection"?(c=this.collectionTemplate,d=f):n==="Static"?(c=this.staticTemplate,d=g):(l.set({resourceType:""}),l.set({resourceName:""}),c=this.resourcesTemplate,d=e);var p=$('').html(c(b));$("#body").replaceWith(p),a("./divider-drag")(),$(window).resize(),this.bodyView&&this.bodyView.close(),this.bodyView=new d({el:p,model:this.model.get("resource")}),this.bodyView.render(),j.init(),k.init(),o?m.navigate("/edit/"+o):m.navigate(this.model.get("resourceId"))}})}),define("entry",["require","exports","module","./backbone-utils","./knockout-utils","./view/undo-button-view","./view/divider-drag","./view/app-view","./router"],function(a,b,c){a("./backbone-utils"),a("./knockout-utils"),a("./view/undo-button-view"),a("./view/divider-drag");var d=a("./view/app-view"),e=a("./router"),f=new d;Backbone.history.start()})
\ No newline at end of file
diff --git a/dashboard/stylesheets/style.css b/dashboard/stylesheets/style.css
index d865dc1..aa0c792 100644
--- a/dashboard/stylesheets/style.css
+++ b/dashboard/stylesheets/style.css
@@ -697,6 +697,7 @@ p a{text-decoration:underline;}
.well{margin-bottom:0;}
.well.stacked{margin-bottom:20px;}
.span10{overflow-x:auto;}
+.resource-list .container{width:443px;}
.right-sidebar .well{position:absolute;top:0;width:195px;}
.right-sidebar .well input{width:185px;}
.right-sidebar .well+.well{margin-top:10px;top:165px;bottom:0;min-height:100px;}
@@ -718,7 +719,7 @@ p a{text-decoration:underline;}
.ide-container .component-type-sidebar .component-type-list li.component-type-item i.number{background-position:0 -96px;}
.ide-container .component-type-sidebar .component-type-list li.component-type-item i.date{background-position:-48px -24px;}
.ide-container .component-type-sidebar .component-type-list li.component-type-item i.password{background-position:-456px -96px;}
-.ide-container .component-type-sidebar .component-type-list li.component-type-item i.files{background-position:-24px -24px;}
+.ide-container .component-type-sidebar .component-type-list li.component-type-item i.files{background-position:-384px -120px;}
.ide-container .component-type-sidebar .component-type-list li.component-type-item i.collection{background-position:-264px 0;}
.ide-container .component-type-sidebar .component-type-list li.component-type-item i.users-collection{background-position:-168px 0;}
.ide-container .component-type-sidebar .component-type-list li.component-type-item i{margin-right:3px;cursor:pointer;}
@@ -728,7 +729,7 @@ p a{text-decoration:underline;}
.type-icons i.number{background-position:0 -96px;}
.type-icons i.date{background-position:-48px -24px;}
.type-icons i.password{background-position:-456px -96px;}
-.type-icons i.files{background-position:-24px -24px;}
+.type-icons i.files{background-position:-384px -120px;}
.type-icons i.collection{background-position:-264px 0;}
.type-icons i.users-collection{background-position:-168px 0;}
li.component-type-item{list-style:none;padding:10px;height:19px;width:180px;color:#fffff7;background:#363535;margin-bottom:4px;border-radius:3px;cursor:pointer;}
@@ -751,20 +752,20 @@ li.component-type-item{list-style:none;padding:10px;height:19px;width:180px;colo
.component-item-header i.number{background-position:0 -96px;}
.component-item-header i.date{background-position:-48px -24px;}
.component-item-header i.password{background-position:-456px -96px;}
-.component-item-header i.files{background-position:-24px -24px;}
+.component-item-header i.files{background-position:-384px -120px;}
.component-item-header i.collection{background-position:-264px 0;}
.component-item-header i.users-collection{background-position:-168px 0;}
.component-item-header .delete-btn{cursor:pointer;}
.component-item-header input,.component-item-header select,.component-item-header label{margin-bottom:0;margin-right:4px;}
.component-item-header .checkbox{margin-top:6px;}
li.component-item{list-style:none;margin-bottom:4px;background:#363535;color:#fffff7;border-radius:3px;}li.component-item.active .component-item-header{background:#337a74;}li.component-item.active .component-item-header .checkbox{color:#ffffff;}
-li.component-item.active .component-item-header .delete-btn i{margin-top:6px;}
+li.component-item.active .component-item-header .delete-btn{margin-top:6px;}
li.component-item.unsaved{border:dashed 1px #fffff7;}
li.component-item .name,li.component-item .path{cursor:text;margin-left:6px;}
li.component-item:hover .name,li.component-item:hover .path{border:dashed 1px #363535;background:#fffff7;color:#363535;margin-left:0;padding:5px;}
li.component-item.locked:hover .name{border:none;margin-left:0;padding:5px;}
li.component-item.locked .component-item-header{background:#363535 !important;cursor:normal !important;}
-li.component-item .component-item-header{border-radius:inherit;padding:10px;min-height:19px;cursor:pointer;}li.component-item .component-item-header:hover{background:#429e96;}
+li.component-item .component-item-header{border-radius:inherit;padding:10px;min-height:19px;cursor:pointer;}li.component-item .component-item-header:hover{background:#696868;}
li.component-item .detail{-webkit-border-radius:0px 0px 3px 3px;-moz-border-radius:0px 0px 3px 3px;border-radius:0px 0px 3px 3px;padding:10px;color:#fffff7;}
li.component-item .detail label{color:#fffff7;}
li.component-item i.boolean{background-position:-72px -96px;}
@@ -772,7 +773,7 @@ li.component-item i.string{background-position:-144px -48px;}
li.component-item i.number{background-position:0 -96px;}
li.component-item i.date{background-position:-48px -24px;}
li.component-item i.password{background-position:-456px -96px;}
-li.component-item i.files{background-position:-24px -24px;}
+li.component-item i.files{background-position:-384px -120px;}
li.component-item i.collection{background-position:-264px 0;}
li.component-item i.users-collection{background-position:-168px 0;}
.editor-container{position:relative;height:400px;width:100%;background:#ffffff;}.editor-container .ace_editor{left:0;right:0;top:0;bottom:0;}
@@ -785,4 +786,12 @@ table input{margin:0;width:150px;}table input[type=number]{width:75px;}
.fixed2{position:fixed;width:16%;}
#file-status{margin-left:10px;margin-top:6px;}
#file-nav{margin-bottom:20px;}
+.file-list .container{width:507px;}.file-list .container table{margin-bottom:0;}.file-list .container table td{vertical-align:middle;}
.cta-link{text-decoration:underline;}
+.get-started{min-height:20px;padding:19px;margin-bottom:20px;background-color:#fffff7;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 20px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 20px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 20px rgba(0, 0, 0, 0.05);margin-bottom:0;background:#363535;color:#fffff7;margin:20px 0;padding:19px 19px 9px 19px;}.get-started blockquote{border-color:#555557;border-color:rgba(0, 0, 0, 0.15);}
+.tutorial-help{text-align:center;width:250px;margin:auto;}
+#properties{width:485px;margin:auto;}#properties label{margin-right:12px;}
+#properties .label{margin-left:10px;}
+#properties input[type=text]{width:201px;margin-left:5px;}
+.sidebar-nav{margin-right:20px;height:133px;}
+#property-now-what{display:block;width:242px;padding-right:14px;margin:20px auto;}