aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/_global_variables.scss.d.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2019-04-11 09:34:46 -0400
committerbobzel <zzzman@gmail.com>2019-04-11 09:34:46 -0400
commite9cbcfa2a893572f8b92bba84dd0791e6f50be71 (patch)
treef2996a9ef768be4628413754e0a8f2d007959a08 /src/client/views/_global_variables.scss.d.ts
parent354d65953cc6e29386b465ab2a12e85b443aad56 (diff)
cleaned up z-index stuff
Diffstat (limited to 'src/client/views/_global_variables.scss.d.ts')
-rw-r--r--src/client/views/_global_variables.scss.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/views/_global_variables.scss.d.ts b/src/client/views/_global_variables.scss.d.ts
new file mode 100644
index 000000000..12008aeef
--- /dev/null
+++ b/src/client/views/_global_variables.scss.d.ts
@@ -0,0 +1,10 @@
+export interface I_globalScss {
+ contextMenuZindex: number; // context menu shows up over everything
+ mainTextInputZindex: number; // then text input overlay so that it's context menu will appear over decorations, etc
+ docDecorationsZindex: number; // then doc decorations appear over everything else
+ remoteCursorsZindex: number; // ... not sure what level the remote cursors should go -- is this right?
+}
+
+export const globalStyles: I_globalScss;
+
+export default globalStyles; \ No newline at end of file