Skip to content

Commit

Permalink
Update logos
Browse files Browse the repository at this point in the history
  • Loading branch information
samnang committed Jan 16, 2025
1 parent 1141263 commit 70928d1
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Prepare Documentation Source
if: steps.set-deployment-matrix.outputs.matrixLength > 0
run: |
cp app/assets/images/scfm_logo.png doc/logo.png
cp app/assets/images/open-ews_landscape_logo.png doc/logo.png
- name: Upload Documentation Source
if: steps.set-deployment-matrix.outputs.matrixLength > 0
Expand Down
Binary file added app/assets/images/open-ews_landscape_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/views/layouts/dashboard/_side_navigation.html.haml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#sidebar.sidebar.sidebar-fixed{"data-sidebar-target" => "sidebar"}
.sidebar-brand
= link_to dashboard_root_path do
= image_tag("scfm_logo.png", class: "sidebar-brand-full", height: 46)
= image_tag("open-ews_landscape_logo.png", class: "sidebar-brand-full", height: 64)
%ul.sidebar-nav{data: {simplebar: nil }}
= sidebar_nav(translate(:"titles.callouts.index"), dashboard_callouts_path, icon_class: "fa-solid fa-bullhorn")
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/devise.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6">
<%= image_tag "scfm_logo.png", class: "img-fluid mx-auto px-5 my-3 d-block w-50" %>
<%= image_tag "open-ews_logo.png", class: "img-fluid mx-auto px-5 my-3 d-block w-50" %>

<div class="card-group">
<div class="card p-4">
Expand Down
26 changes: 20 additions & 6 deletions doc/slate/source/stylesheets/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
// COLORS
////////////////////

$brand-color: #06D19C;
$nav-bg-color: #6C63FF;
$brand-color: #02d29d;
$nav-bg-color: #fff;

/////////////////////
// BACKGROUND COLORS
////////////////////

$main-bg: #F7F7F7;
$logo-margin: 20px;
$main-bg: #f7f7f7;
$nav-bg: $nav-bg-color;
$nav-active-bg: $brand-color;
$nav-subitem-bg: $nav-bg-color;
Expand All @@ -21,7 +22,20 @@ $nav-active-parent-bg: $nav-bg-color;
// TEXT COLORS
////////////////////

$nav-text: #fff;
$nav-active-text: #fff ;
$nav-active-parent-text: #fff;
$nav-text: #333;
$nav-active-text: #fff;
$nav-active-parent-text: #333;
$main-text: #333;

.logo {
margin: 20px auto;
max-width: 90% !important;
}

.toc-wrapper {
border-right: 1px solid #ccc;

.toc-link.active-parent {
border-left: 3px solid $brand-color;
}
}

0 comments on commit 70928d1

Please sign in to comment.