summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/popup.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/popup.scss')
-rw-r--r--app/assets/stylesheets/framework/popup.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/popup.scss b/app/assets/stylesheets/framework/popup.scss
new file mode 100644
index 00000000000..5c76205095f
--- /dev/null
+++ b/app/assets/stylesheets/framework/popup.scss
@@ -0,0 +1,15 @@
+.popup {
+ @include triangle(
+ $gray-lighter,
+ $gray-darker,
+ $popup-triangle-size,
+ $popup-triangle-border-size
+ );
+
+ padding: $gl-padding;
+ background-color: $gray-lighter;
+ border: 1px solid $gray-darker;
+ border-radius: $border-radius-default;
+ box-shadow: 0 5px 8px $popup-box-shadow-color;
+ position: relative;
+}