##// 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:

r4409:58906467 default
r5365:ae8a165b default
Show More
tags.less
175 lines | 3.3 KiB | text/x-less | LessCssLexer
project: added all source files and assets
r1 // tags.less
// For use in RhodeCode applications;
// see style guide documentation for guidelines.
// TAGS
.tag,
.tagtag {
display: inline-block;
min-height: 0;
margin: 0 auto;
padding: .25em;
text-align: center;
font-size: (-1 + @basefontsize); //fit in tables
comments: re-implemented diff and comments/todos in pull-requests.
r3884 line-height: 1.1em;
project: added all source files and assets
r1 border: none;
Liviu
fixed and new-ui changes on the inputs, tags, dropdowns
r3594 box-shadow: @button-shadow;
project: added all source files and assets
r1 .border-radius(@border-radius);
font-family: @text-regular;
background-image: none;
color: @grey4;
Liviu
fixed and new-ui changes on the inputs, tags, dropdowns
r3594 .border ( @border-thickness-tags, @grey5 );
project: added all source files and assets
r1 white-space: nowrap;
a {
color: inherit;
Liviu
fixed and new-ui changes on the inputs, tags, dropdowns
r3594
&:hover {
color: @grey2;
}
project: added all source files and assets
r1
i,
[class^="icon-"]:before,
[class*=" icon-"]:before {
text-decoration: none;
}
}
Liviu
fixed and new-ui changes on the inputs, tags, dropdowns
r3594
&:hover {
border-color: @grey4;
}
comments: cleanup of PR versions/author tags.
r4409
&.authortag {
padding: 2px;
}
project: added all source files and assets
r1 }
.tag0 { .border ( @border-thickness-tags, @grey4 ); color:@grey4; }
.tag1 { .border ( @border-thickness-tags, @color1 ); color:@color1; }
.tag2 { .border ( @border-thickness-tags, @color2 ); color:@color2; }
.tag3 { .border ( @border-thickness-tags, @color3 ); color:@color3; }
.tag4 { .border ( @border-thickness-tags, @color4 ); color:@color4; }
.tag5 { .border ( @border-thickness-tags, @color5 ); color:@color5; }
.tag6 { .border ( @border-thickness-tags, @color6 ); color:@color6; }
.tag7 { .border ( @border-thickness-tags, @color7 ); color:@color7; }
.tag8 { .border ( @border-thickness-tags, @color8 ); color:@color8; }
gists: updated styling on gists pages according to the design.
r4082
.tag-gist-public {
.border (@border-thickness-tags, @color1);
color: @color1;
}
.tag-gist-private {
.border (@border-thickness-tags, @color2);
color: @color2;
}
pull-requests: loosen strict view of pull-requests that state is changing...
r4103 .tag-merge-state-created {
color: @color1;
}
.tag-merge-state-creating {
color: @color1;
}
.tag-merge-state-merging {
color: @color3;
}
.tag-merge-state-updating {
color: @color3;
}
project: added all source files and assets
r1 .metatag-list {
margin: 0;
padding: 0;
li {
margin: 0 0 @padding;
line-height: 1em;
list-style-type: none;
}
}
.branchtag, .booktag {
&:extend(.tag);
a {
color:inherit;
}
}
.metatag {
&:extend(.tag);
a {
color:inherit;
text-decoration: underline;
}
}
meta-tags: cleanup support for metatags....
r2091 [tag="generic"] { &:extend(.tag0); }
[tag="label"] { &:extend(.tag0); }
[tag="state featured"] { &:extend(.tag1); }
[tag="state dev"] { &:extend(.tag1); }
[tag="ref base"] { &:extend(.tag1); }
[tag="state stable"] { &:extend(.tag2); }
[tag="state stale"] { &:extend(.tag2); }
[tag="ref requires"] { &:extend(.tag3); }
[tag="state dead"] { &:extend(.tag4); }
metatags: improve display syntax and add deprecated tag.
r2093 [tag="state deprecated"] { &:extend(.tag4); }
meta-tags: cleanup support for metatags....
r2091
[tag="ref conflicts"] { &:extend(.tag4); }
[tag="license"] { &:extend(.tag6); }
[tag="lang"] { &:extend(.tag7); }
[tag="language"] { &:extend(.tag7); }
[tag="ref recommends"] { &:extend(.tag7); }
project: added all source files and assets
r1 [tag="see"] { &:extend(.tag8); }
meta-tags: cleanup support for metatags....
r2091 [tag="url"] { &:extend(.tag8); }
project: added all source files and assets
r1
dan
permissions: show overridden permissions in permission summary page
r100 .perm_overriden {
text-decoration: line-through;
opacity: 0.6;
}
project: added all source files and assets
r1 .perm_tag {
&:extend(.tag);
&.read {
&:extend(.tag1);
}
&.write {
&:extend(.tag4);
}
&.admin {
&:extend(.tag5);
}
branch permissions: added logic to define in UI branch permissions....
r2975 &.merge {
&:extend(.tag1);
}
&.push {
&:extend(.tag4);
}
&.push_force {
&:extend(.tag5);
}
mercurial: show phases status in changelog....
r1674 }
.phase-draft {
color: @color3
}
.phase-secret {
color:@grey3
}