##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r3186:3a350ddc default
r5365:ae8a165b default
Show More
diff.less
101 lines | 2.2 KiB | text/x-less | LessCssLexer
project: added all source files and assets
r1 div.diffblock .code-header .changeset_header > div {
margin: 0 @padding;
}
// Line select and comment
div.diffblock.margined.comm tr {
td {
dan
ux: remove position relative on diff td as it causes very slow...
r788 // IMPORTANT - never position:relative this as it causes insanely
// slow rendering
project: added all source files and assets
r1 }
.add-comment-line {
// Force td width for Firefox
width: 20px;
dan
ux: remove position relative on diff td as it causes very slow...
r788
// TODO: anderson: fixing mouse-over bug.
project: added all source files and assets
r1 // why was it vertical-align baseline in first place??
vertical-align: top !important;
// Force width and display for IE 9
.add-comment-content {
display: inline-block;
width: 20px;
a {
display: none;
dan
ux: remove position relative on diff td as it causes very slow...
r788 margin-top: 2px;
margin-left: 2px;
project: added all source files and assets
r1 color: @grey3;
}
}
}
diffs: adding inline comment toggle fixes #2884
r696 .comment-toggle {
styling: fixing alignment of comment toggle button
r781 position: relative;
styling: fixing width on comment toggle button td
r783 min-width: 20px;
width: 20px;
diffs: adding inline comment toggle fixes #2884
r696 color: @rcblue;
styling: fixing alignment of comment toggle button
r781
.icon-comment {
position: absolute;
top: 2px;
left: 0;
z-index: 100;
diffs: do not set incorrect display type on table TD
r742 visibility: hidden;
}
diffs: adding inline comment toggle fixes #2884
r696
&.active {
diffs: do not set incorrect display type on table TD
r742 .icon-comment{
visibility: visible;
}
diffs: adding inline comment toggle fixes #2884
r696 cursor: pointer;
}
}
project: added all source files and assets
r1 &.line {
&:hover, &.hover{
.add-comment-line a{
display: inline;
}
}
&.hover, &.selected {
&, del, ins {
background-color: lighten(@alert3, 10%) !important;
}
}
&.commenting {
&, del, ins {
background-image: none !important;
dan
ux: remove position relative on diff td as it causes very slow...
r788 background-color: lighten(@alert4, 10%) !important;
project: added all source files and assets
r1 }
}
}
}
.compare-header {
overflow-x: auto;
overflow-y: hidden;
clear: both;
padding: @padding;
background: @grey6;
border: @border-thickness solid @border-default-color;
.border-radius(@border-radius);
.compare-value,
.compare-label {
float: left;
display: inline-block;
min-width: 5em;
margin: 0;
padding: 0.9em 0.9em 0.9em 0;
}
.compare-label {
clear: both;
style: bring back bold font style.
r3186 font-weight: @text-semibold-weight;
project: added all source files and assets
r1 font-family: @text-semibold;
}
diffs: do not set incorrect display type on table TD
r742 }