Skip to content

Instantly share code, notes, and snippets.

@Chathray
Chathray / launch.json
Created September 28, 2022 02:06
vscode odoo 15 debug config
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Odoo15",
"type": "python",
"python": "{python bin path}",
@Chathray
Chathray / fixed-vertical-full-width-table.css
Last active August 6, 2021 13:01
CSS - Full Width Table with Vertical Scroll Bar and Fixed Column Width Ratio
.yourTable {
width: 100%;
border-collapse: collapse;
border: 3px solid #339966;
}
.yourTable thead {
background-color: #339966;
color: whitesmoke;
}