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

@@ -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);
}