diff options
Diffstat (limited to 'ext/bg/options.html')
-rw-r--r-- | ext/bg/options.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/bg/options.html b/ext/bg/options.html index 25831b38..a3588642 100644 --- a/ext/bg/options.html +++ b/ext/bg/options.html @@ -5,6 +5,11 @@ <title>Here go options</title> <link rel="stylesheet" type="text/css" href="lib/bootstrap-3.3.6-dist/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="lib/bootstrap-3.3.6-dist/css/bootstrap-theme.min.css"> + <style type="text/css"> + .notifyAlerts { + display: none; + } + </style> </head> <body> <div class="container"> @@ -34,6 +39,20 @@ </div> </div> + <div class="alert alert-success notifyAlerts" id="notifySave"> + Preferences saved + <button type="button" class="close" data-hide="notifySave"> + <span aria-hidden="true">×</span> + </button> + </div> + + <div class="alert alert-warning notifyAlerts" id="notifyReset"> + Preferences reset to defaults + <button type="button" class="close" data-hide="notifyReset"> + <span aria-hidden="true">×</span> + </button> + </div> + <div class="text-right"> <button type="button" id="saveOptions" class="btn btn-default">Save</button> <button type="button" id="resetOptions" class="btn btn-danger">Reset</button> |