You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Display warning when search data is unavailable
- Retry downloading search index
- Auto-select first option on "enter" press
- Remove needless animations
Fixes#259
Copy file name to clipboardExpand all lines: _includes/style/icon.html
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,5 +5,6 @@
5
5
Parameters:
6
6
7
7
type: A name that matches an alert. Valid values are "success", info", "warning" and "danger".
8
+
class: A string to be used for additional "class" values (optional)
8
9
9
-
{% endcomment %}{% assign name = include.type %}{% if name == "success" %}{% assign name = "ok" %}{% elsif name == "info" %}{% assign name = "info-sign" %}{% elsif name == "warning" %}{% assign name = "alert" %}{% elsif name == "danger" %}{% assign name = "exclamation-sign" %}{% endif %}<spanclass="glyphicon glyphicon-{{ name }}" aria-hidden="true"></span>
10
+
{% endcomment %}{% assign name = include.type %}{% if name == "success" %}{% assign name = "ok" %}{% elsif name == "info" %}{% assign name = "info-sign" %}{% elsif name == "warning" %}{% assign name = "alert" %}{% elsif name == "danger" %}{% assign name = "exclamation-sign" %}{% endif %}<spanclass="glyphicon glyphicon-{{ name }} {{ include.class }}" aria-hidden="true"></span>
0 commit comments