diff options
author | geireann <geireann.lindfield@gmail.com> | 2021-09-23 19:31:02 +0000 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2021-09-23 19:31:02 +0000 |
commit | b1be21398d396dd5c57d39563609b68ddc2f06a8 (patch) | |
tree | c22def2026625734f7d75934a223f639aa4261de /src/client/views/nodes/formattedText/DashDocView.tsx | |
parent | 4e6a1d7a37c8c28014a9f7cd0d92f17c8f29454d (diff) | |
parent | 780346cb03a2dcc10c1edcf4ecc4f57a091d36bc (diff) |
Merge branch 'master' of https://github.com/brown-dash/Dash-Web
Diffstat (limited to 'src/client/views/nodes/formattedText/DashDocView.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/DashDocView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/DashDocView.tsx b/src/client/views/nodes/formattedText/DashDocView.tsx index 149836e93..364be461f 100644 --- a/src/client/views/nodes/formattedText/DashDocView.tsx +++ b/src/client/views/nodes/formattedText/DashDocView.tsx @@ -21,7 +21,7 @@ export class DashDocView { this._fieldWrapper = document.createElement("span"); this._fieldWrapper.style.position = "relative"; this._fieldWrapper.style.textIndent = "0"; - this._fieldWrapper.style.border = "1px solid " + StrCast(tbox.layoutDoc.color, (CurrentUserUtils.ActiveDashboard?.colorScheme === ColorScheme.Dark ? "dimGray" : "lightGray")); + this._fieldWrapper.style.border = "1px solid " + StrCast(tbox.layoutDoc.color, (CurrentUserUtils.ActiveDashboard?.colorScheme === ColorScheme.Dark ? "dimgray" : "lightGray")); this._fieldWrapper.style.width = node.attrs.width; this._fieldWrapper.style.height = node.attrs.height; this._fieldWrapper.style.display = node.attrs.hidden ? "none" : "inline-block"; |