Fix multiple css errors upon refactor
parent
69bc474b25
commit
37f3ba68a0
|
@ -1,5 +1,4 @@
|
||||||
a.user-avatar(href="#", title="{{ vm.user.full_name_display }}")
|
a.user-avatar(href="#", title="{{ vm.user.full_name_display }}") {{ vm.user.full_name_display }}
|
||||||
{{ vm.user.full_name_display }}
|
|
||||||
img(tg-bo-src="vm.user.photo", alt="{{ vm.user.full_name_display }}")
|
img(tg-bo-src="vm.user.photo", alt="{{ vm.user.full_name_display }}")
|
||||||
|
|
||||||
div.navbar-dropdown.dropdown-user
|
div.navbar-dropdown.dropdown-user
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.nav-right {
|
.nav-right {
|
||||||
|
margin-left: auto;
|
||||||
a {
|
a {
|
||||||
padding: .5rem 2rem;
|
padding: .5rem 2rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,46 +1,46 @@
|
||||||
div(class="menu-container")
|
div(class="menu-container")
|
||||||
ul(class="main-nav")
|
ul(class="main-nav")
|
||||||
li(id="nav-search")
|
li(id="nav-search")
|
||||||
a(href="" title="{{'PROJECT.SECTION.SEARCH' | translate}}")
|
a(href="", title="{{'PROJECT.SECTION.SEARCH' | translate}}", tabindex="1")
|
||||||
span(class="icon icon-search")
|
span(class="icon icon-search")
|
||||||
span.helper(translate="PROJECT.SECTION.SEARCH")
|
span.helper(translate="PROJECT.SECTION.SEARCH")
|
||||||
<% if (project.is_backlog_activated && project.my_permissions.indexOf("view_us") != -1) { %>
|
<% if (project.is_backlog_activated && project.my_permissions.indexOf("view_us") != -1) { %>
|
||||||
li(id="nav-backlog")
|
li(id="nav-backlog")
|
||||||
a(href="" title="{{'PROJECT.SECTION.BACKLOG' | translate}}" tg-nav="project-backlog:project=project.slug")
|
a(href="" title="{{'PROJECT.SECTION.BACKLOG' | translate}}" tg-nav="project-backlog:project=project.slug", tabindex="2")
|
||||||
span(class="icon icon-backlog")
|
span(class="icon icon-backlog")
|
||||||
span.helper(translate="PROJECT.SECTION.BACKLOG")
|
span.helper(translate="PROJECT.SECTION.BACKLOG")
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (project.is_kanban_activated && project.my_permissions.indexOf("view_us") != -1) { %>
|
<% if (project.is_kanban_activated && project.my_permissions.indexOf("view_us") != -1) { %>
|
||||||
li(id="nav-kanban")
|
li(id="nav-kanban")
|
||||||
a(href="" title="{{'PROJECT.SECTION.KANBAN' | translate}}" tg-nav="project-kanban:project=project.slug")
|
a(href="" title="{{'PROJECT.SECTION.KANBAN' | translate}}" tg-nav="project-kanban:project=project.slug", tabindex="3")
|
||||||
span(class="icon icon-kanban")
|
span(class="icon icon-kanban")
|
||||||
span.helper(translate="PROJECT.SECTION.KANBAN")
|
span.helper(translate="PROJECT.SECTION.KANBAN")
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (project.is_issues_activated && project.my_permissions.indexOf("view_issues") != -1) { %>
|
<% if (project.is_issues_activated && project.my_permissions.indexOf("view_issues") != -1) { %>
|
||||||
li(id="nav-issues")
|
li(id="nav-issues")
|
||||||
a(href="" title="{{'PROJECT.SECTION.ISSUES' | translate}}" tg-nav="project-issues:project=project.slug")
|
a(href="" title="{{'PROJECT.SECTION.ISSUES' | translate}}" tg-nav="project-issues:project=project.slug", tabindex="4")
|
||||||
span(class="icon icon-issues")
|
span(class="icon icon-issues")
|
||||||
span.helper(translate="PROJECT.SECTION.ISSUES")
|
span.helper(translate="PROJECT.SECTION.ISSUES")
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (project.is_wiki_activated && project.my_permissions.indexOf("view_wiki_pages") != -1) { %>
|
<% if (project.is_wiki_activated && project.my_permissions.indexOf("view_wiki_pages") != -1) { %>
|
||||||
li(id="nav-wiki")
|
li(id="nav-wiki")
|
||||||
a(href="" title="{{'PROJECT.SECTION.WIKI' | translate}}" tg-nav="project-wiki:project=project.slug")
|
a(href="" title="{{'PROJECT.SECTION.WIKI' | translate}}" tg-nav="project-wiki:project=project.slug", tabindex="5")
|
||||||
span(class="icon icon-wiki")
|
span(class="icon icon-wiki")
|
||||||
span.helper(translate="PROJECT.SECTION.WIKI")
|
span.helper(translate="PROJECT.SECTION.WIKI")
|
||||||
<% } %>
|
<% } %>
|
||||||
li(id="nav-team")
|
li(id="nav-team")
|
||||||
a(href="" title="{{'PROJECT.SECTION.TEAM' | translate}}" tg-nav="project-team:project=project.slug")
|
a(href="" title="{{'PROJECT.SECTION.TEAM' | translate}}" tg-nav="project-team:project=project.slug", tabindex="6")
|
||||||
span(class="icon icon-team")
|
span(class="icon icon-team")
|
||||||
span.helper(translate="PROJECT.SECTION.TEAM")
|
span.helper(translate="PROJECT.SECTION.TEAM")
|
||||||
<% if (project.videoconferences) { %>
|
<% if (project.videoconferences) { %>
|
||||||
li(id="nav-video")
|
li(id="nav-video")
|
||||||
a(href!="<%- project.videoconferenceUrl %>" target="_blank" title="{{'PROJECT.SECTION.MEETUP' | translate}}")
|
a(href!="<%- project.videoconferenceUrl %>" target="_blank" title="{{'PROJECT.SECTION.MEETUP' | translate}}", tabindex="7")
|
||||||
span(class="icon icon-video")
|
span(class="icon icon-video")
|
||||||
span(translate="PROJECT.SECTION.MEETUP")
|
span(translate="PROJECT.SECTION.MEETUP")
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (project.i_am_owner) { %>
|
<% if (project.i_am_owner) { %>
|
||||||
li(id="nav-admin")
|
li(id="nav-admin")
|
||||||
a(href="" tg-nav="project-admin-home:project=project.slug" title="{{'PROJECT.SECTION.ADMIN' | translate}}")
|
a(href="" tg-nav="project-admin-home:project=project.slug" title="{{'PROJECT.SECTION.ADMIN' | translate}}", tabindex="8")
|
||||||
span(class="icon icon-settings")
|
span(class="icon icon-settings")
|
||||||
span.helper(translate="PROJECT.SECTION.ADMIN")
|
span.helper(translate="PROJECT.SECTION.ADMIN")
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
|
@ -12,12 +12,9 @@
|
||||||
margin: 0 .5rem;
|
margin: 0 .5rem;
|
||||||
}
|
}
|
||||||
.data {
|
.data {
|
||||||
margin-top: 4px;
|
|
||||||
.number {
|
.number {
|
||||||
color: $fresh-taiga;
|
color: $fresh-taiga;
|
||||||
top: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.icon {
|
.icon {
|
||||||
@extend %large;
|
@extend %large;
|
||||||
|
@ -25,15 +22,13 @@
|
||||||
.number {
|
.number {
|
||||||
@extend %xlarge;
|
@extend %xlarge;
|
||||||
@extend %bold;
|
@extend %bold;
|
||||||
|
line-height: .9;
|
||||||
margin-right: .3rem;
|
margin-right: .3rem;
|
||||||
position: relative;
|
|
||||||
top: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
@extend %small;
|
@extend %small;
|
||||||
@extend %text;
|
@extend %text;
|
||||||
line-height: .9rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ body {
|
||||||
@extend %text;
|
@extend %text;
|
||||||
background: $white; // fallback
|
background: $white; // fallback
|
||||||
color: $grayer;
|
color: $grayer;
|
||||||
|
line-height: 1.2;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.master {
|
.master {
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
%xxlarge {font-size: 3rem;}
|
%xxlarge {font-size: 3rem;}
|
||||||
|
|
||||||
// __Font Types__ //
|
// __Font Types__ //
|
||||||
%title {font-family: 'OpenSans-CondLight', Arial, Helvetica, sans-serif; line-height: 1.5;}
|
%title {font-family: 'OpenSans-CondLight', Arial, Helvetica, sans-serif; }
|
||||||
%text {font-family: 'opensans-regular', Arial, Helvetica, sans-serif; line-height: 1.5;}
|
%text {font-family: 'opensans-regular', Arial, Helvetica, sans-serif; }
|
||||||
%bold {font-family: 'opensans-semibold', Arial, Helvetica, sans-serif; line-height: 1.5;}
|
%bold {font-family: 'opensans-semibold', Arial, Helvetica, sans-serif; }
|
||||||
%taiga {font-family: 'taiga';}
|
%taiga {font-family: 'taiga';}
|
||||||
%mono {font-family: 'courier new', 'monospace';}
|
%mono {font-family: 'courier new', 'monospace';}
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,7 @@
|
||||||
transition: background .2s ease-in;
|
transition: background .2s ease-in;
|
||||||
}
|
}
|
||||||
.user-story-name {
|
.user-story-name {
|
||||||
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
input {
|
input {
|
||||||
|
|
|
@ -3,7 +3,6 @@ $label-arrow-wh: 12px;
|
||||||
.menu {
|
.menu {
|
||||||
background-image: url('../images/menu.png');
|
background-image: url('../images/menu.png');
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
height: 100%;
|
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
padding: 1rem 0;
|
padding: 1rem 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
@ -34,7 +33,7 @@ $label-arrow-wh: 12px;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
padding: .4rem 1rem;
|
padding: .4rem 1rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: calc(50% - 1rem);
|
||||||
transition: all .2s;
|
transition: all .2s;
|
||||||
z-index: 99;
|
z-index: 99;
|
||||||
&:after {
|
&:after {
|
||||||
|
|
|
@ -70,8 +70,8 @@ paths.css_order = [
|
||||||
paths.tmp + "styles/vendor/*",
|
paths.tmp + "styles/vendor/*",
|
||||||
paths.tmp + "styles/core/reset.css",
|
paths.tmp + "styles/core/reset.css",
|
||||||
paths.tmp + "styles/core/base.css",
|
paths.tmp + "styles/core/base.css",
|
||||||
paths.tmp + "styles/core/animation.css",
|
|
||||||
paths.tmp + "styles/core/typography.css",
|
paths.tmp + "styles/core/typography.css",
|
||||||
|
paths.tmp + "styles/core/animation.css",
|
||||||
paths.tmp + "styles/core/elements.css",
|
paths.tmp + "styles/core/elements.css",
|
||||||
paths.tmp + "styles/core/forms.css",
|
paths.tmp + "styles/core/forms.css",
|
||||||
paths.tmp + "styles/layout/*",
|
paths.tmp + "styles/layout/*",
|
||||||
|
|
Loading…
Reference in New Issue