Modified the color scheme to resemble websitepanel and created new icons for file types.
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 962 B |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 420 B |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 807 B |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 874 B |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 794 B |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 929 B |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -94,4 +94,56 @@ textarea {
|
|||
|
||||
#message-area {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/* Theme Mods */
|
||||
|
||||
input,div{border-radius:0px!important;}
|
||||
.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary {
|
||||
background-image: none;
|
||||
font-family: 'Segoe UI Light','Open Sans',Arial;
|
||||
color: #fff;
|
||||
border: 1px solid #5e86aa;
|
||||
background: #6598c5;
|
||||
font-weight: 300;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
padding: 6px 12px;
|
||||
font-size: 14px;
|
||||
line-height: 1.428571429;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-text {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.navbar-inverse {
|
||||
background-color: #2e8bcc;
|
||||
border-color: #2e8bcc;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-brand, .navbar-text, #logout{
|
||||
color: #FFFFFF;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus, .navbar-text:hover, #logout:hover {
|
||||
color: #fff;
|
||||
background-color: transparent;
|
||||
opacity: 1;
|
||||
}
|
||||
div#breadcrumb_wrapper {
|
||||
padding: 10px 5px 12px 25px;
|
||||
margin-bottom: 20px;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
div#breadcrumb_wrapper a:last-child {
|
||||
color: #999;
|
||||
}
|
||||
.form-control {
|
||||
border-radius: 4px;
|
||||
}
|
|
@ -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>
|
||||
|
|