Minor ui changes

This commit is contained in:
Per Ploug
2015-05-29 09:20:11 +02:00
parent 96d0c01217
commit fcf6d70803
3 changed files with 15 additions and 11 deletions

View File

@@ -33,13 +33,16 @@
.umb-editor-drawer{
margin: 0;
padding: 20px;
padding: 10px;
z-index: 999;
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
height: 20px;
height: 31px;
background: @grayLighter;
border-top: 1px solid @grayLight;
}

View File

@@ -159,12 +159,13 @@
// tab is inherited from compositions
.edt-tab.tab-is-inherited {
background: #F2F2F2;
background: #FDFDFD;
border-color: #F2F2F2;
box-shadow: none;
.tab-title{
border-color: #F2F2F2;
background: #F2F2F2;
background: #FDFDFD;
}
}
@@ -313,7 +314,7 @@
}
.edt-property.property-is-inherited {
background: #F2F2F2;
background: #FDFDFD;
&:hover {
border-color: transparent;
}

View File

@@ -1,15 +1,15 @@
<div ng-controller="Umbraco.Editors.DocumentType.CompositionsController">
<div class="umb-overlay-body">
<form>
<div ng-repeat="compositeContentType in model.availableCompositeContentTypes">
<input type="checkbox" ng-model="compositeContentType.isSelected" ng-change="model.selectCompositeContentType(compositeContentType)" />
<label>{{ compositeContentType.name }}</label>
<label class="checkbox">
<input type="checkbox"
ng-model="compositeContentType.isSelected"
ng-change="model.selectCompositeContentType(compositeContentType)" />
<i class="{{ compositeContentType.icon }}"></i> {{ compositeContentType.name }}</label>
</div>
</form>
<pre>{{ model.availableCompositeContentTypes | json }}</pre>
</div>
</div>