style bugfix for chrome < 27
This commit is contained in:
parent
ad9daa75f2
commit
3f019d4447
2 changed files with 5 additions and 1 deletions
|
@ -110,6 +110,8 @@ body {
|
|||
padding: 10px;
|
||||
width: calc(100% - 230px);
|
||||
height: calc(100% - 155px);
|
||||
width: -webkit-calc(100% - 230px);
|
||||
height: -webkit-calc(100% - 155px);
|
||||
}
|
||||
|
||||
#main-ctn > * {
|
||||
|
@ -191,10 +193,12 @@ body {
|
|||
margin: 2px 1px;
|
||||
padding: 0;
|
||||
height: calc(100% - 20px);
|
||||
height: -webkit-calc(100% - 20px);
|
||||
}
|
||||
|
||||
.tab-body {
|
||||
height: calc(100% - 35px);
|
||||
height: -webkit-calc(100% - 35px);
|
||||
}
|
||||
|
||||
.chat-log {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Chromesoul",
|
||||
"version": "0.5.1",
|
||||
"version": "0.5.2",
|
||||
"minimum_chrome_version": "25",
|
||||
"manifest_version": 2,
|
||||
"offline_enabled": false,
|
||||
|
|
Reference in a new issue