1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-07 16:06:15 +00:00

CSS: Little mobile fix + contact header alignment

This commit is contained in:
Loic Blot 2016-05-19 23:53:25 +02:00
parent 917d6dfc00
commit 45ece5e7d4

View File

@ -65,7 +65,7 @@
#app-content-header { #app-content-header {
background-color: #E6E6E6; background-color: #E6E6E6;
min-height: 30px; min-height: 30px;
width: 100%; width: 80%;
float: left; float: left;
position: fixed; position: fixed;
top: 45px; top: 45px;
@ -73,6 +73,12 @@
box-shadow: 0 1px 0 0 #CCC; box-shadow: 0 1px 0 0 #CCC;
} }
@media screen and (max-width : 770px) {
#app-content-header {
width: 100%;
}
}
#ocsms-contact-avatar { #ocsms-contact-avatar {
background-color: transparent; background-color: transparent;
height: 75px; height: 75px;
@ -85,6 +91,11 @@
#ocsms-contact-actions, #ocsms-contact-actions,
#ocsms-contact-avatar { #ocsms-contact-avatar {
display: inline-block; display: inline-block;
float: left;
}
#ocsms-contact-actions {
float: left;
} }