Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
Table of Contents

...

» Visual Studio code

This is the IDE that we all use for development and is a very powerful tool. If you haven’t already, download and install the latest version of Visual Studio Code

...

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and

available on your favorite platform - Linux, macOS, and Windows.

...

» Node

This is required for running gulp when we wish to make customizations to the code. Download and install the latest version. (For any version below 2.5, the latest version of node that we can run is version 10.

...

...

» Install Node Packages

This is most easily done through a terminal when running the Visual Studio Code.

It needs to be run from the webapps\UX_Custom Application folder that you wish to customize.

...

This will install all of the packages defined in the package.json file that we need for gulp to work.

...

» Gulp

Install gulp globally. This is most easily done through a terminal when running the Visual Studio Code.

...

  • npm uninstall gulp-g (If you have previously installed gulp, please run this)

  • npm install gulp-cli -g (This will globally install gulp-cli which you need to run gulp)

...

This enables the automatic compilation of SASS and custom JS files.Gulp is only required if you are modifying SASS files or in need of supporting ie11… if you wish to add some entries into a CSS file, then this will work as well… you will just be a bit more limited in what you can achieve. Once this is done you can run gulp from the terminal window: Leave this running in the terminal and any changes you make will be automatically compiled into the required files that the browser will pick up on a full refresh.

...

» Stylesheet customization

In ApliqoUX Apliqo UX we use SASS https://sass-lang.com/Sass . It is completely compatible with CSS, so you can happily write CSS as you know it in a Sass (scss) file. If however, you are not syntactically correct then the gulp process will show an error message upon saving. Sass offers some very nice features over basic CSS, so it’s worth spending a little time to understand what makes it so good.

Here is a link to the Sass basics which will give you a good starting point Sass: Sass Basics: https://sass-lang.com/guide

The 2 main things you will need to use are

...

variables (Sass: Variables) colour functions (Sass: sass:color)

:

» How to find variables or CSS that needs to be modified

For example, if you wish to change the color of the active item in the menu but you don’t know what the sass variable name is you need to inspect the item in chrome.

...

    ...

    • Under the styles tab, you will see information similar to the following:

    ...

    • Click on the _adm-view.scss:

    ...

    • 1236 to look at the Sass file:

    ...

    • From this, you can see that the variables that you are interested in are:

    Code Block
    language

    ...

    sass
    $dropdown-link-active-bg

    ...

    
    $dropdown-link-active-border-color

    You just need to redefine what these are equal to in the _custom-variables.scss fie.

    What if there is no Sass variable is defined?

    Within our codebase, there has been an attempt to define all colors to Sass variables. Unfortunately, this will not always be the case.

    If this is the case then you will need to create some CSS that redefines the color.

    You can copy the CSS and change the required setting and save it into the _custom-style.scss file.

    Please only copy that which you wish to change, otherwise, this may have an undesirable effect in the future.

    If you are needing to do this then, please raise an issue with the Apliqo team so that the code can be improved for future customizations.

    ...

    » Custom variables file

    Info

    File path:

    apq-c3-custom\css\scss\_custom-variables.scss

    • Custom Color Scheme

    Code Block
    languagesass
    // // Custom Colour Scheme 2: Inverse Color Scheme
    
    $navbar-pf-navbar-border-color: $color-pf-black-150 !default;
    $apq-c3-name: $color-pf-black-600 !default; 
    $apq-c3-name-hover:$color-pf-black-700 !default;
    $brand-primary: rgb(219,51,31) !default;                                                
    $brand-secondary: white !default;
    
    $btn-primary-bg: darken($brand-primary, 10%) !default;
    $btn-primary-border: darken($brand-primary, 20%) !default;

    ...

    • Background colors

    Code Block
    languagesass
    // // Masthead background colours.
    $navbar-pf-bg-color: $brand-secondary !default;
    $navbar-pf-bg-color-start: $navbar-pf-bg-color !default;
    $navbar-pf-bg-color-stop: $navbar-pf-bg-color !default;

    ...

    • App top border

    Code Block
    languagesass
    // // Colour of the top border in the page 
    $navbar-pf-border-color: $brand-primary !default;

    ...

    • Appbar colors

    Code Block
    languagesass
    // // Start and stop colour of appbar
    $navbar-pf-navbar-primary-bg-color-start: darken($navbar-pf-bg-color, 1.5%) !default;
    $navbar-pf-navbar-primary-bg-color-stop: $navbar-pf-bg-color !default;

    ...

    Code Block
    languagesass
    // // Appbar border colour
    $navbar-pf-navbar-border-color: darken($navbar-pf-bg-color, 1.5%) !default;
    $navbar-pf-navbar-header-border-color: darken($navbar-pf-bg-color, 1.5%) !default;

    ...

    • Hover color - utility menu

    Code Block
    languagesass
    // // Hover colour of utitity menu at top right of page
    $navbar-pf-navbar-utility-hover-bg-color: darken($navbar-pf-bg-color, 10.5%) !default;

    ...

    • Hover color - appbar

    Code Block
    languagesass
    // // Start and stop colour of appbar hovered item
    $navbar-pf-navbar-primary-hover-bg-color-start: lighten($navbar-pf-bg-color, 8%) !default;
    $navbar-pf-navbar-primary-hover-bg-color-stop: lighten($navbar-pf-bg-color, 2%) !default;

    ...

    • Top widget border

    Code Block
    languagesass
    // // Colour of border on top of widget cards
    $card-pf-accented-border-top-color: $navbar-pf-border-color !default;

    ...

    • Dropdown menu colors

    Code Block
    languagesass
    // // Dropdown menu colours of active and hovered items.
    $dropdown-menu-active-border-color: lighten($navbar-pf-border-color, 20%) !default;
    $dropdown-menu-active-background-color: lighten($navbar-pf-border-color, 35%) !default;
    $dropdown-link-hover-bg: $dropdown-menu-active-background-color !default;
    $dropdown-link-hover-border-color: $dropdown-menu-active-background-color !default;
    $dropdown-link-active-bg: $navbar-pf-border-color !default;
    $dropdown-link-active-border-color: $dropdown-link-active-bg !default;

    ...