Skip to content

Commit

Permalink
Fixed asset function
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj authored and fabpot committed Dec 30, 2013
1 parent 624a09f commit ec2496f
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -31,13 +31,13 @@
}
.toggle-icon {
display: inline-block;
background: url("{{ asset('/bundles/framework/images/toggler.png') }}") no-repeat top left #5eb5e0;
background: url("{{ asset('bundles/framework/images/toggler.png') }}") no-repeat top left #5eb5e0;
}
.closed .toggle-icon, .closed.toggle-icon {
background-position: bottom left;
}
.toggle-icon.empty {
background-image: url("{{ asset('/bundles/framework/images/toggler_empty.png') }}");
background-image: url("{{ asset('bundles/framework/images/toggler_empty.png') }}");
}
.tree {
width: 230px;
Expand Down Expand Up @@ -119,11 +119,11 @@
color: #313131;
}
.tree .tree-inner.active .toggle-icon, .tree .tree-inner:hover .toggle-icon, .tree .tree-inner.active:hover .toggle-icon {
background-image: url("{{ asset('/bundles/framework/images/toggler_hover.png') }}");
background-image: url("{{ asset('bundles/framework/images/toggler_hover.png') }}");
background-color: #aaa;
}
.tree .tree-inner.active .toggle-icon.empty, .tree .tree-inner:hover .toggle-icon.empty, .tree .tree-inner.active:hover .toggle-icon.empty {
background-image: url("{{ asset('/bundles/framework/images/toggler_hover_empty.png') }}");
background-image: url("{{ asset('bundles/framework/images/toggler_hover_empty.png') }}");
}
.tree-details {
border-left: 1px solid #dfdfdf;
Expand Down

0 comments on commit ec2496f

Please sign in to comment.