Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GSoC2024] Displayed total no. of annotations #7654

Merged
merged 16 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated styles
  • Loading branch information
bsekachev committed Apr 3, 2024
commit 7e3bab48a559a2586408ead3a2833b727a378050
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function LabelsListComponent(): JSX.Element {
<div className='cvat-objects-sidebar-issues-list-header'>
<Row justify='start' align='middle'>
<Col>
<Text strong>{`Items: ${frameIssues.length}`}</Text>
<Text type='secondary'>{`Items: ${frameIssues.length}`}</Text>
</Col>
<Col offset={1}>
<CVATTooltip title='Find the previous frame with issues'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function LabelsListComponent(): JSX.Element {
<div className='cvat-objects-sidebar-labels-list'>
<GlobalHotKeys keyMap={subKeyMap} handlers={handlers} />
<div className='cvat-objects-sidebar-labels-list-header'>
<Text strong>{`Items: ${labels.length}`}</Text>
<Text type='secondary'>{`Items: ${labels.length}`}</Text>
</div>
{labelIDs.map(
(labelID: number): JSX.Element => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function ObjectListHeader(props: Props): JSX.Element {
<div className='cvat-objects-sidebar-states-header'>
<Row justify='space-between' align='middle'>
<Col span={24}>
<Text strong>{`Items: ${count}`}</Text>
<Text type='secondary'>{`Items: ${count}`}</Text>
<StatesOrderingSelector
statesOrdering={statesOrdering}
changeStatesOrdering={changeStatesOrdering}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function StatesOrderingSelectorComponent(props: StatesOrderingSelectorComponentP

return (
<Col>
<Text strong>Sort by</Text>
<Text type='secondary'>Sort by</Text>
<Select
size='small'
className='cvat-objects-sidebar-ordering-selector'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@

.cvat-objects-sidebar-states-header {
background: $background-color-2;
padding: $grid-unit-size;
padding: $grid-unit-size $grid-unit-size * 2 $grid-unit-size $grid-unit-size * 2;
line-height: $grid-unit-size * 3;
border-bottom: 1px solid $border-color-1;

Expand Down
Loading