Browse Source

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
Jonas Jenwald 10 years ago
parent
commit
2df1b7b3cd
  1. BIN
      web/images/treeitem-collapsed.png
  2. BIN
      web/images/treeitem-collapsed@2x.png
  3. BIN
      web/images/treeitem-expanded.png
  4. BIN
      web/images/treeitem-expanded@2x.png
  5. 8
      web/viewer.css

BIN
web/images/treeitem-collapsed.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 128 B

BIN
web/images/treeitem-collapsed@2x.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 149 B

BIN
web/images/treeitem-expanded.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 125 B

BIN
web/images/treeitem-expanded@2x.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

After

Width:  |  Height:  |  Size: 172 B

8
web/viewer.css

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

Loading…
Cancel
Save