@enki-tek/fms-web-components 0.0.76 → 0.0.78
Sign up to get free protection for your applications and to get access to all the features.
@@ -31,12 +31,11 @@
|
|
31
31
|
position: absolute;
|
32
32
|
top: 4px;
|
33
33
|
@extend %commonSCSS;
|
34
|
-
text-transform: uppercase;
|
35
34
|
background-color: $white;
|
36
35
|
}
|
37
36
|
|
38
37
|
:global(.dropdown-custom .dropdown-menu-custom) {
|
39
|
-
margin-top: -
|
38
|
+
margin-top: -9px !important;
|
40
39
|
transform: translateX(0);
|
41
40
|
border-top: none;
|
42
41
|
border-top-left-radius: 0;
|
@@ -51,7 +50,6 @@
|
|
51
50
|
font-size: 14px;
|
52
51
|
font-style: normal;
|
53
52
|
@extend %commonSCSS;
|
54
|
-
text-transform: capitalize;
|
55
53
|
font-family: $bodyFonts;
|
56
54
|
}
|
57
55
|
|
@@ -47,11 +47,10 @@ export let title = "Dropdowns";
|
|
47
47
|
justify-content: flex-start;
|
48
48
|
position: absolute;
|
49
49
|
top: 4px;
|
50
|
-
text-transform: uppercase;
|
51
50
|
background-color: #ffffff;
|
52
51
|
}
|
53
52
|
:global(.dropdown-custom .dropdown-menu-custom) {
|
54
|
-
margin-top: -
|
53
|
+
margin-top: -9px !important;
|
55
54
|
transform: translateX(0);
|
56
55
|
border-top: none;
|
57
56
|
border-top-left-radius: 0;
|
@@ -64,7 +63,6 @@ export let title = "Dropdowns";
|
|
64
63
|
color: #343A40;
|
65
64
|
font-size: 14px;
|
66
65
|
font-style: normal;
|
67
|
-
text-transform: capitalize;
|
68
66
|
font-family: Roboto;
|
69
67
|
}
|
70
68
|
:global(.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active, .show>.btn-light.dropdown-toggle, .open>.dropdown-toggle.btn-light) {
|
@@ -3,7 +3,7 @@ export let classname = "";
|
|
3
3
|
export let disabled = false;
|
4
4
|
</script>
|
5
5
|
|
6
|
-
<DropdownItem class="dropdown-item-custom {classname}" disabled={disabled} on:click >
|
6
|
+
<DropdownItem class="dropdown-item-custom d-flex text-wrap {classname}" disabled={disabled} on:click >
|
7
7
|
<slot />
|
8
8
|
</DropdownItem>
|
9
9
|
|
@@ -40,11 +40,10 @@ export let disabled = false;
|
|
40
40
|
justify-content: flex-start;
|
41
41
|
position: absolute;
|
42
42
|
top: 4px;
|
43
|
-
text-transform: uppercase;
|
44
43
|
background-color: #ffffff;
|
45
44
|
}
|
46
45
|
:global(.dropdown-custom .dropdown-menu-custom) {
|
47
|
-
margin-top: -
|
46
|
+
margin-top: -9px !important;
|
48
47
|
transform: translateX(0);
|
49
48
|
border-top: none;
|
50
49
|
border-top-left-radius: 0;
|
@@ -57,7 +56,6 @@ export let disabled = false;
|
|
57
56
|
color: #343A40;
|
58
57
|
font-size: 14px;
|
59
58
|
font-style: normal;
|
60
|
-
text-transform: capitalize;
|
61
59
|
font-family: Roboto;
|
62
60
|
}
|
63
61
|
:global(.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active, .show>.btn-light.dropdown-toggle, .open>.dropdown-toggle.btn-light) {
|