##// END OF EJS Templates
pull-requests: increase stability of concurrent pull requests creation by flushing prematurly the statuses of commits....
pull-requests: increase stability of concurrent pull requests creation by flushing prematurly the statuses of commits. This is required to increase the versions on each concurrent call. Otherwise we could get into an integrity errors of commitsha+version+repo

File last commit:

r3248:aeca5dec default
r3408:2a133f7e stable
Show More
helpers.less
90 lines | 1.4 KiB | text/x-less | LessCssLexer
project: added all source files and assets
r1 //--- RESETS ---//
:focus { outline: none; }
a { cursor: pointer; }
//--- clearfix --//
.clearfix {
&:before,
&:after {
content:"";
width: 100%;
clear: both;
float: left;
}
}
dan
ux: make the diffset header more pronounced and show commit details...
r1138 .clearinner:after { /* clears all floating divs inside a block */
content: "";
display: table;
clear: both;
}
dan
diffs: add comments to changeset diffs
r1143 .js-template { /* mark a template for javascript use */
display: none;
}
dan
ux: make the diffset header more pronounced and show commit details...
r1138
project: added all source files and assets
r1 .linebreak {
display: block;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.block-left {
float: left;
}
.block-right {
float: right;
clear: right;
style: updated li style and markdown style....
r3248 li {
list-style-type: none;
}
project: added all source files and assets
r1 }
//--- DEVICE-SPECIFIC CLASSES ---------------//
//regular tablet and up
@media (min-width:768px) {
.no-mobile {
display: block;
}
.mobile-only {
display: none;
}
}
//small tablet and phone
@media (max-width:767px) {
.mobile-only {
display: block;
}
.no-mobile {
display: none;
}
}
//--- STICKY FOOTER ---//
html, body {
height: 100%;
margin: 0;
}
.outerwrapper {
height: 100%;
min-height: 100%;
margin: 0;
padding-bottom: 3em; /* must be equal to footer height */
}
.outerwrapper:after{
content:" ";
}
#footer {
clear: both;
position: relative;
height: 3em; /* footer height */
margin: -3em 0 0; /* must be equal to footer height */
}