benivo-ui-library 1.9.43 → 1.9.45

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tooltip.less +4 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "benivo-ui-library",
3
- "version": "1.9.43",
3
+ "version": "1.9.45",
4
4
  "description": "Benivo UI library",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
package/tooltip.less CHANGED
@@ -1,13 +1,10 @@
1
- // @tooltip-border-color: rgba(79, 90, 101, 0.27);
2
- // @tooltip-bg: @white;
3
- @tooltip-border: solid 0.5px var(--gray-900);
1
+ @tooltip-border: solid 0.5px var(--gray-900);
4
2
  @tooltip-box-shadow: 0 1px 4px 0 rgba(79, 90, 101, 0.3);
5
3
  @tooltip-font-size: @font-size-xs;
6
4
  @tooltip-arrow-width: 12px;
7
5
 
8
6
  .tooltip {
9
- background: var(--white);
10
- border: @tooltip-border;
7
+ color: var(--white);
11
8
  font-size: @tooltip-font-size;
12
9
  font-weight: @font-weight-normal;
13
10
  font-family: @font-family;
@@ -121,7 +118,7 @@
121
118
 
122
119
  .tooltip-inner {
123
120
  padding: 0.375rem 0.55rem;
124
- background: var(--white);
121
+ background: var(--gray-900);
125
122
  .border-radius(@border-radius);
126
123
  text-align: center;
127
124
 
@@ -131,7 +128,7 @@
131
128
  width: @tooltip-arrow-width;
132
129
  height: @tooltip-arrow-width;
133
130
  position: absolute;
134
- background-color: var(--white);
131
+ background-color: var(--gray-900);
135
132
  .box-shadow(-1px -1px 0 var(--border-200));
136
133
  }
137
134
  }