Switch expanded/collapsed in the names of the treeitem-* assets

It appears to me that the `expanded/collapsed` part of the names got switched around, since I'd expect the following convention:
 - `v` == expanded
 - `>` == collapsed
This commit is contained in:
Jonas Jenwald 2015-08-27 23:09:00 +02:00
parent 50b15b8c10
commit 2df1b7b3cd
5 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 128 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

After

Width:  |  Height:  |  Size: 172 B

View File

@ -1246,12 +1246,12 @@ html[dir='rtl'] .attachmentsItem > button {
color: hsla(0,0%,100%,.5);
}
.outlineItemToggler::before {
content: url(images/treeitem-collapsed.png);
content: url(images/treeitem-expanded.png);
display: inline-block;
position: absolute;
}
.outlineItemToggler.outlineItemsHidden::before {
content: url(images/treeitem-expanded.png);
content: url(images/treeitem-collapsed.png);
}
.outlineItemToggler.outlineItemsHidden ~ .outlineItems {
display: none;
@ -1708,10 +1708,10 @@ html[dir='rtl'] #documentPropertiesOverlay .row > * {
-webkit-transform: scale(0.5);
transform: scale(0.5);
top: -1px;
content: url(images/treeitem-collapsed@2x.png);
content: url(images/treeitem-expanded@2x.png);
}
.outlineItemToggler.outlineItemsHidden::before {
content: url(images/treeitem-expanded@2x.png);
content: url(images/treeitem-collapsed@2x.png);
}
html[dir='ltr'] .outlineItemToggler::before {
right: 0;