Merge pull request #43 from milouse/master

Fixes for version 3.3.2
This commit is contained in:
Grzegorz Rajchman
2017-02-12 19:40:23 +00:00
committed by GitHub
4 changed files with 52 additions and 4 deletions

View File

@@ -422,7 +422,7 @@ $icon-danger-hover-color: darken($brand-danger, 10%);
&::before { content: $fa-var-ticket; }
}
.issue_statuses {
.issue-statuses {
@extend %admin-icon;
&::before { content: $fa-var-pencil-square; }
@@ -434,7 +434,7 @@ $icon-danger-hover-color: darken($brand-danger, 10%);
&::before { content: $fa-var-sitemap; }
}
.custom_fields {
.custom-fields {
@extend %admin-icon;
&::before { content: $fa-var-edit; }
@@ -464,7 +464,7 @@ $icon-danger-hover-color: darken($brand-danger, 10%);
&::before { content: $fa-var-info-circle; }
}
.server_authentication {
.ldap-authentication {
@extend %admin-icon;
&::before { content: $fa-var-key; }

View File

@@ -45,3 +45,10 @@ $login-input-width: 200px;
background-repeat: no-repeat;
background-position: ($login-input-width - 24px) center;
}
#login-form input[type=text],
#login-form input[type=password],
#login-form label {
display: block;
margin: $padding-large-vertical 0
}

View File

@@ -225,6 +225,47 @@
}
}
#project-jump {
display: block;
line-height: 2.5em;
position:relative;
.drdn-trigger {
font-weight: bold;
}
.drdn-content {
display: none;
padding: .5em 1em;
background-color: $header-bg;
a {
display: block;
padding: 0 1em;
}
a:active,
a:focus,
a:hover {
border-color: darken($header-bg, 15%);
background: darken($header-bg, 10%);
text-decoration: none;
}
.all-projects a {
font-weight: bold;
}
}
}
#project-jump:hover {
.drdn-content {
display: block;
position: absolute;
z-index: 9999;
}
}
#main-menu {
clear: both;
background-color: $main-menu-bg;

File diff suppressed because one or more lines are too long