Override bootstrap list group default
This commit is contained in:
parent
cf5830adad
commit
e7790a5935
5 changed files with 14 additions and 16 deletions
|
|
@ -1,10 +1,10 @@
|
|||
@import "bootstrap-complete.scss";
|
||||
|
||||
@import 'perfect-scrollbar';
|
||||
|
||||
@import "colors";
|
||||
@import "bootstrap-complete.scss";
|
||||
@import 'mixins';
|
||||
|
||||
|
||||
/* core */
|
||||
@import 'media-box';
|
||||
@import 'entypo';
|
||||
|
|
|
|||
21
app/assets/stylesheets/bootstrap-variables.scss
vendored
21
app/assets/stylesheets/bootstrap-variables.scss
vendored
|
|
@ -9,10 +9,10 @@
|
|||
//
|
||||
//## Gray and brand colors for use across Bootstrap.
|
||||
|
||||
// $gray-base: #000
|
||||
$gray-base: #000;
|
||||
// $gray-darker: lighten($gray-base, 13.5%) // #222
|
||||
// $gray-dark: lighten($gray-base, 20%) // #333
|
||||
// $gray: lighten($gray-base, 33.5%) // #555
|
||||
$gray: lighten($gray-base, 33.5%); // #555
|
||||
// $gray-light: lighten($gray-base, 46.7%) // #777
|
||||
// $gray-lighter: lighten($gray-base, 93.5%) // #eee
|
||||
|
||||
|
|
@ -667,24 +667,23 @@ $navbar-collapse-max-height: 480px;
|
|||
//== List group
|
||||
//
|
||||
//##
|
||||
|
||||
//** Background color on `.list-group-item`
|
||||
// $list-group-bg: #fff
|
||||
$list-group-bg: $sidebars-background;
|
||||
//** `.list-group-item` border color
|
||||
// $list-group-border: #ddd
|
||||
$list-group-border: $border-grey;
|
||||
//** List group border radius
|
||||
// $list-group-border-radius: $border-radius-base
|
||||
$list-group-border-radius: 0;
|
||||
|
||||
//** Background color of single list items on hover
|
||||
// $list-group-hover-bg: #f5f5f5
|
||||
$list-group-hover-bg: $blue;
|
||||
//** Text color of active list items
|
||||
// $list-group-active-color: $component-active-color
|
||||
$list-group-active-color: $white;
|
||||
//** Background color of active list items
|
||||
// $list-group-active-bg: $component-active-bg
|
||||
$list-group-active-bg: $gray;
|
||||
//** Border color of active list elements
|
||||
// $list-group-active-border: $list-group-active-bg
|
||||
//** Text color for content within active list items
|
||||
// $list-group-active-text-color: lighten($list-group-active-bg, 40%)
|
||||
$list-group-active-text-color: $white;
|
||||
|
||||
//** Text color of disabled list items
|
||||
// $list-group-disabled-color: $gray-light
|
||||
|
|
@ -694,7 +693,7 @@ $navbar-collapse-max-height: 480px;
|
|||
// $list-group-disabled-text-color: $list-group-disabled-color
|
||||
|
||||
// $list-group-link-color: #555
|
||||
// $list-group-link-hover-color: $list-group-link-color
|
||||
$list-group-link-hover-color: $white;
|
||||
// $list-group-link-heading-color: #333
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
@import "colors";
|
||||
@import "bootstrap-variables";
|
||||
|
||||
body {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@import "bootstrap-complete";
|
||||
@import "colors";
|
||||
@import "bootstrap-complete";
|
||||
@import "_mixins";
|
||||
@import "vendor/autoSuggest";
|
||||
@import "_flash_messages";
|
||||
|
|
|
|||
|
|
@ -31,8 +31,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.selected, .selected a { color: $black; }
|
||||
|
||||
.hoverable {
|
||||
border-bottom: 1px solid $border-grey;
|
||||
color: $link-grey;
|
||||
|
|
|
|||
Loading…
Reference in a new issue