MINOR AssetAdmin tweaks to folder/file thumbnail columns to be tidier

This commit is contained in:
Sean Harvey 2012-05-18 14:39:26 +12:00
parent 4f78187ff4
commit a7626829f6
2 changed files with 6 additions and 7 deletions

View File

@ -46,7 +46,7 @@
.cms .AssetAdmin #Root_TreeView .cms-tree ul .class-Folder a span.text span.jstree-foldericon { background: url(../images/blue-folder-horizontal.png) no-repeat; width: 16px; height: 16px; float: left; display: block; margin-right: 4px; }
.cms .AssetAdmin #Form_EditForm_File td { padding-top: 0; padding-bottom: 0; }
.cms .AssetAdmin #Form_EditForm_File td.bottom-all { padding: 0.7em; }
.cms .AssetAdmin #Form_EditForm_File td.col-StripThumbnail { padding: 0; width: 32px; height: 32px; display: block; }
.cms .AssetAdmin #Form_EditForm_File td.col-StripThumbnail { padding: 1px 5px; width: 32px; height: 32px; }
.cms .AssetAdmin #Form_EditForm_File td.col-StripThumbnail img { width: 32px; height: 32px; }
.cms .AssetAdmin #Form_EditForm_File tr[data-class=Folder] td.col-StripThumbnail { background: transparent url(../images/treeicons/blue-folder-horizontal.png) no-repeat top left; }
.cms .AssetAdmin #Form_EditForm_File tr[data-class=File] td.col-StripThumbnail { background: transparent url(../images/treeicons/blue-document.png) no-repeat top left; }
.cms .AssetAdmin #Form_EditForm_File tr[data-class=Folder] td.col-StripThumbnail { background: transparent url(../images/treeicons/blue-folder-horizontal.png) no-repeat center; }
.cms .AssetAdmin #Form_EditForm_File tr[data-class=File] td.col-StripThumbnail { background: transparent url(../images/treeicons/blue-document.png) no-repeat center; }

View File

@ -88,10 +88,9 @@
}
}
td.col-StripThumbnail {
padding: 0;
padding: 1px 5px;
width: 32px;
height: 32px;
display: block;
img {
width: 32px;
@ -100,12 +99,12 @@
}
tr[data-class=Folder] {
td.col-StripThumbnail {
background: transparent url(../images/treeicons/blue-folder-horizontal.png) no-repeat top left;
background: transparent url(../images/treeicons/blue-folder-horizontal.png) no-repeat center;
}
}
tr[data-class=File] {
td.col-StripThumbnail {
background: transparent url(../images/treeicons/blue-document.png) no-repeat top left;
background: transparent url(../images/treeicons/blue-document.png) no-repeat center;
}
}
}