Laravel 11, Vuexy Admin 10.3, by admin@koneko.mx
This commit is contained in:
78
modules/Admin/Resources/assets/vendor/scss/pages/_mixins.scss
vendored
Normal file
78
modules/Admin/Resources/assets/vendor/scss/pages/_mixins.scss
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
/*
|
||||
* Pages Mixins
|
||||
*/
|
||||
@import '../../scss/_bootstrap-extended/functions';
|
||||
|
||||
@mixin icon-theme($color) {
|
||||
.icon-card.active {
|
||||
outline: 1px solid $color;
|
||||
i,
|
||||
svg {
|
||||
color: $color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// App Chat
|
||||
@mixin app-chat-theme($color) {
|
||||
$chat-item-active-bg: $color;
|
||||
.app-chat {
|
||||
.sidebar-body {
|
||||
.chat-contact-list {
|
||||
li {
|
||||
&.active {
|
||||
background: $chat-item-active-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.app-chat-history {
|
||||
.chat-history {
|
||||
.chat-message {
|
||||
&.chat-message-right {
|
||||
.chat-message-text {
|
||||
background-color: $color !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin front-theme($color) {
|
||||
// Navbar ---------------------
|
||||
.navbar {
|
||||
&.landing-navbar {
|
||||
.navbar-nav {
|
||||
.show > .nav-link,
|
||||
.active > .nav-link,
|
||||
.nav-link.show,
|
||||
.nav-link.active,
|
||||
.nav-link:hover {
|
||||
color: $color !important;
|
||||
i {
|
||||
color: $color !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Landing page ---------------------
|
||||
// Useful features
|
||||
.landing-features {
|
||||
.features-icon-wrapper {
|
||||
.features-icon-box {
|
||||
.features-icon {
|
||||
border: 2px solid rgba($color, 0.2);
|
||||
}
|
||||
&:hover {
|
||||
.features-icon {
|
||||
background-color: rgba($color, 0.05);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user