chat client: css optimization

This commit is contained in:
Felix Niklas 2015-11-26 10:29:29 +01:00
parent 599699e225
commit 75efb45ea2
2 changed files with 13 additions and 3 deletions

View file

@ -302,7 +302,10 @@
background: white; } background: white; }
.zammad-chat-input { .zammad-chat-input {
margin: 0;
padding: 0;
float: left; float: left;
width: auto;
height: auto; height: auto;
font-family: inherit; font-family: inherit;
line-height: inherit; line-height: inherit;
@ -310,7 +313,7 @@
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
appearance: none; appearance: none;
border: none; border: none !important;
background: none; background: none;
box-shadow: none; box-shadow: none;
padding: 1em 2em; padding: 1em 2em;
@ -319,7 +322,8 @@
-webkit-flex: 1; -webkit-flex: 1;
-ms-flex: 1; -ms-flex: 1;
flex: 1; flex: 1;
max-height: 6em; } max-height: 6em;
box-shadow: none !important; }
.zammad-chat-input::-webkit-input-placeholder { .zammad-chat-input::-webkit-input-placeholder {
color: #d9d9d9; } color: #d9d9d9; }
@ -330,6 +334,7 @@
appearance: none; appearance: none;
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
line-height: initial;
background: #379ad7; background: #379ad7;
color: white; color: white;
padding: 0.6em 1.2em; padding: 0.6em 1.2em;

View file

@ -303,13 +303,16 @@
} }
.zammad-chat-input { .zammad-chat-input {
margin: 0;
padding: 0;
float: left; float: left;
width: auto;
height: auto; height: auto;
font-family: inherit; font-family: inherit;
line-height: inherit; line-height: inherit;
font-size: inherit; font-size: inherit;
appearance: none; appearance: none;
border: none; border: none !important;
background: none; background: none;
box-shadow: none; box-shadow: none;
padding: 1em 2em; padding: 1em 2em;
@ -317,6 +320,7 @@
resize: none; resize: none;
flex: 1; flex: 1;
max-height: 6em; max-height: 6em;
box-shadow: none !important;
} }
.zammad-chat-input::-webkit-input-placeholder { .zammad-chat-input::-webkit-input-placeholder {
@ -327,6 +331,7 @@
appearance: none; appearance: none;
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
line-height: initial;
background: hsl(203,67%,53%); background: hsl(203,67%,53%);
color: white; color: white;
padding: 0.6em 1.2em; padding: 0.6em 1.2em;