Browse Source

Adding basic alerts. Inline ones too.

pull/231/head
connors 11 years ago
parent
commit
32383da449
  1. 5
      examples/app-default/index.html
  2. 7
      lib/sass/alerts.scss

5
examples/app-default/index.html

@ -70,6 +70,11 @@
</ul>
</div>
<div class="alert alert-positive alert-inline">
<strong>This</strong> is an inline alert.
<button>x</button>
</div>
<ul class="table-view">
<li class="table-view-cell table-view-divider">Recommended movies</li>
<li class="table-view-cell">

7
lib/sass/alerts.scss

@ -11,6 +11,13 @@
color: #fff;
border-radius: 3px;
z-index: 10;
.close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
}
// Positive alert (Default color is green)

Loading…
Cancel
Save