Commit 6be6a296 authored by Mikolaï Krol's avatar Mikolaï Krol Committed by Mikolaï Krol

erp5_jexcel_editor: refactor change type, details and bugs

erp5_jexcel_editor: fixed style for small screens

erp5_jexcel_editor: focus outline none on chrome
parent f04d246c
......@@ -8,16 +8,20 @@ div.jexcel_formula img{
input.jexcel_formula {
margin-left: 2px;
width: 92.8%;
width: calc(100% - 77px);
position:sticky;
top:0px;
z-index:0;
display: inline-block;
}
div.jexcel-filter > * {
display: inline-block;
}
input.cell_input {
display: inline-block;
width: 4%;
width: 35px;
}
input.jexcel_search {
......@@ -57,3 +61,13 @@ body > div.spreadsheet.jexcel_tabs > div:nth-child(1) {
.jexcel_tab_link.selected {
cursor: alias;
}
:focus {
outline: none;
}
@media (max-width: 1150px){
div.jexcel_filter {
display: none;
}
}
......@@ -4282,6 +4282,10 @@ console.log(ret);
// Events
obj.dispatch('oninsertcolumn', el, columnNumber, numOfColumns, historyRecords, insertBefore);
obj.el.querySelector("table.jexcel tr").childNodes.forEach(function (td) {
td.style.textAlign = "center";
});
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment