##// END OF EJS Templates
http-proto: in case incoming requests come in as chunked stream the data to VCSServer....
http-proto: in case incoming requests come in as chunked stream the data to VCSServer. This should solve a problem of uploading large files to rhodecode. In case of git with small postBuffers GIT client streams data to the server. In such case we want to stream the data back again to vcsserver without reading it fully inside RhodeCode.

File last commit:

r799:98bb3f4f default
r1434:59cf3775 stable
Show More
rhodecode-toast.less
29 lines | 571 B | text/x-less | LessCssLexer
notifications: make styling match the design
r704 @import '../../../../css/variables';
css: using variables and mixins for toast component
r766 @import '../../../../css/mixins';
notifications: make styling match the design
r704
components: reorganize build pipeline to have nice separation of html/js/css
r703 paper-toast{
width: 100%;
min-width: 400px;
notifications: restyle a bit so we don't have invisible element obscure html
r799 padding: 0px;
toasts: refedined how notifications looks
r747 --paper-toast-background-color: transparent;
components: reorganize build pipeline to have nice separation of html/js/css
r703 --paper-toast-color: #000000;
css: using variables and mixins for toast component
r766 .box-shadow(none);
components: reorganize build pipeline to have nice separation of html/js/css
r703 }
paper-toast a{
font-weight: bold
}
.toast-message-holder {
}
.toast-close {
notifications: restyle a bit so we don't have invisible element obscure html
r799 right: -5px;
position: absolute;
bottom: -45px;
toasts: refedined how notifications looks
r747 paper-button{
css: using variables and mixins for toast component
r766 .box-shadow(0 2px 5px 0 rgba(0, 0, 0, 0.15));
components: reorganize build pipeline to have nice separation of html/js/css
r703 }
}
toasts: refedined how notifications looks
r747 paper-toast .alert{
notifications: restyle a bit so we don't have invisible element obscure html
r799 margin: @padding 0 0 0;
css: using variables and mixins for toast component
r766 .box-shadow(0 2px 5px 0 rgba(0, 0, 0, 0.15));
toasts: refedined how notifications looks
r747 }