diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-10 23:35:10 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-10 23:35:10 +0000 |
| commit | 7761eafe0d32042ccb04440c3761c42ed02237d0 (patch) | |
| tree | 4e5157c7036cdc0c067458590c222832888ff415 /styles/table-style.css | |
| parent | cd9be261e3d54070845c21b84bfc20891cabde31 (diff) | |
| download | sql-plus-plus-7761eafe0d32042ccb04440c3761c42ed02237d0.tar.xz sql-plus-plus-7761eafe0d32042ccb04440c3761c42ed02237d0.zip | |
Add statement parsing and highlighting
Diffstat (limited to 'styles/table-style.css')
| -rw-r--r-- | styles/table-style.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/styles/table-style.css b/styles/table-style.css index fda66d0..7bf1222 100644 --- a/styles/table-style.css +++ b/styles/table-style.css @@ -1,17 +1,17 @@ table.dataTable thead .sorting { - background-image: url("./images/sort_both.png"); + background-image: url("../images/sort_both.png"); } table.dataTable thead .sorting_asc { - background-image: url("./images/sort_asc.png"); + background-image: url("../images/sort_asc.png"); } table.dataTable thead .sorting_desc { - background-image: url("./images/sort_desc.png"); + background-image: url("../images/sort_desc.png"); } table.dataTable thead .sorting_asc_disabled { - background-image: url("./images/sort_asc_disabled.png"); + background-image: url("../images/sort_asc_disabled.png"); } table.dataTable thead .sorting_desc_disabled { - background-image: url("./images/sort_desc_disabled.png"); + background-image: url("../images/sort_desc_disabled.png"); } table.dataTable tbody tr { background-color: #282a36; |