mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
75ebf7c5bd
* fix media query edge case was failing for 768px width before * code review * define responsive breakpoints as less variables * add missing variables.less * rename variables, drop screen constraints * fix less import * Apply suggestions from code review Co-authored-by: silverwind <me@silverwind.io> * code review altough it doesnt matter, LESS lazy evals variables Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
50 lines
757 B
Plaintext
50 lines
757 B
Plaintext
#user-heatmap {
|
|
width: 107%; // Fixes newest contributions not showing
|
|
text-align: center;
|
|
|
|
svg:not(:root) {
|
|
overflow: inherit;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
@media @mediaLgAndDown {
|
|
& {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.total-contributions {
|
|
text-align: left;
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
.heatmap-container {
|
|
position: relative;
|
|
}
|
|
|
|
.heatmap-container .total-contributions {
|
|
font-size: 11px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 25px;
|
|
}
|
|
|
|
@media @mediaLgAndDown {
|
|
.heatmap-container .total-contributions {
|
|
left: 21px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
.heatmap-container .total-contributions {
|
|
font-size: 10px;
|
|
left: 17px;
|
|
bottom: -2px;
|
|
}
|
|
}
|
|
|
|
.heatmap-container text {
|
|
fill: currentColor !important;
|
|
}
|