##// END OF EJS Templates
css: using variables and mixins for toast component
css: using variables and mixins for toast component

File last commit:

r766:0c989a59 default
r766:0c989a59 default
Show More
rhodecode-toast.less
27 lines | 519 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;
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 {
text-align: right;
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{
css: using variables and mixins for toast component
r766 margin: 0px 0 @padding 0;
.box-shadow(0 2px 5px 0 rgba(0, 0, 0, 0.15));
toasts: refedined how notifications looks
r747 }