0
0
Fork 0

Change actions in reports to require only one click (#17487)

This commit is contained in:
Eugen Rochko 2022-02-11 21:51:57 +01:00 committed by GitHub
parent a27729ee48
commit d0fcf07436
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 154 additions and 36 deletions

View file

@ -1394,8 +1394,9 @@ a.sparkline {
}
&__button {
box-sizing: border-box;
flex: 0 0 auto;
width: 100px;
width: 200px;
padding: 15px;
padding-right: 0;
@ -1411,4 +1412,38 @@ a.sparkline {
color: $dark-text-color;
}
}
@media screen and (max-width: 800px) {
border: 0;
&__item {
flex-direction: column;
border: 0;
&__button {
width: 100%;
padding: 15px 0;
}
&__description {
padding: 0;
padding-bottom: 15px;
}
}
}
}
.section-skip-link {
float: right;
a {
color: $ui-highlight-color;
text-decoration: none;
&:hover,
&:focus,
&:active {
text-decoration: underline;
}
}
}