source: resources/assets/sass/components/dropdown.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.dropdown {
2 display: inline;
3}
4
5.dropdown-menu {
6 margin-top: -10px;
7 visibility: hidden;
8 opacity: 0;
9 height: 0;
10 display: block !important;
11 transition: margin-top .3s, opacity .3s;
12 border-top: 1px solid #eee !important;
13
14 ul.list-group {
15 max-height: 300px;
16 }
17
18 &.show {
19 margin-top: 0;
20 visibility: visible;
21 opacity: 1;
22 height: auto;
23 }
24}
25
26.dropdown-header {
27 font-size: inherit;
28 padding: 10px 20px;
29 border-bottom: 1px solid #f0f0f0;
30}
31
32.dropdown-body {
33 padding: 10px 20px;
34}
35
36.dropdown-menu {
37 border-radius: .5rem;
38 font-size: 14px;
39 border: none;
40 box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.15);
41 overflow: hidden;
42
43 &.dropdown-menu-big {
44 padding: 0;
45 width: 300px;
46 }
47
48 .dropdown-menu-body {
49 max-height: 400px;
50 overflow: auto;
51 }
52
53 .dropdown-menu-title {
54 background-color: $color-primary;
55 padding: 15px 20px;
56 color: white;
57 background-size: cover !important;
58 background-position: center !important;
59 }
60
61 .dropdown-menu-footer {
62 padding: 10px 20px;
63 }
64
65 ul {
66 li {
67 &.dropdown-menu-title {
68 background: red;
69
70 &:first-child {
71 margin-top: 0;
72 }
73
74 margin: 5px 0;
75 padding: 0px 20px 5px;
76 border-bottom: 1px solid #ebebeb
77 }
78 }
79 }
80
81 .dropdown-item {
82 &:hover, &:focus, &:active {
83 background: #f5f5f5;
84 text-decoration: none;
85 color: $color-primary
86 }
87 }
88}
89
90table {
91 .dropdown {
92 line-height: initial;
93 }
94}
Note: See TracBrowser for help on using the repository browser.