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

Improvements of Bootstrap and style using #1699

Merged
merged 7 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.136.0] - Not released
### Fixed
- Multiple fixes in style handling process:
- Bootstrap 3 is now a regular dependency in package.json;
- Modern compiler API of Sass is used, see
[details](https://sass-lang.com/documentation/breaking-changes/legacy-js-api/#bundlers);
- All mixed declarations in .scss files were removed, see
[details](https://sass-lang.com/documentation/breaking-changes/mixed-decls/).

## [1.135.1] - 2024-10-08
### Fixed
Expand Down
Binary file not shown.
288 changes: 0 additions & 288 deletions assets/fonts/bootstrap/glyphicons-halflings-regular.svg

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@fortawesome/free-solid-svg-icons": "~5.15.4",
"@sentry/react": "~7.113.0",
"autotrack": "~2.4.1",
"bootstrap": "~3.4.1",
"classnames": "~2.5.1",
"custom-event": "~1.0.1",
"date-fns": "~4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/expandable.module.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '../styles/helvetica/dark-vars.scss';
@import '../../styles/helvetica/dark-vars.scss';

.clippedContent {
overflow-y: hidden; /* fallback for old Safari */
Expand Down
11 changes: 5 additions & 6 deletions src/components/layout-header.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ $without-sidebar: '(max-width: 991px)';
}

.searchForm {
@include with-gap;

display: flex;
flex: 0 1 100%;
position: relative;
height: 32px;

@include with-gap;

.fullMode & {
max-width: 380px;
}
Expand Down Expand Up @@ -155,14 +155,14 @@ $without-sidebar: '(max-width: 991px)';
}

.activeElements {
@include with-gap;

display: flex;
flex: 2;
justify-content: flex-end;
height: 40px;
align-items: center;

@include with-gap;

.collapsibleMode & {
flex: 0;
}
Expand Down Expand Up @@ -209,13 +209,12 @@ $without-sidebar: '(max-width: 991px)';
height: 32px;
opacity: 0.4;
transition: opacity 0.3s;
visibility: hidden;

&:hover {
opacity: 0.8;
}

visibility: hidden;

.searchInputContainer:focus-within & {
visibility: visible;
}
Expand Down
73 changes: 0 additions & 73 deletions styles/common/bootstrap/3.3.4/_alerts.scss

This file was deleted.

68 changes: 0 additions & 68 deletions styles/common/bootstrap/3.3.4/_badges.scss

This file was deleted.

26 changes: 0 additions & 26 deletions styles/common/bootstrap/3.3.4/_breadcrumbs.scss

This file was deleted.

Loading
Loading