diff options
author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-06-01 15:27:57 -0500 |
---|---|---|
committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-06-01 15:27:57 -0500 |
commit | 823b8728b5506697b7d305a8c07979984b8351c8 (patch) | |
tree | b624d39cb321afc91e97d74ae352478eb89e6263 /src/client/views/nodes/ScriptingBox.scss | |
parent | 162de1972ec5011dce11eeffbe280672a147d989 (diff) |
adding descriptions and params to methods
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.scss')
-rw-r--r-- | src/client/views/nodes/ScriptingBox.scss | 76 |
1 files changed, 34 insertions, 42 deletions
diff --git a/src/client/views/nodes/ScriptingBox.scss b/src/client/views/nodes/ScriptingBox.scss index 256119809..6113efbb5 100644 --- a/src/client/views/nodes/ScriptingBox.scss +++ b/src/client/views/nodes/ScriptingBox.scss @@ -22,7 +22,7 @@ display: flex; flex-direction: row; justify-content: center; - overflow-y: scroll; + overflow-y: hidden; .scriptingBox-textArea { flex: 70; @@ -32,53 +32,43 @@ resize: none; padding: 7px; overflow-y: scroll; + overflow-x: hidden; body { font-family: Arial, Helvetica, sans-serif; border: 1px solid red; - } - + } + .rta { position: relative; - font-size: 18px; + font-size: 12px; width: 100%; height: 100%; margin-bottom: 60px !important; - } - .rta__loader.rta__loader--empty-suggestion-data { - border-radius: 3px; - box-shadow: 0 0 5px rgba(27, 31, 35, 0.1); - padding: 5px; - } - .rta--loading .rta__loader.rta__loader--suggestion-data { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: rgba(255, 255, 255, 0.8); - } - .rta--loading .rta__loader.rta__loader--suggestion-data > * { - position: relative; - top: 50%; - } - .rta__textarea { + overflow-y: scroll; + font-size: 9px; + } + + .rta__textarea { width: 100%; height: 100%; - font-size: 1em; - } - .rta__autocomplete { + font-size: 10px; + } + + .rta__autocomplete { position: absolute; display: block; margin-top: 1em; - } - .rta__autocomplete--top { + } + + .rta__autocomplete--top { margin-top: 0; margin-bottom: 1em; max-height: 100px; overflow-y: auto; - } - .rta__list { + } + + .rta__list { margin: 0; padding: 0; background: #fff; @@ -86,28 +76,30 @@ border-radius: 3px; box-shadow: 0 0 5px rgba(27, 31, 35, 0.1); list-style: none; - } - .rta__entity { + overflow-y: scroll; + } + + .rta__entity { background: white; width: 100%; text-align: left; outline: none; - } - .rta__entity:hover { + } + + .rta__entity:hover { cursor: pointer; - } - .rta__item:not(:last-child) { - border-bottom: 1px solid #dfe2e5; - } - .rta__entity > * { + } + + .rta__entity>* { padding-left: 4px; padding-right: 4px; - } - .rta__entity--selected { + } + + .rta__entity--selected { color: #fff; text-decoration: none; background: #0366d6; - } + } } .scriptingBox-plist { |