From da835478ca1c270d25812d4fe6fcc94b8516f897 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Tue, 24 Jan 2017 17:27:51 +0200 Subject: [PATCH] Step 7.38: Added chat options popover stylesheet --- src/app/app.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/app/app.scss b/src/app/app.scss index 1392a6e29..1553d1c18 100644 --- a/src/app/app.scss +++ b/src/app/app.scss @@ -14,3 +14,16 @@ // To declare rules for a specific mode, create a child rule // for the .md, .ios, or .wp mode classes. The mode class is // automatically applied to the element in the app. + +// 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; +}