Commit a87d7624 authored by Luke Bennett's avatar Luke Bennett

Add small-triangle class and add popup footer

parent 639e6144
......@@ -6,10 +6,31 @@
$popup-triangle-border-size
);
padding: $gl-padding;
background-color: $gray-lighter;
&.small-triangle {
@include triangle(
$gray-lighter,
$gray-darker,
$popup-triangle-size / 2,
$popup-triangle-border-size /2
);
}
border: 1px solid $gray-darker;
border-radius: $border-radius-default;
box-shadow: 0 5px 8px $popup-box-shadow-color;
position: relative;
.body {
background-color: $gray-lighter;
padding: $gl-padding;
border-top-left-radius: $border-radius-default;
border-top-right-radius: $border-radius-default;
}
.footer {
background-color: $white-light;
padding: $gl-padding;
border-bottom-left-radius: $border-radius-default;
border-bottom-right-radius: $border-radius-default;
border-top: 1px solid $white-dark;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment