diff --git a/guacamole/src/main/webapp/app/client/styles/connection-warning.css b/guacamole/src/main/webapp/app/client/styles/connection-warning.css index eec3e0745..87af0a882 100644 --- a/guacamole/src/main/webapp/app/client/styles/connection-warning.css +++ b/guacamole/src/main/webapp/app/client/styles/connection-warning.css @@ -21,16 +21,36 @@ position: absolute; right: 0.25em; - top: 0.25em; + bottom: 0.25em; z-index: 20; + width: 3in; max-width: 100%; - max-height: 3in; + min-height: 1em; - border: 1px solid rgba(0,0,0,0.5); + border-left: 2em solid #FA0; box-shadow: 1px 1px 2px rgba(0,0,0,0.25); background: #FFE; - padding: 0.5em; + padding: 0.5em 0.75em; font-size: .8em; } + +#connection-warning::before { + + content: ' '; + display: block; + position: absolute; + left: -2em; + top: 0; + + width: 1.25em; + height: 100%; + margin: 0 0.375em; + + background: url('images/warning.png'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; + +} diff --git a/guacamole/src/main/webapp/images/warning.png b/guacamole/src/main/webapp/images/warning.png new file mode 100644 index 000000000..1933417c5 Binary files /dev/null and b/guacamole/src/main/webapp/images/warning.png differ