Skip to content

Commit

Permalink
CheckStatistics: Don't cut off execution start on small screens
Browse files Browse the repository at this point in the history
fixes #899
  • Loading branch information
nilmerg committed Oct 13, 2023
1 parent a87e808 commit 882e24e
Showing 1 changed file with 19 additions and 1 deletion.
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;
}
}
}

0 comments on commit 882e24e

Please sign in to comment.