albinasoft-ui-package 1.0.52 → 1.0.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,41 @@
1
+ .autocomplete-container {
2
+ position: relative; /* Dropdown'u input'un kapsayıcısına bağlamak için */
3
+ }
4
+
5
+ .autocomplete-dropdown {
6
+ background-color: white;
7
+ border: 1px solid #ccc;
8
+ border-radius: 4px;
9
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
10
+ z-index: 1050;
11
+ max-height: 200px;
12
+ overflow-y: auto;
13
+ position: absolute;
14
+ width: 100%;
15
+ }
16
+
17
+ .autocomplete-option {
18
+ padding: 8px 12px;
19
+ cursor: pointer;
20
+ }
21
+
22
+ .autocomplete-option:hover {
23
+ background-color: #f1f1f1;
24
+ }
25
+
26
+ /* Dark Mode */
27
+ .dark .autocomplete-dropdown {
28
+ background-color: #333;
29
+ color: #fff;
30
+ border: 1px solid #444;
31
+ }
32
+
33
+ .dark .autocomplete-option:hover {
34
+ background-color: #444;
35
+ }
36
+
37
+ mark {
38
+ background-color: yellow;
39
+ color: black;
40
+ font-weight: bold;
41
+ }
@@ -0,0 +1,7 @@
1
+ .react-datepicker-wrapper {
2
+ display: block;
3
+ }
4
+
5
+ .react-datepicker-popper {
6
+ z-index: 5;
7
+ }
@@ -0,0 +1,47 @@
1
+
2
+
3
+ .dropdown-menu {
4
+ background: white;
5
+ }
6
+
7
+ .dark .dropdown-menu {
8
+ background: #222738;
9
+ }
10
+
11
+ .dropdown-menu::-webkit-scrollbar-thumb {
12
+ background-color: #888; /* Scrollbar rengi */
13
+ }
14
+
15
+ .dropdown-menu::-webkit-scrollbar-thumb:hover {
16
+ background-color: #555; /* Hover durumunda daha koyu */
17
+ }
18
+
19
+ .dark .dropdown-menu::-webkit-scrollbar-thumb {
20
+ background-color: #444; /* Dark tema için scrollbar rengi */
21
+ }
22
+
23
+ .dark .dropdown-menu::-webkit-scrollbar-thumb:hover {
24
+ background-color: #666; /* Dark tema hover */
25
+ }
26
+
27
+ .dropdown-menu::-webkit-scrollbar-track {
28
+ background: transparent; /* Scrollbar arka planı */
29
+ }
30
+
31
+ .dark .dropdown-menu::-webkit-scrollbar-track {
32
+ background: #151824; /* Dark tema için arka plan */
33
+ }
34
+
35
+ .dropdown-item {
36
+ padding: 8px 12px;
37
+ cursor: pointer;
38
+ }
39
+
40
+ .dropdown-item:hover {
41
+ background: #f1f1f1;
42
+ }
43
+
44
+ .dark .dropdown-item:hover {
45
+ background: #151824;
46
+ }
47
+