Merge pull request #3308 from AlexSCorey/3283-BorderIssues

Removes top left border radius on lists

Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-02-27 16:55:01 +00:00 committed by GitHub
commit 3b5681465a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,6 +99,10 @@
.at-List-container {
border: @at-border-default-width solid @at-color-list-border;
border-radius: @at-border-radius;
& > div:last-of-type {
border-bottom-left-radius:@at-border-radius;
}
}
// Remove top left and right rounded corners of a list if there is a toolbar above it
@ -107,6 +111,12 @@
border-top-right-radius: 0;
}
.at-List-toolbar--attached + .at-List > .at-List-container{
.at-Row--active {
border-top-left-radius: 0;
}
}
.at-List-toolbar--attached + .at-List {
margin-top: 0;
}