aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/FormattedTextBoxComment.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-04-28 10:57:36 -0400
committerGitHub <noreply@github.com>2020-04-28 10:57:36 -0400
commit65458838ce4c903946a669b1ead5e576d0bc4009 (patch)
tree60c2235b15800c84dbcbdea624ae49fa892b59b7 /src/client/views/nodes/formattedText/FormattedTextBoxComment.scss
parentc05c272cab73cf700cc995648642e6defb974798 (diff)
parent1ec185790790367d0437cc2adb1fbb80e7310f52 (diff)
Merge pull request #354 from browngraphicslab/richTextSchemaS
Rich text schema s
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBoxComment.scss')
-rw-r--r--src/client/views/nodes/formattedText/FormattedTextBoxComment.scss33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBoxComment.scss b/src/client/views/nodes/formattedText/FormattedTextBoxComment.scss
new file mode 100644
index 000000000..2dd63ec21
--- /dev/null
+++ b/src/client/views/nodes/formattedText/FormattedTextBoxComment.scss
@@ -0,0 +1,33 @@
+.FormattedTextBox-tooltip {
+ position: absolute;
+ pointer-events: none;
+ z-index: 20;
+ background: white;
+ border: 1px solid silver;
+ border-radius: 2px;
+ margin-bottom: 7px;
+ -webkit-transform: translateX(-50%);
+ transform: translateX(-50%);
+ }
+ .FormattedTextBox-tooltip:before {
+ content: "";
+ height: 0; width: 0;
+ position: absolute;
+ left: 50%;
+ margin-left: -5px;
+ bottom: -6px;
+ border: 5px solid transparent;
+ border-bottom-width: 0;
+ border-top-color: silver;
+ }
+ .FormattedTextBox-tooltip:after {
+ content: "";
+ height: 0; width: 0;
+ position: absolute;
+ left: 50%;
+ margin-left: -5px;
+ bottom: -4.5px;
+ border: 5px solid transparent;
+ border-bottom-width: 0;
+ border-top-color: white;
+ } \ No newline at end of file