diff --git a/VAR.Focus.Web/Styles/01. base.css b/VAR.Focus.Web/Styles/01. base.css index f6e2fe6..6c04844 100644 --- a/VAR.Focus.Web/Styles/01. base.css +++ b/VAR.Focus.Web/Styles/01. base.css @@ -136,7 +136,7 @@ textarea.textbox { } .textboxInvalid { - box-shadow: 0px 0px 10px rgba(255,0,0,0.5), inset 0 -2px 5px rgba(255,255,255,1), inset 0 2px 5px rgba(0,0,0,0.5); + box-shadow: 0 0 10px rgba(255,0,0,0.5), inset 0 -2px 5px rgba(255,255,255,1), inset 0 2px 5px rgba(0,0,0,0.5); border: solid 1px rgb(255,0,0); } @@ -147,7 +147,7 @@ textarea.textbox { .button { padding: 5px; - box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,1), inset 0 -2px 5px rgba(128,128,128,1); + box-shadow: 0 0 10px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,1), inset 0 -2px 5px rgba(128,128,128,1); vertical-align: top; border-radius: 5px; border: solid 1px black; diff --git a/VAR.Focus.Web/Styles/10. Chat.css b/VAR.Focus.Web/Styles/10. Chat.css index 5d1bbc0..b9621cd 100644 --- a/VAR.Focus.Web/Styles/10. Chat.css +++ b/VAR.Focus.Web/Styles/10. Chat.css @@ -5,7 +5,7 @@ padding: 5px; border-radius: 5px; background-color: rgb(220,220,220); - box-shadow: 0px 0px 5px black; + box-shadow: 0 0 5px black; position: fixed; bottom: 0; right: 0; @@ -70,12 +70,11 @@ margin-bottom: 5px; border-radius: 5px; border: solid 1px black; - box-shadow: inset 0px 0px 5px black; + box-shadow: inset 0 0 5px black; } .messageRow, .selfMessageRow { - vertical-align: top; display: block; } @@ -94,7 +93,7 @@ border: solid 1px rgb(32, 32, 32); background-color: rgb(220,220,220); border-radius: 5px; - box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0px 2px 5px rgba(255,255,255,0.5), inset 0px -2px 5px rgba(128,128,128,0.5); + box-shadow: 0 0 10px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.5), inset 0 -2px 5px rgba(128,128,128,0.5); margin: 2px; padding: 5px; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; @@ -124,12 +123,13 @@ } .divChatControls { + font-size: 0; } .chatTextBox { box-sizing: border-box; padding: 5px; - box-shadow: inset 0px 0px 5px black; + box-shadow: inset 0 0 5px black; width: calc(100% - 52px); border-radius: 5px; border: solid 1px black; @@ -144,7 +144,7 @@ .chatButton { box-sizing: border-box; padding: 5px; - box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1); + box-shadow: 0 0 10px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,1), inset 0 -2px 5px rgba(128,128,128,1); width: 50px; vertical-align: top; border-radius: 5px; @@ -163,5 +163,5 @@ .chatButton:active { background-color: rgb(220,220,220); - box-shadow: inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1); + box-shadow: inset 0 2px 5px rgba(255,255,255,1), inset 0 -2px 5px rgba(128,128,128,1); } \ No newline at end of file