Skip to content
Snippets Groups Projects
Commit b1607d71 authored by srosse's avatar srosse
Browse files

OO-1068: fix missing o_table_edit

parent 65202bcf
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,8 @@ $o-font-size-xlarge : ceil(($font-size-base * 1.7)) !default; // ~24px
$o-font-size-xsmall : ceil(($font-size-base * 0.71)) !default; // ~10px
$o-table-row-selected-color : $state-success-bg !default;
$o-table-header-color : $text-color !default;
$o-table-edit-border : #f90;
$o-table-edit-bg : #fefbf6;
/* The max width the header/navbar/main/footer can possibly have. */
......
......@@ -10,8 +10,11 @@
margin: 0;
}
}
}
&.o_table_edit {}
}
&.o_table_edit table tbody {
border-top:solid $o-table-edit-border 4px;
background-color: $o-table-edit-bg;
}
.o_table_filter {
}
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment