@useblu/ocean-core 1.36.0 → 1.36.2
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 +10 -0
- package/ocean.css +9 -3
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.36.2](https://github.com/ocean-ds/ocean-web/compare/v1.36.1...v1.36.2) (2022-10-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @useblu/ocean-core
|
|
9
|
+
|
|
10
|
+
## [1.36.1](https://github.com/ocean-ds/ocean-web/compare/v1.36.0...v1.36.1) (2022-10-11)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- datepicker ([#1023](https://github.com/ocean-ds/ocean-web/issues/1023)) ([1f01013](https://github.com/ocean-ds/ocean-web/commit/1f010133d95da42e169908c7a3cd5e2add889d59))
|
|
15
|
+
|
|
6
16
|
# [1.36.0](https://github.com/ocean-ds/ocean-web/compare/v1.35.2...v1.36.0) (2022-10-06)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3362,14 +3362,14 @@
|
|
|
3362
3362
|
display: none;
|
|
3363
3363
|
}
|
|
3364
3364
|
.ods-datepicker .ods-datepicker_calendar_m1 {
|
|
3365
|
-
top:
|
|
3365
|
+
top: 72px;
|
|
3366
3366
|
}
|
|
3367
3367
|
.ods-datepicker .ods-datepicker_calendar_m2 {
|
|
3368
|
-
top:
|
|
3368
|
+
top: 72px;
|
|
3369
3369
|
}
|
|
3370
3370
|
@media (max-width: 321px) {
|
|
3371
3371
|
.ods-datepicker .ods-datepicker_calendar_m2 {
|
|
3372
|
-
top:
|
|
3372
|
+
top: 150px;
|
|
3373
3373
|
}
|
|
3374
3374
|
}
|
|
3375
3375
|
.ods-datepicker .ods-datepicker__caption {
|
|
@@ -3448,12 +3448,18 @@
|
|
|
3448
3448
|
display: grid;
|
|
3449
3449
|
grid-template-columns: repeat(7, 1fr);
|
|
3450
3450
|
}
|
|
3451
|
+
.ods-datepicker .rdp-head_cell {
|
|
3452
|
+
border: 0;
|
|
3453
|
+
text-align: center;
|
|
3454
|
+
}
|
|
3451
3455
|
.ods-datepicker .ods-datepicker__cell {
|
|
3456
|
+
border: 0;
|
|
3452
3457
|
display: flex;
|
|
3453
3458
|
height: 40px;
|
|
3454
3459
|
justify-content: center;
|
|
3455
3460
|
margin: 2px 0;
|
|
3456
3461
|
outline: 0;
|
|
3462
|
+
padding: 0;
|
|
3457
3463
|
text-align: center;
|
|
3458
3464
|
width: 100%;
|
|
3459
3465
|
}
|