MDL-38893 - Fixing layout of the debug boxes for cache information under bootstrap - patch provided by David Scotson <david.scotson@glasgow.ac.uk>

This commit is contained in:
Jason Fowler 2013-04-11 10:53:29 +08:00
parent 3a8c4380c0
commit c01404f99a
2 changed files with 22 additions and 14 deletions

View File

@ -49,19 +49,27 @@
.performanceinfo .cachesused {
margin-top: 1em;
}
.performanceinfo .cachesused .cache-stats-heading {
font-weight: bold;
text-decoration: underline;
font-size: 110%;
}
.performanceinfo .cachesused .cache-definition-stats {
font-weight: bold;
margin-top: 0.3em;
}
.performanceinfo .cachesused .cache-store-stats {
text-indent: 1em;
}
.performanceinfo .cachesused .cache-stats-heading,
.performanceinfo .cachesused .cache-total-stats {
font-weight: bold;
font-size: 110%;
margin-top: 0.3em;
}
#page-footer .performanceinfo .cachesused .cache-definition-stats {
margin: .3em;
display: inline-block;
vertical-align: top;
background-color: @wellBackground;
}
.cache-store-stats {
padding: 0 1.3em;
}
.cache-store-stats.nohits {
background-color: @errorBackground;
}
.cache-store-stats.lowhits {
background-color: @warningBackground;
}
.cache-store-stats.hihits {
background-color: @successBackground;
}

File diff suppressed because one or more lines are too long