style.css compatibility issues/enhancements

This commit is contained in:
JSuenram 2022-01-20 10:31:27 +01:00
parent d068fe9be7
commit c347bd20e1
2 changed files with 48 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}

View File

@ -136,8 +136,10 @@ body {
width: 100%; width: 100%;
grid-area: header; grid-area: header;
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-column-span: 2; -ms-grid-column-span: 2;
-ms-grid-row: 1; -ms-grid-row: 1;
grid-row: 1;
} }
.fulldesk #masthead { .fulldesk #masthead {
@ -178,7 +180,9 @@ body {
#page_leftbar { #page_leftbar {
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 2; -ms-grid-row: 2;
grid-row: 2;
-ms-grid-row-span: 3; -ms-grid-row-span: 3;
height: 100%; height: 100%;
/* height: calc(100vh - 66px); */ /* height: calc(100vh - 66px); */
@ -213,7 +217,9 @@ body {
position: relative; position: relative;
grid-area: nav; grid-area: nav;
-ms-grid-column: 2; -ms-grid-column: 2;
grid-column: 2;
-ms-grid-row: 2; -ms-grid-row: 2;
grid-row: 2;
} }
.fulldesk #topbar { .fulldesk #topbar {
@ -222,8 +228,10 @@ body {
.menu_stack #topbar, .login #topbar, .arg_hide #topbar { .menu_stack #topbar, .login #topbar, .arg_hide #topbar {
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-column-span: 2; -ms-grid-column-span: 2;
-ms-grid-row: 2; -ms-grid-row: 2;
grid-row: 2;
} }
.logoncontrolspan, .logoncontrolspan2 { .logoncontrolspan, .logoncontrolspan2 {
@ -334,14 +342,18 @@ body {
.menu_stack.fullscreen.fulldesk #column_l { .menu_stack.fullscreen.fulldesk #column_l {
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 1; -ms-grid-row: 1;
grid-row: 1;
-ms-grid-column-span: 2; -ms-grid-column-span: 2;
-ms-grid-row-span: 4; -ms-grid-row-span: 4;
} }
.fullscreen #column_l { .fullscreen #column_l {
-ms-grid-column: 2; -ms-grid-column: 2;
grid-column: 1;
-ms-grid-row: 3; -ms-grid-row: 3;
grid-row: 3;
grid-area: content; grid-area: content;
width: unset; width: unset;
/* height: calc(100vh - 111px); /* height: calc(100vh - 111px);
@ -351,8 +363,10 @@ body {
.menu_stack.fullscreen #column_l, .login #column_l, .arg_hide #column_l { .menu_stack.fullscreen #column_l, .login #column_l, .arg_hide #column_l {
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-column-span: 2; -ms-grid-column-span: 2;
-ms-grid-row: 3; -ms-grid-row: 3;
grid-row: 3;
} }
.fulldesk #column_l { .fulldesk #column_l {
@ -364,7 +378,9 @@ body {
padding: 0; padding: 0;
max-height: none; max-height: none;
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 1; -ms-grid-row: 1;
grid-row: 1;
background-color: rgb(0, 51, 102); background-color: rgb(0, 51, 102);
} }
@ -434,7 +450,9 @@ body {
#footer { #footer {
-ms-grid-column: 2; -ms-grid-column: 2;
grid-column: 2;
-ms-grid-row: 4; -ms-grid-row: 4;
grid-row: 4;
grid-area: footer; grid-area: footer;
clear: both; clear: both;
overflow: auto; overflow: auto;
@ -451,8 +469,10 @@ body {
.menu_stack.fullscreen #footer, .login #footer, .arg_hide #footer { .menu_stack.fullscreen #footer, .login #footer, .arg_hide #footer {
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-column-span: 2; -ms-grid-column-span: 2;
-ms-grid-row: 4; -ms-grid-row: 4;
grid-row: 4;
} }
/* Support for footer made with table */ /* Support for footer made with table */
@ -1116,6 +1136,7 @@ NoMeshesPanel img {
height: calc(100vh - 295px); height: calc(100vh - 295px);
overflow: auto; overflow: auto;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none;
position: relative; position: relative;
} }
@ -1124,6 +1145,7 @@ NoMeshesPanel img {
width: 100%; width: 100%;
overflow: auto; overflow: auto;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none;
background-color: lightsteelblue; background-color: lightsteelblue;
} }
@ -1904,6 +1926,7 @@ a {
-khtml-user-select: none; -khtml-user-select: none;
-webkit-user-select: none; -webkit-user-select: none;
-o-user-select: none; -o-user-select: none;
user-select: none;
cursor: default; cursor: default;
-khtml-user-drag: element; -khtml-user-drag: element;
clear: both; clear: both;
@ -2450,7 +2473,9 @@ a {
#deskarea1 { #deskarea1 {
grid-area: deskarea1; grid-area: deskarea1;
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 1; -ms-grid-row: 1;
grid-row: 1;
min-height: 20px; min-height: 20px;
} }
@ -2459,7 +2484,9 @@ a {
grid-area: deskarea2; grid-area: deskarea2;
background-color: gray; background-color: gray;
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 2; -ms-grid-row: 2;
grid-row: 2;
} }
#progressbar { #progressbar {
@ -2488,7 +2515,9 @@ a {
max-height: 100%; max-height: 100%;
height: 100%; height: 100%;
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 3; -ms-grid-row: 3;
grid-row: 3;
} }
#DeskFocus { #DeskFocus {
@ -2513,6 +2542,7 @@ a {
overflow: hidden; overflow: hidden;
width: 100%; width: 100%;
-ms-touch-action: none; -ms-touch-action: none;
touch-action: none;
position: absolute; position: absolute;
top: 0px; top: 0px;
bottom: 0px; bottom: 0px;
@ -2628,7 +2658,9 @@ a {
#deskarea4 { #deskarea4 {
grid-area: deskarea4; grid-area: deskarea4;
-ms-grid-column: 1; -ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 4; -ms-grid-row: 4;
grid-row: 4;
} }
#DeskChatButton, #DeskNotifyButton, #DeskOpenWebButton, #DeskBackgroundButton, #DeskSaveImageButton, #DeskRecordButton, #DeskClipboardInButton, #DeskClipboardOutButton, #DeskRefreshButton, #DeskLockButton, #DeskInputLockedButton, #DeskInputUnLockedButton, #DeskGuestShareButton { #DeskChatButton, #DeskNotifyButton, #DeskOpenWebButton, #DeskBackgroundButton, #DeskSaveImageButton, #DeskRecordButton, #DeskClipboardInButton, #DeskClipboardOutButton, #DeskRefreshButton, #DeskLockButton, #DeskInputLockedButton, #DeskInputUnLockedButton, #DeskGuestShareButton {
@ -2730,6 +2762,7 @@ a {
height: calc(100vh - 323px); height: calc(100vh - 323px);
overflow: auto; overflow: auto;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none;
} }
.room4submenu #p13filetable { .room4submenu #p13filetable {