mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
7dfe145412
# Conflicts: # code/controllers/CMSFileAddController.php # code/controllers/CMSPageAddController.php # code/controllers/CMSPageHistoryController.php # code/controllers/CMSSiteTreeFilter.php # code/controllers/ContentController.php # code/controllers/LeftAndMainPageIconsExtension.php # code/controllers/SilverStripeNavigator.php # code/model/SiteTreeFileExtension.php # code/model/VirtualPage.php # composer.json # tests/model/ErrorPageTest.yml # tests/model/FileLinkTrackingTest.yml # tests/model/VirtualPageTest.yml
87 lines
1.7 KiB
SCSS
87 lines
1.7 KiB
SCSS
.cms .AssetAdmin {
|
|
.cms-content-fields {
|
|
overflow-x: hidden; //hides 'allowed extensions' sidebar
|
|
|
|
.cms-edit-form.AssetAdmin {
|
|
width: 100%;
|
|
overflow-y:auto; //adds scrolling only to the datagrid
|
|
}
|
|
|
|
/**
|
|
* DEPRECATED:
|
|
* .cms-content-tools will be removed in 4.0
|
|
* Use .cms-content-filters instead.
|
|
*/
|
|
.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
|
|
}
|
|
}
|
|
}
|
|
|
|
.cms-content-toolbar {
|
|
float: left;
|
|
|
|
.cms-actions-row {
|
|
.ss-ui-button {
|
|
z-index: 1;
|
|
|
|
&::before {
|
|
font-size: 23px;
|
|
}
|
|
}
|
|
|
|
.grid-levelup {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
#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;
|
|
}
|
|
}
|
|
|
|
.ss-gridfield {
|
|
margin-top: 0;
|
|
}
|
|
|
|
table.ss-gridfield-table {
|
|
td {
|
|
&.bottom-all {
|
|
padding:0.7em;
|
|
}
|
|
}
|
|
tr[data-class=Folder] {
|
|
td.col-StripThumbnail {
|
|
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 center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|