##// END OF EJS Templates
css: using variables and mixins for toast component
lisaq -
r766:0c989a59 default
parent child Browse files
Show More
@@ -1,28 +1,27 b''
1 1 @import '../../../../css/variables';
2 @import '../../../../css/mixins';
2 3
3 4 paper-toast{
4 5 width: 100%;
5 6 min-width: 400px;
6 7 --paper-toast-background-color: transparent;
7 8 --paper-toast-color: #000000;
8 -webkit-box-shadow: none;
9 -moz-box-shadow: none;
10 box-shadow: none;
9 .box-shadow(none);
11 10 }
12 11 paper-toast a{
13 12 font-weight: bold
14 13 }
15 14
16 15 .toast-message-holder {
17 16 }
18 17 .toast-close {
19 18 text-align: right;
20 19
21 20 paper-button{
22 box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
21 .box-shadow(0 2px 5px 0 rgba(0, 0, 0, 0.15));
23 22 }
24 23 }
25 24 paper-toast .alert{
26 margin: 0px 0 15px 0;
27 box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
25 margin: 0px 0 @padding 0;
26 .box-shadow(0 2px 5px 0 rgba(0, 0, 0, 0.15));
28 27 }
General Comments 0
You need to be logged in to leave comments. Login now