##// END OF EJS Templates
git: use force fetch and update for target ref. This solves a case...
git: use force fetch and update for target ref. This solves a case when in PRs a target is force updated and is out of sync. Before we used a pull which --ff-only fails obviosly because two are out of sync. This change uses new logic that resets the target branch according to the source target branch allowing smooth merge simulation.

File last commit:

r1:854a839a default
r2784:e8c62649 default
Show More
examples.less
73 lines | 1.3 KiB | text/x-less | LessCssLexer
// Utilities for showing examples in our style guide
.bs-example {
// TODO: johbo: mainly copy paste here, find better integration
border-color: #e5e5e5 #eee #eee;
border-style: solid;
border-width: 1px 0;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05) inset;
margin: 0 -15px 15px;
padding: 45px 15px 15px;
position: relative;
background-color: #fff;
border-color: #ddd;
border-radius: 4px 4px 0 0;
border-width: 1px;
box-shadow: none;
margin-left: 0;
margin-right: 0;
table {
width: 100%;
}
}
.sidebar li.divider {
padding-top: 30px;
border-top:1px solid #eee;
}
.bs-example:after {
color: #959595;
content: "Example";
font-size: 12px;
font-weight: 700;
left: 15px;
letter-spacing: 1px;
position: absolute;
text-transform: uppercase;
top: 15px;
}
.template-example {
xmp {
display: inline;
}
}
#icons-list{
span{
margin-right: @textmargin/2;
}
}
.rctable.examples {
margin: 0;
td:first-child { width: 135px; }
td:nth-child(2) { width: 400px; }
&.end { margin-bottom: 40px; }
}
// For use in Style Guide to mark out code examples
.highlight-html {
margin-bottom: 30px;
border: 1px solid #dbd9da;
border-radius: 2px;
color: #979797;
background-color: #f3f3f3;
}