-
Notifications
You must be signed in to change notification settings - Fork 49
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
Save/Discard changes buttons cover bottom part of sidepanel Fix #230
Conversation
CHANGELOG.md
Outdated
@@ -10,6 +10,7 @@ All notable changes to AET will be documented in this file. | |||
## Unreleased | |||
**List of changes that are finished but not yet released in any final version.** | |||
|
|||
- [PR-230](https://github.com/Cognifide/aet/pull/230) Added fixing styles for side panel dimensioning when 'Save/Discard Changes' buttons are visible. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider better description like:
Bug Fixed: Side panel items not accessible when 'Save/Discard Changes' buttons are shown.
<div class="js-rebase-all" ng-if="sidepanel.thereAreChangesToSave()" | ||
ng-click="sidepanel.saveAllChanges()"> | ||
|
||
<div class="js-manage-changes-wrapper" ng-if="sidepanel.thereAreChangesToSave()"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we rename this class to something that doesn't have 'js' prefix and doesn't mention any funcitonality since we're not using it in any JS file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Class selector renamed
# Conflicts: # CHANGELOG.md # report/src/main/webapp/assets/css/main.css
…to save-discard-changes-buttons # Conflicts: # report/src/main/webapp/assets/css/main.css
Description
Fixing styles for sidepanel dimensioning when 'Save/Discard Changes' buttons are visible.
Motivation and Context
When Save/Discard changes buttons are visible, they are covering the bottom part of side panel making test located there unable to be clicked. In this PR I am fixing this issue by adding proper styles.
Types of changes
I hereby agree to the terms of the AET Contributor License Agreement.