rhodecode-toast.less
44 lines
| 762 B
| text/x-less
|
LessCssLexer
r704 | @import '../../../../css/variables'; | |||
r703 | paper-toast{ | |||
width: 100%; | ||||
min-width: 400px; | ||||
--paper-toast-background-color: #ffffff; | ||||
--paper-toast-color: #000000; | ||||
} | ||||
paper-toast a{ | ||||
font-weight: bold | ||||
} | ||||
.toast-message-holder { | ||||
width: ~'calc(100% - 150px)'; | ||||
display: inline-block; | ||||
} | ||||
.toast-close { | ||||
display: inline-block; | ||||
width: 145px; | ||||
text-align: right; | ||||
float: right; | ||||
} | ||||
.toast-notification { | ||||
padding: 10px 0 10px 0; | ||||
} | ||||
.toast-level { | ||||
display: inline-block; | ||||
min-width: 100px; | ||||
font-weight: bold; | ||||
text-transform: uppercase; | ||||
r704 | &.info{ | |||
color: @alert4; | ||||
} | ||||
&.success { | ||||
color: @alert1; | ||||
r703 | } | |||
&.error, &.danger { | ||||
r704 | color: @alert2; | |||
r703 | } | |||
&.warning { | ||||
r704 | color: @alert3; | |||
r703 | } | |||
} | ||||