Modified the color scheme to resemble websitepanel and created new icons for file types.

This commit is contained in:
studio-red 2015-02-02 22:54:18 -05:00
parent f8fbe1b912
commit 359a983ed7
18 changed files with 56 additions and 4 deletions

View file

@ -21,16 +21,16 @@
}
else
{
<div class="container prevent-deselect">
<div id="breadcrumb_wrapper" class="container prevent-deselect">
@if (Model != null)
{
string header = WspContext.User.OrganizationId;
<a href="/@header/" class="btn btn-primary btn-sm active" role="button">@header</a>
<a href="/@header/">@header</a>
string[] elements = Model.UrlSuffix.Split(new[] { "/" }, StringSplitOptions.RemoveEmptyEntries);
for (int i = 0; i < elements.Length; i++)
{
<span class="glyphicon glyphicon-chevron-right" style="top: 2px;"></span>
<a href="@string.Concat("/" + header + "/", string.Join("/", elements.Take(i + 1)))" class="btn btn-primary btn-sm active" role="button">@elements[i]</a>
<span style="top: 2px;"> / </span>
<a href="@string.Concat("/" + header + "/", string.Join("/", elements.Take(i + 1)))">@elements[i]</a>
}
}
</div>