style.css 2.2 KB
.notification-bar {
	display: block;
}

.notification:hover {
  opacity: 0.8;
}

#notification-manager {
  overflow: auto;
}

.notification .notification-close {
  background: url(public/images/close.png) no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}

.warningnotification,
.informationnotification,
.successnotification,
.dangernotification {
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 5px;
  border: 1px solid blue;
  font-size: 16px;
  color: white;
  overflow: auto;
}

.warningnotification p,
.informationnotification p,
.successnotification p,
.dangernotification p {
  margin: 0px;
}

.warningnotification {
  background: #EEA236;
  border: 1px solid #EEA236;
}

.informationnotification {
  background: #5BC0DE;
  border: 1px solid #46B8DA;
}

.successnotification {
  background: #5CB85C;
  border: 1px solid #4CAE4C;
}

.dangernotification {
  background: #C9302C;
  border: 1px solid #AC2925;
}

a.button.icon-deactivate {
  background: url(public/images/hide.png) no-repeat;
  background-position: center;
}

a.button.icon-activate {
  background: url(public/images/show.png) no-repeat;
  background-position: center;
}

.notification-line {
  display: inline;
  padding-top: 10px;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}

.notification-title-bar {
  float: left;
  width: 100%;
  font-style: 14px;
  font-weight: 700;
  border-bottom: 2px solid black;
  padding: 9px 0;
}

.notification-title {
  width: 80%;
  float: left;
  text-align: center;
}

.action-title {
  width: 20%;
  float: left;
  text-align: center;
}

.notification-action {
  width: 18%;
  float: left;
  height: 30px;
  padding-top: 9px;
}

.main-bar .button,
.notification-action .button {
  border-radius: 3px;
}

.notification-message {
  width: 82%;
  float: left;
}

.new-notification {
  float: right;
  width: auto;
}

.back-button {
  float: left;
}

.main-bar {
  display: inline;
  width: 100%;
}

.notification-bar .notification .notification-message {
  width: 90%;
  float: left;
}

.notification-bar .notification .notification-close {
  background: url(public/images/close.png) no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  float: right;
  cursor: pointer;
}