From be83a8f382cf2fea98161bfd6d51719aacbf9aa9 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Thu, 28 Jan 2016 16:30:12 +0100 Subject: Update JSON API --- .../src/angular-ui-notification.less | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 afm-client/bower_components/angular-ui-notification/src/angular-ui-notification.less (limited to 'afm-client/bower_components/angular-ui-notification/src/angular-ui-notification.less') diff --git a/afm-client/bower_components/angular-ui-notification/src/angular-ui-notification.less b/afm-client/bower_components/angular-ui-notification/src/angular-ui-notification.less new file mode 100644 index 0000000..5b66b01 --- /dev/null +++ b/afm-client/bower_components/angular-ui-notification/src/angular-ui-notification.less @@ -0,0 +1,55 @@ +@import "../bower_components/bootstrap/less/variables.less"; +@import "../bower_components/bootstrap/less/mixins.less"; + + +.ui-notification { + position: fixed; + z-index: 9999; + box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); + cursor: pointer; + width: 300px; + color: @btn-primary-color; + background: @brand-primary; + .transition(all ease 0.5s); + &.killed { + opacity: 0; + .transition(opacity ease 1s); + } + & > h3 { + display: block; + margin: 10px 10px 0 10px; + padding: 0 0 5px 0; + text-align: left; + font-size: @font-size-base; + font-weight: bold; + border-bottom: 1px solid fadeout(@btn-primary-color, 70%); + } + & a { + color: @btn-primary-color; + &:hover { + text-decoration: underline; + } + } + & > .message { + margin: 10px 10px 10px 10px; + } + &.warning { + color: @btn-warning-color; + background: @brand-warning; + } + &.error { + color: @btn-danger-color; + background: @brand-danger; + } + &.success { + color: @btn-success-color; + background: @brand-success; + } + &.info { + color: @btn-info-color; + background: @brand-info; + } + &:hover { + opacity: 0.7; + } +} \ No newline at end of file -- cgit 1.2.3-korg