summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/flash.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/flash.scss')
-rw-r--r--app/assets/stylesheets/framework/flash.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/flash.scss b/app/assets/stylesheets/framework/flash.scss
new file mode 100644
index 00000000000..1b723021d76
--- /dev/null
+++ b/app/assets/stylesheets/framework/flash.scss
@@ -0,0 +1,27 @@
+.flash-container {
+ cursor: pointer;
+ margin: 0;
+ font-size: 14px;
+ width: 100%;
+ z-index: 100;
+
+ .flash-notice {
+ @extend .alert;
+ @extend .alert-info;
+ }
+
+ .flash-alert {
+ @extend .alert;
+ @extend .alert-danger;
+ }
+}
+
+.flash-pinned {
+ position: fixed;
+ top: 80px;
+ width: 80%;
+}
+
+.flash-raised {
+ z-index: 1000;
+}