Skip to content
New issue

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

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

Already on GitHub? # to your account

UI: remove scrolling constraints on access list #111

Merged
merged 4 commits into from
Aug 5, 2019
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased](https://github.com/virtru/protect-and-track/compare/master...HEAD)

- [NO-REF](https://github.com/virtru/protect-and-track/pull/111): _patch_
- Remove scrolling constraints on access list

## [v1.0.3](https://github.com/virtru/protect-and-track/compare/v1.0.2...v1.0.3) - 2019-08-05

- [DSAT-142](https://github.com/virtru/protect-and-track/pull/109): _patch_
Expand Down
23 changes: 0 additions & 23 deletions src/scenes/Document/scenes/Policy/components/Access/Access.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.Access > ol {
margin: 0;
max-height: 126px;
overflow-y: auto;
}

.Grant,
Expand Down Expand Up @@ -88,27 +86,6 @@
cursor: default;
}

.Access > ol {
padding-right: 10px;
margin-bottom: 10px;
/* Not currently supported https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scrollbars */
/* scrollbar-color: #e2e8f0 #cbd5e0;
scrollbar-width: thin; */
}
.Access > ol::-webkit-scrollbar {
width: 0.5rem !important;
height: 0.5rem !important;
}
.Access > ol::-webkit-scrollbar-track {
background-color: #e2e8f0 !important;
}
.Access > ol::-webkit-scrollbar-thumb {
background-color: #cbd5e0 !important;
}
.Access > ol::-webkit-scrollbar-thumb {
border-radius: 0.25rem !important;
}

.Grant input[type='submit'],
.Grant input[type='submit']:hover,
.Grant input[type='submit']:focus {
Expand Down