diff options
author | bob <bcz@cs.brown.edu> | 2020-03-03 12:16:21 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-03-03 12:16:21 -0500 |
commit | 1e2f97d1dcd3abb3be701462a43d166e9826edc3 (patch) | |
tree | c36605476d1dbedbb9da1c7a64e36803502d2be0 | |
parent | 2721713f409045594fa9fbf1d23bc5e4d9a08641 (diff) |
from last.
-rw-r--r-- | src/client/util/RichTextSchema.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/util/RichTextSchema.tsx b/src/client/util/RichTextSchema.tsx index d66890cda..2ef22b6a0 100644 --- a/src/client/util/RichTextSchema.tsx +++ b/src/client/util/RichTextSchema.tsx @@ -942,9 +942,8 @@ export class DashFieldView { this._labelSpan = document.createElement("span"); this._labelSpan.style.backgroundColor = "rgba(155, 155, 155, 0.44)"; this._labelSpan.style.position = "relative"; - this._labelSpan.style.display = "inline"; - this._labelSpan.style.fontWeight = "bold"; - this._labelSpan.style.fontSize = "larger"; + this._labelSpan.style.display = "inline-block"; + this._labelSpan.style.fontSize = "small"; this._labelSpan.title = "click to see related tags"; this._labelSpan.onpointerdown = function (e: any) { e.stopPropagation(); |