Ticket #1469 - new images for pagination, and consistent button look across the board! :-)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@44137 467b73ca-7a2a-4603-9d3b-597d59a354a9
@ -279,7 +279,7 @@ HTML;
|
|||||||
"</div>
|
"</div>
|
||||||
<div id=\"UnusedThumbnails\">
|
<div id=\"UnusedThumbnails\">
|
||||||
<p>"._t('AssetAdmin.UNUSEDTHUMBNAILSTITLE', 'Unused thumbnails')."</p>
|
<p>"._t('AssetAdmin.UNUSEDTHUMBNAILSTITLE', 'Unused thumbnails')."</p>
|
||||||
<a id=\"UnusedThumbnails\" href=\"#\">"._t('AssetAdmin.DELETEUNUSEDTHUMBNAILS', 'Delete unused thumbnails')."</a>
|
<a href=\"#\">"._t('AssetAdmin.DELETEUNUSEDTHUMBNAILS', 'Delete unused thumbnails')."</a>
|
||||||
</div>"
|
</div>"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -705,7 +705,7 @@ JS;
|
|||||||
foreach($this->getUnusedThumbnailsArray() as $file) {
|
foreach($this->getUnusedThumbnailsArray() as $file) {
|
||||||
unlink("../assets/" . $file);
|
unlink("../assets/" . $file);
|
||||||
}
|
}
|
||||||
echo "statusMessage('All unused thumbnails has been deleted','good')";
|
echo "statusMessage('All unused thumbnails have been deleted','good')";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -23,6 +23,10 @@
|
|||||||
width: auto;
|
width: auto;
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
|
#TreeActions li {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
#TreeActions li button {
|
#TreeActions li button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -89,14 +89,19 @@
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ajaxActions input {
|
.ajaxActions input,
|
||||||
|
#MemberFilterButton,
|
||||||
|
#CommentFilterButton,
|
||||||
|
.actions input,
|
||||||
|
#deletemarked input.action,
|
||||||
|
#UnusedThumbnails a {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
float: left;
|
float: left;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
background-image: url(../images/textures/ToolBar.png);
|
background-image: url(../images/textures/ToolBar.png);
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
color: #333333;
|
color: #333;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
width: auto;
|
width: auto;
|
||||||
border-color: #CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
|
border-color: #CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
|
||||||
@ -105,6 +110,22 @@
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
#MemberFilterButton,
|
||||||
|
#CommentFilterButton,
|
||||||
|
#deletemarked input.action,
|
||||||
|
.actions input {
|
||||||
|
float: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#UnusedThumbnails {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#deletemarked {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
#deletemarked span {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
.ajaxActions input:active {
|
.ajaxActions input:active {
|
||||||
background: #F4F4F4 none repeat scroll 0%;
|
background: #F4F4F4 none repeat scroll 0%;
|
||||||
@ -115,7 +136,8 @@
|
|||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
input.delete:hover {
|
input.delete:hover,
|
||||||
|
#deletemarked input.delete:hover {
|
||||||
background: #ce0000;
|
background: #ce0000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
@ -328,9 +350,9 @@ input.loading {
|
|||||||
}
|
}
|
||||||
#statusMessage.bad {
|
#statusMessage.bad {
|
||||||
padding: 2px 20px 2px 40px;
|
padding: 2px 20px 2px 40px;
|
||||||
border-color: #c80700;
|
border-color: #ff8e8e;
|
||||||
color: #c80700;
|
color: #c80700;
|
||||||
background: #ffe3e2 url(../images/alert-bad.gif) 7px 50% no-repeat;
|
background: #ffe9e9 url(../images/alert-bad.gif) 7px 50% no-repeat;
|
||||||
max-height: 300px;
|
max-height: 300px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
@ -352,20 +374,26 @@ div.MemberListFilter,
|
|||||||
div.MemberFilter,
|
div.MemberFilter,
|
||||||
div.CommentFilter {
|
div.CommentFilter {
|
||||||
/*float: right;*/
|
/*float: right;*/
|
||||||
width: 40em;
|
width: 30em;
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background-color : #ebeadb;
|
background-color : #ebeadb;
|
||||||
border: 1px solid #aca899;
|
border: 1px solid #aca899;
|
||||||
}
|
}
|
||||||
|
div.MemberListFilter span.middleColumn,
|
||||||
|
div.MemberFilter span.middleColumn,
|
||||||
|
div.CommentFilter span.middleColumn {
|
||||||
|
display: inline !important;
|
||||||
|
}
|
||||||
|
|
||||||
.right form div.MemberListFilter label,
|
.right form div.MemberListFilter label,
|
||||||
.right form div.MemberFilter label,
|
.right form div.MemberFilter label,
|
||||||
.right form div.CommentFilter label {
|
.right form div.CommentFilter label {
|
||||||
display: block;
|
display: block;
|
||||||
width: 10em;
|
width: 5em;
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 0em;
|
margin-left: 0em;
|
||||||
|
line-height: 2.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.MemberListFilter div.field,
|
div.MemberListFilter div.field,
|
||||||
|
Before Width: | Height: | Size: 671 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 587 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 696 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 521 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 606 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 528 B After Width: | Height: | Size: 429 B |
Before Width: | Height: | Size: 575 B After Width: | Height: | Size: 1.0 KiB |