As part of the 3.8.0 release of Video Portal, besides a couple of bug fixes, there were also introduced few features:
...
In the new menu implementation, new style variable have been added in order to offer the possibility of customizing the menu more granularity than in the previous versions. This changes can also be found in the Styling Guide.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
/* Background of the menu */ @leftmenu-background-color: #1e1e1e; /* Styling of the left menu header */ @leftmenu-top-background-color: #1e1e1e; @leftmenu-top-border-bottom: 1px solid #353535; @leftmenu-top-text-color: #fff; @leftmenu-top-icon-color: #8f8f8f; @leftmenu-top-icon-hover-color: #fff; /* Styling of the menu items */ @leftmenu-item-background-color: #282828; @leftmenu-item-border-bottom: 1px solid #353535; @leftmenu-item-text-color: #ffffff; @leftmenu-item-background-color-hover: #333333; @leftmenu-item-background-color-active: #000000; @leftmenu-item-background-color-inPath : #000000; @leftmenu-item-icon-folder-color: #f1c312; /* Styling of favorites */ @leftmenu-myfavorites-counter-background-color: #434343; @leftmenu-myfavorites-counter-text-color : #fff; @leftmenu-item-icon-heart-color: #f34642; |
Note: the variable @leftmenu-back-icon-color was renamed to @leftmenu-top-icon-color.
...