diff --git a/assets/css/scss/_topbar.scss b/assets/css/scss/_topbar.scss index 8ace2ce5bc..71be09ef08 100644 --- a/assets/css/scss/_topbar.scss +++ b/assets/css/scss/_topbar.scss @@ -15,7 +15,7 @@ transition: all 0.2s ease; width: calc(100% - #{$offscreen-size}); z-index: 800; - box-shadow: 0px 8px 20px -10px rgba(0, 0, 0, 0.15); + box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.15); @include to($breakpoint-md) { width: 100%; @@ -76,6 +76,13 @@ text-decoration: none; } + .rounded-circle{ + margin-right: 10px; + width: 40px; + border: 2px solid #fff; + box-shadow: 0 5px 10px 0 rgba(43,43,43,0.2); + } + @include to($breakpoint-md) { padding: 0 15px; } @@ -154,7 +161,7 @@ line-height: 1.5; min-height: auto; padding: 10px 15px; - color: $sidebar-link; + color: $header-link; } } } diff --git a/assets/css/scss/_variables.scss b/assets/css/scss/_variables.scss index 860dc8c963..ba0e11d572 100644 --- a/assets/css/scss/_variables.scss +++ b/assets/css/scss/_variables.scss @@ -46,13 +46,13 @@ $default-link : rgb(0, 153, 255); // linear-gradient(120deg, #00a5e4, #4a71d0); $page-background : #f2f8f9; -$menu-background : #4a71d0; +$menu-background : #FFFFFF; $menu-secondary : #ff3c7e; -$sidebar-link : #54667A; -$sidebar-bg : #FFFFFF; +$sidebar-link : #FFFFFF; +$sidebar-bg : #4a71d0; $sidebar-focus : rgba(0, 0, 0, 0.07); -$header-link : #FFFFFF; -$header-hover : #eddf0e; +$header-link : #54667a; +$header-hover : #ff3c7e; $breadcrumb-color : #d2f1ff; $select-color : #ced4da; // --------------------------------------------------------- diff --git a/src/CoreBundle/Resources/config/routing.yml b/src/CoreBundle/Resources/config/routing.yml index d67aa261a7..38d3e3edb9 100644 --- a/src/CoreBundle/Resources/config/routing.yml +++ b/src/CoreBundle/Resources/config/routing.yml @@ -11,6 +11,9 @@ legacy_main: requirements: name: .+ +legacy_upload: + path: ../var/upload/ + # Controllers controllers: resource: '../src/CoreBundle/Controller/' diff --git a/src/ThemeBundle/Resources/views/Layout/topbar.html.twig b/src/ThemeBundle/Resources/views/Layout/topbar.html.twig index c719914f4e..f541b74491 100644 --- a/src/ThemeBundle/Resources/views/Layout/topbar.html.twig +++ b/src/ThemeBundle/Resources/views/Layout/topbar.html.twig @@ -105,8 +105,6 @@ - - {% if app.user is not null and is_granted('IS_AUTHENTICATED_FULLY') %}