diff --git a/src/UI/Components/commandLineInput/InputHint.css b/src/UI/Components/commandLineInput/InputHint.css index 884e0fd49..aadc4c2bd 100644 --- a/src/UI/Components/commandLineInput/InputHint.css +++ b/src/UI/Components/commandLineInput/InputHint.css @@ -18,11 +18,8 @@ a { #input-hint { width: 100%; - position: fixed; color: #000; z-index: 99; - left: 0; - bottom: 16px; } diff --git a/src/UI/Css/style.less b/src/UI/Css/style.less index 50661097b..a778241d4 100644 --- a/src/UI/Css/style.less +++ b/src/UI/Css/style.less @@ -207,9 +207,9 @@ body { .win { position: absolute; + bottom:30px; min-width: 100px; min-height: 20px; // left:100px; - // top:300px; background: #666; border: 5px solid #444444; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); diff --git a/src/UI/Layout/ApplicationLayout.tsx b/src/UI/Layout/ApplicationLayout.tsx index 9f6d5c5c4..9c351a2d3 100644 --- a/src/UI/Layout/ApplicationLayout.tsx +++ b/src/UI/Layout/ApplicationLayout.tsx @@ -69,13 +69,12 @@ export class WebCAD let down = document.createElement("div"); - // down.style.height = "15px"; down.style.cssText = ` position: fixed; bottom: 0; + height: 15px; width: 100%; - height:15px; - ` + `; down.id = "DownPanel"; document.body.appendChild(down); return root;