included icon for move button, ensured link is 100% width

This commit is contained in:
Daniel Caine 2015-04-23 15:14:43 +12:00
parent 7f5bf0cda9
commit ac4509776c
5 changed files with 25 additions and 0 deletions

0
css/categories-tags.css Normal file
View File

View File

@ -133,3 +133,12 @@ label.right.toggle-description-correct-right {
.cms-preview-controls {
z-index: 999;
}
#Form_EditForm_Categories .MergeActionReveal:after,
#Form_EditForm_Tags .MergeActionReveal:after {
content: '';
background: url("../images/move-icon.png");
display: block;
height: 16px;
width: 16px;
}

BIN
images/move-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

View File

@ -10,6 +10,7 @@
*/
@import "compass/utilities/sprites/base";
@import "blog-icon/*.png";
// buttons
.gridfield-icon {
@include all-blog-icon-sprites;
@ -164,3 +165,18 @@ label.right.toggle-description-correct-right {
.cms-preview-controls {
z-index: 999;
}
// categories tags (to be moved to a seperate file)
#Form_EditForm_Categories,
#Form_EditForm_Tags {
// ID to be changed for a .class once a developer adds one one to the parent of both IDs
.MergeActionReveal:after {
content: '';
background: url('../images/move-icon.png');
display: block;
height: 16px;
width: 16px;
}
}