Skip to content

Commit

Permalink
Merge branch 'develop' into bs/fixed_issue_2633
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Sekachev authored Jan 29, 2021
2 parents 5405afd + 0380460 commit 5d5475e
Show file tree
Hide file tree
Showing 7 changed files with 113 additions and 88 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

-
- Updated HTTPS install README section (cleanup and described more robust deploy)

### Deprecated

Expand All @@ -31,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed filters select overflow (<https://github.com/openvinotoolkit/cvat/pull/2614>)
- Fixed tasks in project autoannotation (<https://github.com/openvinotoolkit/cvat/pull/2725>)
- Cuboids are missed in annotations statistics (<https://github.com/openvinotoolkit/cvat/pull/2704>)
- The list of files attached to the task is not displayed (<https://github.com/openvinotoolkit/cvat/pull/2706>)
- The list of files attached to the task is not displayed (<https://github.com/openvinotoolkit/cvat/pul
- A couple of css-related issues (top bar disappear, wrong arrow position on collapse elements) (<https://github.com/openvinotoolkit/cvat/pull/2736>)
- Issue with point region doesn't work in Firefox (<https://github.com/openvinotoolkit/cvat/pull/2727>)

### Security
Expand Down
8 changes: 4 additions & 4 deletions cvat-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cvat-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.13.7",
"version": "1.13.8",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {
Expand Down Expand Up @@ -54,7 +54,7 @@
"@types/react-color": "^3.0.4",
"@types/react-dom": "^16.9.10",
"@types/react-redux": "^7.1.15",
"@types/react-router": "^5.1.9",
"@types/react-router": "^5.1.10",
"@types/react-router-dom": "^5.1.7",
"@types/react-share": "^3.0.3",
"@types/redux-logger": "^3.0.8",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2020 Intel Corporation
// Copyright (C) 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
height: 25px;

.ant-collapse-arrow {
padding: 0;
top: $grid-unit-size;
}
}
Expand All @@ -32,6 +33,7 @@

> .ant-collapse-content-box {
padding: 10px;
padding-bottom: 0;
}
}
}
Expand Down Expand Up @@ -215,6 +217,7 @@
.cvat-objects-sidebar-state-item-collapse {
border: 0;
background: inherit;
width: 100%;

> .ant-collapse-item {
background: inherit;
Expand All @@ -226,6 +229,7 @@
padding-bottom: 2px;

.ant-collapse-arrow {
padding: 0;
top: $grid-unit-size;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@

.cvat-objects-sidebar {
height: 100%;
overflow-y: auto;
overflow-x: hidden;

&.ant-layout-sider-collapsed {
overflow: initial;
}
}

.cvat-rotate-canvas-controls-right > svg {
Expand All @@ -30,6 +36,8 @@
.cvat-canvas-controls-sidebar {
background-color: $background-color-2;
border-right: 1px solid $border-color-1;
overflow-y: auto;
overflow-x: hidden;
}

.cvat-cursor-control,
Expand Down
Loading

0 comments on commit 5d5475e

Please sign in to comment.