Customizer updates and ajustments on navbar for mobile.

This commit is contained in:
mateuswetah 2019-03-22 12:48:18 -03:00
parent a0247bb617
commit e5fdc592fc
2 changed files with 26 additions and 2 deletions

View File

@ -353,6 +353,22 @@ nav{
}
.navbar { border: none; }
.navbar.navbar--border-bottom {
@media only screen and (max-width: 768px) {
max-height: inherit;
padding-top: 0.1rem;
padding-bottom: 0.1rem;
.navbar-brand {
white-space: normal;
}
.navbar-box {
margin-left: auto;
}
}
}
.navbar-box {
display: flex;
justify-content: flex-end;

View File

@ -742,7 +742,9 @@ function tainacan_get_color_scheme_css( $colors ) {
/* Outline Button */
.theme-items-list .button.is-outlined,
.tainacan-modal-content .button.is-outlined {
.tainacan-modal-content .button.is-outlined,
.theme-items-list .button.is-outlined:hover,
.tainacan-modal-content .button.is-outlined:hover {
color: {$colors['tainacan_link_color']} !important;
}
@ -788,11 +790,17 @@ function tainacan_get_color_scheme_css( $colors ) {
}
/* Filter menu compress button */
#filter-menu-compress-button {
#filter-menu-compress-button,
#filter-menu-compress-button-mobile {
background-color: {$colors['backtransparent']} !important;
color: {$colors['tainacan_link_color']} !important;
}
#filters-mobile-modal .modal-close::before,
#filters-mobile-modal .modal-close::after {
background-color: {$colors['tainacan_link_color']} !important;
}
.slide-control-arrow .icon .mdi::before {
color: {$colors['tainacan_link_color']};
}