2012-02-23 20:19:03 +01:00
|
|
|
.cms .AssetAdmin {
|
2012-03-12 22:52:30 +01:00
|
|
|
.cms-content-fields {
|
2012-03-13 04:11:51 +01:00
|
|
|
overflow:hidden; //removes scrolling from filter panel
|
|
|
|
.cms-edit-form.AssetAdmin {
|
|
|
|
overflow-y:auto; //adds scrolling only to the datagrid
|
|
|
|
}
|
|
|
|
.cms-content-tools .cms-panel-content {
|
|
|
|
overflow:hidden; //removes scollbar from search field in filter
|
|
|
|
.cms-search-form {
|
|
|
|
height:100%; //increases height of search form to accomodate dropdown
|
2012-03-12 22:52:30 +01:00
|
|
|
}
|
2012-03-13 04:11:51 +01:00
|
|
|
}
|
2012-03-12 22:52:30 +01:00
|
|
|
}
|
2012-03-07 21:03:03 +01:00
|
|
|
.cms-content-header-tabs {
|
|
|
|
.ui-tabs-nav {
|
|
|
|
li {
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 16px;
|
2012-03-18 22:47:47 +01:00
|
|
|
padding: 12px 20px 12px;
|
2012-03-07 21:03:03 +01:00
|
|
|
text-indent:-9999em;
|
|
|
|
|
|
|
|
&.content-treeview {
|
|
|
|
background:url(../images/content-header-tabs-sprite.png) no-repeat 2px 0px;
|
|
|
|
}
|
|
|
|
&.content-galleryview {
|
|
|
|
background:url(../images/content-header-tabs-sprite.png) no-repeat -87px 0px;
|
|
|
|
}
|
|
|
|
&.content-listview {
|
|
|
|
background:url(../images/content-header-tabs-sprite.png) no-repeat -38px 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-state-active,
|
|
|
|
.ui-widget-content .ui-state-active,
|
|
|
|
.ui-widget-header .ui-state-active {
|
|
|
|
border: {
|
|
|
|
top:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
&.content-treeview {
|
|
|
|
background:url(../images/content-header-tabs-sprite.png) no-repeat 2px -40px;
|
|
|
|
}
|
|
|
|
&.content-galleryview {
|
|
|
|
background:url(../images/content-header-tabs-sprite.png) no-repeat -87px -40px;
|
|
|
|
}
|
|
|
|
&.content-listview {
|
|
|
|
background:url(../images/content-header-tabs-sprite.png) no-repeat -38px -40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-07 05:33:15 +01:00
|
|
|
.cms-content-toolbar {
|
|
|
|
.cms-page-add-button {
|
|
|
|
@include background-image (linear-gradient(lighten(#e6e6e6, 5%), darken(#e6e6e6, 5%)));
|
|
|
|
border-color:#c0c0c2;
|
|
|
|
span.btn-icon-add {
|
|
|
|
height:17px;
|
|
|
|
}
|
|
|
|
span.ui-button-text {
|
|
|
|
color:#393939;
|
|
|
|
text-shadow: white 0 1px 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-23 20:19:03 +01:00
|
|
|
#Form_EditForm_File {
|
|
|
|
td {
|
|
|
|
// Taken care of by minimum image sizes
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2012-03-06 03:00:36 +01:00
|
|
|
&.bottom-all {
|
|
|
|
padding:0.7em;
|
|
|
|
}
|
2012-02-23 20:19:03 +01:00
|
|
|
}
|
|
|
|
td.col-StripThumbnail {
|
|
|
|
padding: 0;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tr[data-class=Folder] {
|
|
|
|
td.col-StripThumbnail {
|
2012-04-12 10:36:25 +02:00
|
|
|
background: transparent url(../images/treeicons/blue-folder-horizontal.png) no-repeat top left;
|
2012-02-23 20:19:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
tr[data-class=File] {
|
|
|
|
td.col-StripThumbnail {
|
2012-04-12 10:36:25 +02:00
|
|
|
background: transparent url(../images/treeicons/blue-document.png) no-repeat top left;
|
2012-02-23 20:19:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-07 21:03:03 +01:00
|
|
|
}
|
2012-04-12 10:36:25 +02:00
|
|
|
|