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

CheckStatistics: Don't cut off execution start on small screens #914

Merged
merged 1 commit into from
Oct 13, 2023
Merged
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
20 changes: 19 additions & 1 deletion public/css/widget/check-statistics.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
&.top-left-aligned,
&.top-right-aligned {
&::before {
display: none;
visibility: hidden;
}

svg {
Expand Down Expand Up @@ -171,3 +171,21 @@
}
}
}

#layout.twocols,
#layout.minimal-layout,
#layout.poor-layout,
#layout.compact-layout {
.check-statistics .bubble.top-right-aligned {
transform: translate(-50%, 0); // default what progress-bar() defined
border-top-right-radius: .25em; // default what progress-bar() defined

&::before {
visibility: visible;
}

svg {
display: none;
}
}
}