bfg-common 1.0.27 → 1.0.29

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.
@@ -125,7 +125,23 @@ const onFocusInput = (event: Event) => {
125
125
 
126
126
  .dropdown-menu {
127
127
  position: fixed;
128
+ background-color: var(--dropdown-bg-color);
129
+ border-color: var(--block-border-color);
128
130
  z-index: 1000000000;
129
131
  visibility: unset;
132
+
133
+ .dropdown-item {
134
+ border-bottom: 1px solid transparent;
135
+ border-radius: 0;
136
+ color: var(--global-font-color3);
137
+ &:hover {
138
+ background-color: var(--row-hover-bg-color);
139
+ border-color: var(--row-hover-border-color);
140
+ color: var(--global-font-color3);
141
+ }
142
+ }
143
+ .dropdown-divider {
144
+ border-color: var(--block-border-color);
145
+ }
130
146
  }
131
147
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.0.27",
4
+ "version": "1.0.29",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",