General cleanup
This commit is contained in:
parent
c35fb6202b
commit
b569829343
@ -60,14 +60,13 @@
|
|||||||
|
|
||||||
#node-overlay
|
#node-overlay
|
||||||
#error-container
|
#error-container
|
||||||
position: fixed
|
|
||||||
top: $navbar-height
|
|
||||||
align-items: flex-start
|
align-items: flex-start
|
||||||
|
position: fixed
|
||||||
|
top: $nav-link-height
|
||||||
|
|
||||||
#error-box
|
#error-box
|
||||||
box-shadow: 0 0 25px rgba(black, .1), 0 0 50px rgba(black, .1)
|
|
||||||
width: auto
|
|
||||||
border-top-left-radius: 0
|
border-top-left-radius: 0
|
||||||
border-top-right-radius: 0
|
border-top-right-radius: 0
|
||||||
|
box-shadow: 0 0 25px rgba(black, .1), 0 0 50px rgba(black, .1)
|
||||||
position: relative
|
position: relative
|
||||||
width: 100%
|
width: 100%
|
||||||
|
@ -409,7 +409,6 @@ a.page-card-cta
|
|||||||
display: block
|
display: block
|
||||||
+position-center-translate
|
+position-center-translate
|
||||||
|
|
||||||
|
|
||||||
+media-xs
|
+media-xs
|
||||||
display: none
|
display: none
|
||||||
+media-sm
|
+media-sm
|
||||||
@ -419,9 +418,6 @@ a.page-card-cta
|
|||||||
+media-lg
|
+media-lg
|
||||||
width: 100%
|
width: 100%
|
||||||
|
|
||||||
.services.navbar-backdrop-overlay
|
|
||||||
background: rgba(black, .5)
|
|
||||||
|
|
||||||
.services
|
.services
|
||||||
.page-card-side
|
.page-card-side
|
||||||
max-width: 500px
|
max-width: 500px
|
||||||
|
@ -28,5 +28,6 @@ body
|
|||||||
.page-content
|
.page-content
|
||||||
position: relative
|
position: relative
|
||||||
flex: 1
|
flex: 1
|
||||||
|
|
||||||
.container-box
|
.container-box
|
||||||
+container-box
|
+container-box
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
border: none
|
border: none
|
||||||
|
|
||||||
.card-body
|
.card-body
|
||||||
padding: 20px 0
|
padding: 15px 0
|
||||||
|
|
||||||
.card-fade
|
.card-fade
|
||||||
img
|
img
|
||||||
|
@ -26,6 +26,7 @@ body.theatre .container-page
|
|||||||
display: flex
|
display: flex
|
||||||
align-items: center
|
align-items: center
|
||||||
justify-content: center
|
justify-content: center
|
||||||
|
|
||||||
.page-body
|
.page-body
|
||||||
height: 100%
|
height: 100%
|
||||||
width: 100%
|
width: 100%
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
| {% block menu_body %}
|
| {% block menu_body %}
|
||||||
| {% if current_user.is_authenticated %}
|
| {% if current_user.is_authenticated %}
|
||||||
|
|
||||||
li(class="dropdown")
|
li.dropdown
|
||||||
| {% block menu_avatar %}
|
| {% block menu_avatar %}
|
||||||
a.navbar-item.dropdown-toggle(href="#", data-toggle="dropdown", title="{{ current_user.email }}")
|
a.navbar-item.dropdown-toggle(href="#", data-toggle="dropdown", title="{{ current_user.email }}")
|
||||||
img.gravatar(
|
img.gravatar(
|
||||||
@ -9,42 +9,38 @@ li(class="dropdown")
|
|||||||
alt="Avatar")
|
alt="Avatar")
|
||||||
| {% endblock menu_avatar %}
|
| {% endblock menu_avatar %}
|
||||||
|
|
||||||
ul.dropdown-menu
|
ul.dropdown-menu.dropdown-menu-right
|
||||||
| {% if not current_user.has_role('protected') %}
|
| {% if not current_user.has_role('protected') %}
|
||||||
| {% block menu_list %}
|
| {% block menu_list %}
|
||||||
li
|
li
|
||||||
a.navbar-item(
|
a.navbar-item(
|
||||||
href="{{ url_for('projects.home_project') }}"
|
href="{{ url_for('projects.home_project') }}"
|
||||||
title="Home")
|
title="Home")
|
||||||
i.pi-home
|
#[i.pi-home] Home
|
||||||
| Home
|
|
||||||
|
|
||||||
li
|
li
|
||||||
a.navbar-item(
|
a.navbar-item(
|
||||||
href="{{ url_for('projects.index') }}"
|
href="{{ url_for('projects.index') }}"
|
||||||
title="My Projects")
|
title="My Projects")
|
||||||
i.pi-star
|
#[i.pi-star] My Projects
|
||||||
| My Projects
|
|
||||||
|
|
||||||
| {% if current_user.has_organizations() %}
|
| {% if current_user.has_organizations() %}
|
||||||
li
|
li
|
||||||
a.navbar-item(
|
a.navbar-item(
|
||||||
href="{{ url_for('pillar.web.organizations.index') }}"
|
href="{{ url_for('pillar.web.organizations.index') }}"
|
||||||
title="My Organizations")
|
title="My Organizations")
|
||||||
i.pi-users
|
#[i.pi-users] My Organizations
|
||||||
| My Organizations
|
|
||||||
| {% endif %}
|
| {% endif %}
|
||||||
|
|
||||||
li
|
li
|
||||||
a.navbar-item(
|
a.navbar-item(
|
||||||
href="{{ url_for('settings.profile') }}"
|
href="{{ url_for('settings.profile') }}"
|
||||||
title="Settings")
|
title="Settings")
|
||||||
i.pi-cog
|
#[i.pi-cog] Settings
|
||||||
| Settings
|
|
||||||
|
|
||||||
| {% endblock menu_list %}
|
| {% endblock menu_list %}
|
||||||
|
|
||||||
li.divider(role="separator")
|
li.dropdown-divider(role="separator")
|
||||||
| {% endif %}
|
| {% endif %}
|
||||||
|
|
||||||
li
|
li
|
||||||
|
Loading…
x
Reference in New Issue
Block a user