From 1e5120c45ff7941d0180e5d7bbc7cdd2d3d4ace9 Mon Sep 17 00:00:00 2001 From: DAB0mB Date: Thu, 9 Feb 2017 00:13:26 -0200 Subject: [PATCH] Step 7.37: Added chat options popover stylesheet --- client/imports/app/app.scss | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/client/imports/app/app.scss b/client/imports/app/app.scss index 7d380fa..16537cc 100644 --- a/client/imports/app/app.scss +++ b/client/imports/app/app.scss @@ -3,4 +3,18 @@ // Put style rules here that you want to apply globally. These // styles are for the entire app and not just one component. // Additionally, this file can be also used as an entry point -// to import other Sass files to be included in the output CSS. \ No newline at end of file +// to import other Sass files to be included in the output CSS. + + +// Options Popover Component +// -------------------------------------------------- + +$options-popover-width: 200px; +$options-popover-margin: 5px; + +.options-popover .popover-content { + width: $options-popover-width; + transform-origin: right top 0px !important; + left: calc(100% - #{$options-popover-width} - #{$options-popover-margin}) !important; + top: $options-popover-margin !important; +}