source: resources/assets/sass/components/list-group.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 1.8 KB
Line 
1.list-group {
2 .list-group-item {
3 &.list-group-item-primary {
4 background: $color-primary !important;
5 color: white !important;
6 }
7
8 &.list-group-item-primary-bright {
9 background: $color-primary-bright !important;
10 color: $color-primary !important;
11 }
12
13 &.list-group-item-secondary {
14 background: $color-secondary !important;
15 color: white !important;
16 }
17
18 &.list-group-item-secondary-bright {
19 background: $color-secondary-bright !important;
20 color: $color-secondary !important;
21 }
22
23 &.list-group-item-success {
24 background: $color-success !important;
25 color: white !important;
26 }
27
28 &.list-group-item-success-bright {
29 background: $color-success-bright !important;
30 color: $color-success !important;
31 }
32
33 &.list-group-item-danger {
34 background: $color-danger !important;
35 color: white !important;
36 }
37
38 &.list-group-item-danger-bright {
39 background: $color-danger-bright !important;
40 color: $color-danger !important;
41 }
42
43 &.list-group-item-warning {
44 background: $color-warning !important;
45 color: white !important;
46 }
47
48 &.list-group-item-warning-bright {
49 background: $color-warning-bright !important;
50 color: $color-warning !important;
51 }
52
53 &.list-group-item-info {
54 background: $color-info !important;
55 color: white !important;
56 }
57
58 &.list-group-item-info-bright {
59 background: $color-info-bright !important;
60 color: $color-info !important;
61 }
62
63 &.list-group-item-light {
64 background: $color-light !important;
65 }
66
67 &.list-group-item-dark {
68 background: $color-dark !important;
69 color: white !important;
70 }
71
72 &.list-group-item-dark-bright {
73 background: $color-dark-bright !important;
74 color: $color-dark !important;
75 }
76 }
77}
78
79.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
80 background-color: $color-primary;
81}
Note: See TracBrowser for help on using the repository browser.