From ec0f99a949e7f26b4f322fe64342b4d78f1aded0 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Fri, 5 Mar 2021 10:03:40 +0100 Subject: [PATCH] Add joyride-tip-guide css specifications - Could not add the file itself because of many dependancies are broken the admin part. - Just use the strict minimum --- app/assets/stylesheets/admin/all.scss | 1 + .../admin/question-mark-tooltip.scss | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 app/assets/stylesheets/admin/question-mark-tooltip.scss diff --git a/app/assets/stylesheets/admin/all.scss b/app/assets/stylesheets/admin/all.scss index bcd049a94f..bafa929c49 100644 --- a/app/assets/stylesheets/admin/all.scss +++ b/app/assets/stylesheets/admin/all.scss @@ -50,3 +50,4 @@ @import '*'; @import "../shared/question-mark-icon"; +@import "question-mark-tooltip"; diff --git a/app/assets/stylesheets/admin/question-mark-tooltip.scss b/app/assets/stylesheets/admin/question-mark-tooltip.scss new file mode 100644 index 0000000000..8247a5b5b8 --- /dev/null +++ b/app/assets/stylesheets/admin/question-mark-tooltip.scss @@ -0,0 +1,18 @@ +.joyride-tip-guide { + background: $color-3; + color: $white; + font-family: inherit; + font-weight: $font-weight-normal; + position: absolute; + z-index: 101; + padding: 5px 15px; + + .joyride-nub.bottom { + border: 10px solid; + display: block; + height: 0; + position: absolute; + width: 0; + } +} +