Skip to content
Snippets Groups Projects
Commit 70fa11aa authored by Konstantinos Platis's avatar Konstantinos Platis
Browse files

Merge branch 'fix-plus-more-link' into 'master'

Fixed plus more link

See merge request !5
parents e90b0cc9 52e872b3
No related branches found
No related tags found
2 merge requests!6Fix gallery thumbnail images,!5Fixed plus more link
Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.2.1] - 10-12-2018
### Fixed
- Added styling for "+More" link in mega menu
## [2.2.0] - 06-12-2018 ## [2.2.0] - 06-12-2018
### Fixed ### Fixed
- FAQ List pattern not holding 100% of the width - FAQ List pattern not holding 100% of the width
......
...@@ -2,7 +2,7 @@ name: "CERN Components" ...@@ -2,7 +2,7 @@ name: "CERN Components"
type: module type: module
description: "Provides all the necessary modules regarding CERN Web Components." description: "Provides all the necessary modules regarding CERN Web Components."
core: 8.x core: 8.x
version: 2.2 version: 2.2.1
package: CERN Components package: CERN Components
dependencies: dependencies:
- components:components (>=8.x-1.1-alpha1) - components:components (>=8.x-1.1-alpha1)
......
...@@ -787,6 +787,16 @@ body.open-cern-menu #cern-toolbar { ...@@ -787,6 +787,16 @@ body.open-cern-menu #cern-toolbar {
.block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul { .block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul {
list-style: none; list-style: none;
padding: 0; } padding: 0; }
.block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul a.plus-more-link {
color: rgba(255, 255, 255, 0.5) !important;
padding-left: 0px;
text-decoration: none;
font-family: sourcesans-light;
margin-left: -18px; }
.block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul a.plus-more-link:before, .block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul a.plus-more-link:after {
content: none !important; }
.block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul a.plus-more-link:hover {
color: #efeeec !important; }
.block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul .cernmenu-level-last { .block-mainnavigation-cern-megamenu nav.navbar li.cern-dropdown.open > div.cern-dropdown-menu ul.cern-submenu ul .cernmenu-level-last {
padding-left: 35px; padding-left: 35px;
font-weight: normal; font-weight: normal;
......
...@@ -1264,7 +1264,26 @@ body.open-cern-menu #cern-toolbar { ...@@ -1264,7 +1264,26 @@ body.open-cern-menu #cern-toolbar {
list-style: none; list-style: none;
padding: 0; padding: 0;
.cernmenu-level-last { a {
&.plus-more-link {
color: rgba(255, 255, 255, 0.50) !important;
padding-left: 0px;
text-decoration: none;
font-family: sourcesans-light;
margin-left: -18px;
&:before, &:after {
content: none !important;
}
&:hover {
color: #efeeec !important;
}
}
}
.cernmenu-level-last {
padding-left: 35px; padding-left: 35px;
font-weight: normal; font-weight: normal;
font-family: sourcesans-light; font-family: sourcesans-light;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment