##// END OF EJS Templates
pyro4: Add the custom header `X-RhodeCode-Backend` to the pyro4 backend responses....
pyro4: Add the custom header `X-RhodeCode-Backend` to the pyro4 backend responses. This custom header sets the SCM backend which is in use. It is used to identify VCS responses in the error handler. VCS responses are skipped during error handling.

File last commit:

r822:133118c1 default
r848:2956cade default
Show More
rhodecode-toast.html
30 lines | 1.3 KiB | text/html | HtmlLexer
components: reorganize build pipeline to have nice separation of html/js/css
r703 <link rel="import" href="../../../../../../bower_components/paper-button/paper-button.html">
polymer: simplify shared components
r746 <link rel="import" href="../../../../../../bower_components/paper-toast/paper-toast.html">
components: reorganize build pipeline to have nice separation of html/js/css
r703 <link rel="import" href="../rhodecode-unsafe-html/rhodecode-unsafe-html.html">
<dom-module id="rhodecode-toast">
<template>
notifications: make styling match the design
r704 <style include="shared-styles"></style>
components: reorganize build pipeline to have nice separation of html/js/css
r703 <link rel="stylesheet" href="rhodecode-toast.css">
notifications: clear out toasts after animation, remove ink animation from the button
r778 <paper-toast id="p-toast"
duration="0"
horizontal-offset="100"
horizontal-align="auto"
vertical-align="top"
on-iron-overlay-closed="handleClosed"
always-on-top>
components: reorganize build pipeline to have nice separation of html/js/css
r703 <div class="toast-message-holder">
<template is="dom-repeat" items="{{toasts}}">
toasts: refedined how notifications looks
r747 <div class$="alert alert-{{item.level}}">
components: reorganize build pipeline to have nice separation of html/js/css
r703 <rhodecode-unsafe-html text="{{item.message}}"></rhodecode-unsafe-html>
</div>
</template>
</div>
<div class="toast-close">
notifications: move all notifications into polymer for consistency fix #4201
r822 <button on-tap="dismissNotifications" class="btn btn-default">{{_gettext('Close')}}</button>
components: reorganize build pipeline to have nice separation of html/js/css
r703 </div>
</paper-toast>
</template>
<script src="rhodecode-toast.js"></script>
</dom-module>