[FIX] Issues #79 compatible CTRL+P with firefox browser

This commit is contained in:
Chintan Ambaliya 2018-07-26 18:24:51 +05:30
parent 488bb3d8e6
commit d37fcb3fa4
3 changed files with 54 additions and 7 deletions

View File

@ -19,10 +19,15 @@ body {
@media print {
body {
overflow: auto !important;
.o_main_content {
overflow: visible !important;
.o_content {
display: block !important;
.o_main {
display: block !important;
.o_main_content {
display: block !important;
overflow: visible !important;
.o_content {
overflow: visible !important;
}
}
}
}
@ -136,6 +141,29 @@ div.o_checkbox {
outline: 1px solid @brand-primary;
}
}
@media print {
.o_checkbox {
input[type="checkbox"] {
opacity: 1 !important;
}
input:disabled + span {
opacity: 0 !important;
}
}
.o_kanban_view {
display: block;
.o_kanban_record {
width: 100% !important;
margin: 0 !important;
}
}
.o_pivot {
overflow: unset !important;
}
.o_graph {
height: 500px !important;
}
}
.o_dialog_error.modal-body{
.alert{
color: #8a6d3b;

View File

@ -47,6 +47,12 @@
}
}
}
@media print {
border: 0 !important;
.nav-tabs {
border: 0 !important;
}
}
}
.o_form_view {
@ -87,10 +93,12 @@
}
}
}
@media print {
border: 0 !important;
}
}
.o_form_statusbar {
min-height: 34px;
min-height: 34px;
> .o_statusbar_status {
> .o_arrow_button {
background-color: #ffffff;

View File

@ -12,8 +12,19 @@
}
@media print {
.o_checkbox {
display: none;
thead {
th.o_column_sortable {
position: unset;
}
}
tfoot {
border: 0;
display: table-footer-group;
}
.o_list_record_selector {
.o_checkbox {
display: none;
}
}
}