add preview mode to NodeView

This commit is contained in:
axolotle
2021-06-24 18:24:00 +02:00
parent a9fd6cf9ab
commit 72ce41cb0b
5 changed files with 58 additions and 11 deletions
+25
View File
@@ -101,6 +101,31 @@
}
// List Groups
@mixin list-group-item-variant($state, $osef1, $osef2) {
$color: theme-color($state);
.list-group-item-#{$state} {
color: darken($color, 32%);
background-color: lighten($color, 3.25%);
&.list-group-item-action {
@include hover-focus() {
color: darken($color, 40%);
background-color: $color;
}
// &.active {
// color: $white;
// background-color: $color;
// border-color: $color;
// }
}
}
}
@mixin line-clamp($lines, $line-height) {
display: block;
display: -webkit-box;
+6 -1
View File
@@ -116,7 +116,12 @@ $card-spacer-x: .75rem;
$card-border-width: 0;
// $card-border-color: $black;
// INPUT RANGE
// List group
$list-group-border-width: 0;
$list-group-item-padding-y: 5px;
$list-group-item-padding-x: 18px;
// INPUT RANGE
$custom-range-track-height: .1875rem;
$custom-range-track-bg: $black;
$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1);