322 lines
5.8 KiB
SCSS
322 lines
5.8 KiB
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
$level1-border-color:$theme-white;
|
||
|
$level2-bg-color:$theme-color-five;
|
||
|
|
||
|
.container .modules-menu {
|
||
|
font-family: $sub-font;
|
||
|
max-height: none;
|
||
|
max-width: 1170px;
|
||
|
margin: 0 -15px;
|
||
|
clear: both;
|
||
|
background-color: darken( $theme-color-four , 10%);
|
||
|
li {
|
||
|
white-space: nowrap;
|
||
|
|
||
|
& > a,
|
||
|
& > .fa {
|
||
|
color: $theme-white;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
& > a,
|
||
|
& > .fa {
|
||
|
color: $theme-white;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modules-menu-level-0 {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
|
||
|
.has-dropdown.level-1.active {
|
||
|
.modules-menu-level-1 {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.has-dropdown.level-2.active {
|
||
|
.modules-menu-level-2 {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.dropdown-toggle-icon {
|
||
|
position: absolute;
|
||
|
top: 8px;
|
||
|
right: 5px;
|
||
|
width: 40px;
|
||
|
height: 40px;
|
||
|
cursor: pointer;
|
||
|
line-height: 40px;
|
||
|
font-size: 1em;
|
||
|
text-align: center;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
|
||
|
.dropdown-toggle-icon.level-1 {
|
||
|
background-color: $theme-color-second;
|
||
|
}
|
||
|
|
||
|
.dropdown-toggle-icon.level-2 {
|
||
|
background-color: $theme-color-second;
|
||
|
}
|
||
|
|
||
|
& > li {
|
||
|
position: relative;
|
||
|
margin: 0 -15px;
|
||
|
padding: 0 15px;
|
||
|
border-bottom: 1px solid darken( $theme-color-four , 5%);
|
||
|
|
||
|
& > a {
|
||
|
display: block;
|
||
|
padding: 18px 0;
|
||
|
font-family: $main-font;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: $theme-color-main;
|
||
|
|
||
|
& > a {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
@media (min-width: $screen-sm) {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: $screen-sm) {
|
||
|
position: relative;
|
||
|
margin: 0;
|
||
|
padding: 0 10px;
|
||
|
border-bottom: none;
|
||
|
|
||
|
&:first-child {
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
margin-right: 0;
|
||
|
.modules-menu-level-1 {
|
||
|
right: 15px;
|
||
|
left: auto;
|
||
|
|
||
|
&:before {
|
||
|
left: auto;
|
||
|
right:15px;
|
||
|
}
|
||
|
|
||
|
& > li {
|
||
|
padding-right: 15px;
|
||
|
padding-left: 15px;
|
||
|
|
||
|
& > a {
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modules-menu-level-2 {
|
||
|
right: 100%;
|
||
|
left: auto;
|
||
|
|
||
|
&:before {
|
||
|
right: -6px;
|
||
|
left: auto;
|
||
|
|
||
|
@include arrow("left", 6px, 6px, $theme-gray-darker);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
& > a {
|
||
|
padding: 11px 3px 8px 3px;
|
||
|
border-bottom: 3px solid transparent;
|
||
|
}
|
||
|
|
||
|
& > .fa {
|
||
|
position: static;
|
||
|
|
||
|
@include size(auto, auto);
|
||
|
|
||
|
padding: 0;
|
||
|
line-height: 1;
|
||
|
font-size: 1em;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
& > a {
|
||
|
padding: 11px 3px 8px 3px;
|
||
|
border-bottom-color: $level1-border-color;
|
||
|
}
|
||
|
|
||
|
.modules-menu-level-1 {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modules-menu-level-1 {
|
||
|
display: none;
|
||
|
min-width: 100%;
|
||
|
margin: 0 -15px;
|
||
|
padding: 0;
|
||
|
background-color: $level2-bg-color;
|
||
|
list-style: none;
|
||
|
z-index: 1;
|
||
|
|
||
|
& > li {
|
||
|
position: relative;
|
||
|
|
||
|
& + li {
|
||
|
border-top: 1px solid lighten($level2-bg-color, 5%);
|
||
|
}
|
||
|
|
||
|
& > a {
|
||
|
display: block;
|
||
|
padding: 18px 15px;
|
||
|
font-family: $main-font;
|
||
|
font-size: 15px;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: $theme-link-color;
|
||
|
|
||
|
& > a,
|
||
|
& > .fa {
|
||
|
color: #FFF;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: $screen-sm) {
|
||
|
position: absolute;
|
||
|
left: 15px;
|
||
|
margin-top: -3px;
|
||
|
border-top: 3px solid $level1-border-color;
|
||
|
|
||
|
&:before {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: -11px;
|
||
|
left: 16px;
|
||
|
|
||
|
@include arrow("bottom", 8px, 6px, $level1-border-color);
|
||
|
}
|
||
|
|
||
|
& > li {
|
||
|
padding-right: 30px;
|
||
|
|
||
|
& > a {
|
||
|
padding:10px;
|
||
|
padding-left: 15px;
|
||
|
}
|
||
|
|
||
|
& > .fa {
|
||
|
position: static;
|
||
|
|
||
|
@include size(auto, auto);
|
||
|
|
||
|
padding: 0;
|
||
|
margin-right: 0;
|
||
|
line-height: 1;
|
||
|
float: none;
|
||
|
font-size: 1em;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
.modules-menu-level-2 {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.fa {
|
||
|
&:before {
|
||
|
content: "\f105";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modules-menu-level-2 {
|
||
|
display: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: $theme-gray-darker;
|
||
|
list-style: none;
|
||
|
|
||
|
& > li {
|
||
|
& + li {
|
||
|
border-top: 1px solid lighten($theme-gray-darker, 5%);
|
||
|
}
|
||
|
|
||
|
& > a {
|
||
|
display: block;
|
||
|
padding: 15px 50px;
|
||
|
font-family: $main-font;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: darken( $theme-color-main , 10%);
|
||
|
|
||
|
& > a {
|
||
|
color: #FFF;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: $screen-sm) {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 100%;
|
||
|
|
||
|
&:before {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
top: 15px;
|
||
|
left: 0px;
|
||
|
|
||
|
@include arrow("left", 6px, 6px, $theme-link-color);
|
||
|
}
|
||
|
|
||
|
& > li {
|
||
|
padding-right: 15px;
|
||
|
|
||
|
& > a {
|
||
|
padding-left: 15px;
|
||
|
padding: 10px 0 10px 15px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.fa {
|
||
|
&:before {
|
||
|
content: "\f105";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
@media (min-width: $screen-md){
|
||
|
background-color: $theme-color-four;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.has-mobile-dropdown {
|
||
|
.modules-menu {
|
||
|
.dropdown-toggle-icon {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|