@useblu/ocean-core 1.50.0 → 1.50.1

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.50.1](https://github.com/ocean-ds/ocean-web/compare/v1.50.0...v1.50.1) (2023-10-02)
7
+
8
+ ### Bug Fixes
9
+
10
+ - remove input jump on hover ([#1084](https://github.com/ocean-ds/ocean-web/issues/1084)) ([99ce61c](https://github.com/ocean-ds/ocean-web/commit/99ce61cb6364e26cf4753561dd186d7604fa98ad))
11
+
6
12
  # [1.50.0](https://github.com/ocean-ds/ocean-web/compare/v1.49.0...v1.50.0) (2023-09-27)
7
13
 
8
14
  ### Features
package/ocean.css CHANGED
@@ -1325,11 +1325,12 @@
1325
1325
  background-color: white;
1326
1326
  border: 1px solid #d8dae8;
1327
1327
  border-radius: 4px;
1328
+ box-sizing: border-box;
1328
1329
  display: flex;
1329
- height: 46px;
1330
+ height: 48px;
1330
1331
  }
1331
1332
  .ods-input input {
1332
- border: 0;
1333
+ border: 1px solid transparent;
1333
1334
  border-radius: 4px;
1334
1335
  box-sizing: border-box;
1335
1336
  color: #393b47;
@@ -1361,6 +1362,9 @@
1361
1362
  border-color: #5872f5;
1362
1363
  border-width: 2px;
1363
1364
  }
1365
+ .ods-input:hover input, .ods-input:focus input, .ods-input:active input, .ods-input:focus-within input {
1366
+ border-width: 0;
1367
+ }
1364
1368
  .ods-input--filled {
1365
1369
  border: 1px solid #b8c3ff;
1366
1370
  }