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

r4533:74d334b4 default
r5365:ae8a165b default
Show More
legacy_code_styles.less
406 lines | 7.6 KiB | text/x-less | LessCssLexer
/ rhodecode / public / css / legacy_code_styles.less
project: added all source files and assets
r1
/** MODAL **/
.modal-open {
overflow:hidden;
}
body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom {
margin-right:15px;
}
.modal {
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
z-index:1040;
display:none;
overflow-y:scroll;
&.fade .modal-dialog {
-webkit-transform:translate(0,-25%);
-ms-transform:translate(0,-25%);
transform:translate(0,-25%);
-webkit-transition:-webkit-transform 0.3s ease-out;
-moz-transition:-moz-transform 0.3s ease-out;
-o-transition:-o-transform 0.3s ease-out;
transition:transform 0.3s ease-out;
}
&.in .modal-dialog {
-webkit-transform:translate(0,0);
-ms-transform:translate(0,0);
transform:translate(0,0);
}
}
.modal-dialog {
z-index:1050;
width:auto;
padding:10px;
margin-right:auto;
margin-left:auto;
}
.modal-content {
position:relative;
background-color:#ffffff;
border: @border-thickness solid rgba(0,0,0,0.2);
.border-radius(@border-radius);
outline:none;
-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);
box-shadow:0 3px 9px rgba(0,0,0,0.5);
background-clip:padding-box;
}
.modal-backdrop {
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
z-index:1030;
background-color:#000000;
&.modal-backdrop.fade {
opacity:0;
filter:alpha(opacity=0);
}
&.in {
opacity:0.5;
filter:alpha(opacity=50);
}
}
.modal-header {
min-height:16.428571429px;
padding:15px;
border-bottom: @border-thickness solid @grey6;
.close {
margin-top:-2px;
}
}
.modal-title {
margin:0;
line-height:1.428571429;
}
.modal-body {
position:relative;
padding:20px;
}
.modal-footer {
padding:19px 20px 20px;
margin-top:15px;
text-align:right;
border-top:1px solid #e5e5e5;
.btn + .btn {
margin-bottom:0;
margin-left:5px;
}
.btn-group .btn + .btn {
margin-left:-1px;
}
.btn-block + .btn-block {
margin-left:0;
}
&:before {
display:table;
content:" ";
}
&:after {
display:table;
content:" ";
clear:both;
}
}
/** MARKDOWN styling **/
div.markdown-block {
clear: both;
overflow: hidden;
margin: 0;
padding: 3px 15px 3px;
}
div.markdown-block h1,
div.markdown-block h2,
div.markdown-block h3,
div.markdown-block h4,
div.markdown-block h5,
div.markdown-block h6 {
border-bottom: none !important;
padding: 0 !important;
overflow: visible !important;
}
style: updated li style and markdown style....
r3248 div.markdown-block h1,
div.markdown-block h2 {
border-bottom: 1px #e6e5e5 solid !important;
}
project: added all source files and assets
r1 div.markdown-block h1 {
font-size: 32px;
margin: 15px 0 15px 0 !important;
}
div.markdown-block h2 {
font-size: 24px !important;
margin: 34px 0 10px 0 !important;
}
div.markdown-block h3 {
font-size: 18px !important;
margin: 30px 0 8px 0 !important;
padding-bottom: 2px !important;
}
div.markdown-block h4 {
font-size: 13px !important;
margin: 18px 0 3px 0 !important;
}
div.markdown-block h5 {
font-size: 12px !important;
margin: 15px 0 3px 0 !important;
}
div.markdown-block h6 {
font-size: 12px;
color: #777777;
margin: 15px 0 3px 0 !important;
}
div.markdown-block hr {
border: 0;
color: #e6e5e5;
markdown: fixed hr styling, and strong style.
r1730 background-color: #e6e5e5;
project: added all source files and assets
r1 height: 3px;
margin-bottom: 13px;
}
ui: improved readme rendering.
r4206 div.markdown-block blockquote {
color: #424242 !important;
padding: 8px 21px;
margin: 12px 0;
border-left: 4px solid @grey6;
}
div.markdown-block blockquote p {
color: #424242 !important;
padding: 0 !important;
margin: 0 !important;
line-height: 1.5;
}
project: added all source files and assets
r1 div.markdown-block ol,
div.markdown-block ul,
div.markdown-block p,
div.markdown-block blockquote,
div.markdown-block dl,
div.markdown-block li,
styling: GFM tweaks #4054
r344 div.markdown-block table {
project: added all source files and assets
r1 color: #424242 !important;
font-size: 13px !important;
fonts: use consistent fonts across whole application.
r3165 font-family: @text-regular;
project: added all source files and assets
r1 font-weight: normal !important;
overflow: visible !important;
}
styling: GFM tweaks #4054
r344 div.markdown-block pre {
margin: 3px 0px 13px 0px !important;
padding: .5em;
color: #424242 !important;
font-size: 13px !important;
overflow: visible !important;
line-height: 140% !important;
background-color: @grey7;
}
project: added all source files and assets
r1 div.markdown-block img {
markup: improved markup CSS....
r1526 border-style: none;
background-color: #fff;
comments: added support for adding comment attachments using the artifacts logic....
r3973 max-width: 100%;
project: added all source files and assets
r1 }
markdown: fixed hr styling, and strong style.
r1730
div.markdown-block strong {
font-weight: 600;
margin: 0;
}
markup: fix styling for check-lists, ref #5513
r3683 div.markdown-block ul.checkbox,
div.markdown-block ol.checkbox {
padding-left: 20px !important;
margin-top: 0px !important;
margin-bottom: 18px !important;
}
project: added all source files and assets
r1 div.markdown-block ul,
div.markdown-block ol {
padding-left: 30px !important;
margin-top: 0px !important;
margin-bottom: 18px !important;
}
markup: fix styling for check-lists, ref #5513
r3683 div.markdown-block ul.checkbox li,
div.markdown-block ol.checkbox li {
list-style: none !important;
pull-requests: overhaul of the UX by adding new sidebar...
r4482 margin: 0px !important;
markup: fix styling for check-lists, ref #5513
r3683 padding: 0 !important;
}
project: added all source files and assets
r1 div.markdown-block ul li,
div.markdown-block ol li {
list-style: disc !important;
pull-requests: overhaul of the UX by adding new sidebar...
r4482 margin: 0px !important;
project: added all source files and assets
r1 padding: 0 !important;
}
div.markdown-block ol li {
list-style: decimal !important;
}
div.markdown-block #message {
.border-radius(@border-radius);
border: @border-thickness solid @grey5;
display: block;
width: 100%;
height: 60px;
margin: 6px 0px;
}
div.markdown-block button,
div.markdown-block #ws {
font-size: @basefontsize;
padding: 4px 6px;
.border-radius(@border-radius);
border: @border-thickness solid @grey5;
background-color: @grey6;
}
markdown: improved styling, and fixed nl2br extensions to only do br on new elements not inline....
r4533 div.markdown-block p {
margin-top: 0;
margin-bottom: 16px;
padding: 0;
line-height: unset;
}
project: added all source files and assets
r1 div.markdown-block code,
div.markdown-block pre,
div.markdown-block #ws,
div.markdown-block #message {
fonts: use consistent fonts across whole application.
r3165 font-family: @text-monospace;
project: added all source files and assets
r1 font-size: 11px;
.border-radius(@border-radius);
background-color: white;
color: @grey3;
}
div.markdown-block code {
border: @border-thickness solid @grey6;
margin: 0 2px;
padding: 0 5px;
}
div.markdown-block pre {
border: @border-thickness solid @grey5;
overflow: auto;
styling: GFM tweaks #4054
r344 padding: .5em;
background-color: @grey7;
project: added all source files and assets
r1 }
div.markdown-block pre > code {
border: 0;
margin: 0;
padding: 0;
}
/** RST STYLE **/
div.rst-block {
clear: both;
overflow: hidden;
margin: 0;
padding: 3px 15px 3px;
}
div.rst-block h2 {
font-weight: normal;
}
div.rst-block h1,
div.rst-block h2,
div.rst-block h3,
div.rst-block h4,
div.rst-block h5,
div.rst-block h6 {
border-bottom: 0 !important;
margin: 0 !important;
padding: 0 !important;
line-height: 1.5em !important;
}
div.rst-block h1:first-child {
padding-top: .25em !important;
}
div.rst-block h2,
div.rst-block h3 {
margin: 1em 0 !important;
}
style: updated li style and markdown style....
r3248 div.rst-block h1,
div.rst-block h2 {
border-bottom: 1px #e6e5e5 solid !important;
}
project: added all source files and assets
r1 div.rst-block h2 {
margin-top: 1.5em !important;
padding-top: .5em !important;
}
div.rst-block p {
color: black !important;
margin: 1em 0 !important;
line-height: 1.5em !important;
}
div.rst-block ul {
list-style: disc !important;
margin: 1em 0 1em 2em !important;
clear: both;
}
div.rst-block ol {
list-style: decimal;
margin: 1em 0 1em 2em !important;
}
div.rst-block pre,
div.rst-block code {
font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
}
div.rst-block code {
font-size: 12px !important;
background-color: ghostWhite !important;
color: #444 !important;
padding: 0 .2em !important;
border: 1px solid #dedede !important;
}
div.rst-block pre code {
padding: 0 !important;
font-size: 12px !important;
background-color: #eee !important;
border: none !important;
}
div.rst-block pre {
margin: 1em 0;
padding: @padding;
border: 1px solid @grey6;
.border-radius(@border-radius);
overflow: auto;
font-size: 12px;
color: #444;
background-color: @grey7;
}