mirror of
https://github.com/humhub/humhub.git
synced 2025-07-12 03:26:20 +02:00
80 lines
1.7 KiB
Plaintext
80 lines
1.7 KiB
Plaintext
//
|
|
// List-Group
|
|
// --------------------------------------------------
|
|
.list-group-item {
|
|
padding: 6px 15px;
|
|
border: none;
|
|
border-width: 0 !important;
|
|
border-left: 3px solid #fff !important;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
|
|
i {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
a.list-group-item {
|
|
|
|
.listGroupItemActiveOrFocus {
|
|
z-index: 2;
|
|
color: @text-color-highlight;
|
|
background-color: @background-color-secondary;
|
|
border-left: 3px solid @info !important;
|
|
}
|
|
|
|
&.active {
|
|
.listGroupItemActiveOrFocus();
|
|
}
|
|
|
|
// Hover effect only on desktop
|
|
&:hover, &.active:hover, &.active:focus {
|
|
background: inherit;
|
|
color: inherit;
|
|
border-left: none !important;
|
|
}
|
|
@media (hover: hover) and (pointer: fine) {
|
|
&:hover, &.active:hover, &.active:focus {
|
|
.listGroupItemActiveOrFocus();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: 991px) {
|
|
.list-group {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.list-group-item {
|
|
display: inline-block !important;
|
|
border-radius: 3px !important;
|
|
margin: 4px 0;
|
|
margin-bottom: 4px !important;
|
|
}
|
|
|
|
.list-group-item {
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
a.list-group-item {
|
|
.mobileListGroupItemActiveOrFocus {
|
|
border: none !important;
|
|
background: @primary !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
&.active {
|
|
.mobileListGroupItemActiveOrFocus();
|
|
}
|
|
|
|
// Hover effect only on desktop
|
|
@media (hover: hover) and (pointer: fine) {
|
|
&:hover, &.active:hover, &.active:focus {
|
|
.mobileListGroupItemActiveOrFocus();
|
|
}
|
|
}
|
|
}
|
|
}
|