Cleanup on CSS files

This commit is contained in:
2017-03-06 11:53:49 +01:00
parent 89b3d06e8c
commit 4a4fa05197
2 changed files with 9 additions and 9 deletions

View File

@@ -136,7 +136,7 @@ textarea.textbox {
} }
.textboxInvalid { .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); border: solid 1px rgb(255,0,0);
} }
@@ -147,7 +147,7 @@ textarea.textbox {
.button { .button {
padding: 5px; 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; vertical-align: top;
border-radius: 5px; border-radius: 5px;
border: solid 1px black; border: solid 1px black;

View File

@@ -5,7 +5,7 @@
padding: 5px; padding: 5px;
border-radius: 5px; border-radius: 5px;
background-color: rgb(220,220,220); background-color: rgb(220,220,220);
box-shadow: 0px 0px 5px black; box-shadow: 0 0 5px black;
position: fixed; position: fixed;
bottom: 0; bottom: 0;
right: 0; right: 0;
@@ -70,12 +70,11 @@
margin-bottom: 5px; margin-bottom: 5px;
border-radius: 5px; border-radius: 5px;
border: solid 1px black; border: solid 1px black;
box-shadow: inset 0px 0px 5px black; box-shadow: inset 0 0 5px black;
} }
.messageRow, .messageRow,
.selfMessageRow { .selfMessageRow {
vertical-align: top;
display: block; display: block;
} }
@@ -94,7 +93,7 @@
border: solid 1px rgb(32, 32, 32); border: solid 1px rgb(32, 32, 32);
background-color: rgb(220,220,220); background-color: rgb(220,220,220);
border-radius: 5px; 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; margin: 2px;
padding: 5px; padding: 5px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
@@ -124,12 +123,13 @@
} }
.divChatControls { .divChatControls {
font-size: 0;
} }
.chatTextBox { .chatTextBox {
box-sizing: border-box; box-sizing: border-box;
padding: 5px; padding: 5px;
box-shadow: inset 0px 0px 5px black; box-shadow: inset 0 0 5px black;
width: calc(100% - 52px); width: calc(100% - 52px);
border-radius: 5px; border-radius: 5px;
border: solid 1px black; border: solid 1px black;
@@ -144,7 +144,7 @@
.chatButton { .chatButton {
box-sizing: border-box; box-sizing: border-box;
padding: 5px; 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; width: 50px;
vertical-align: top; vertical-align: top;
border-radius: 5px; border-radius: 5px;
@@ -163,5 +163,5 @@
.chatButton:active { .chatButton:active {
background-color: rgb(220,220,220); 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);
} }