source: resources/assets/sass/components/form-wizard.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.4 KB
Line 
1.wizard > .content {
2 min-height: auto;
3 margin: 0;
4 margin-bottom: 15px;
5 background: none;
6 padding: 0 !important;
7}
8
9.wizard {
10 .wizard-index {
11 background-color: rgba(black, .4);
12 height: 30px;
13 width: 30px;
14 border-radius: 50%;
15 display: inline-flex;
16 justify-content: center;
17 align-items: center;
18 color: #fff;
19 margin-right: 0.5rem;
20 }
21
22 .current {
23 .wizard-index {
24 background-color: rgba(white, .2);
25 }
26 }
27}
28
29.wizard > .actions > ul > li {
30 margin: 0;
31 margin-left: 10px;
32}
33
34.wizard > .content > .body {
35 float: none;
36 position: static;
37 width: auto;
38 height: auto;
39}
40
41.wizard > .steps {
42 margin-bottom: 1.5rem;
43}
44
45.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
46 margin: 0;
47 margin-right: 10px;
48}
49
50.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
51 background: $color-primary;
52}
53
54.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
55 background: $color-danger;
56}
57
58.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
59 background-color: $color-success;
60 color: white;
61}
62
63.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
64 background-color: $color-success;
65 color: white;
66}
Note: See TracBrowser for help on using the repository browser.