Skip to content

Commit

Permalink
table border styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Doris Lam committed May 5, 2024
1 parent 79195f2 commit 3308322
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion src/lib/ckeditor/contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,14 @@ a > img {
background-color: rgba(255, 0, 0, 0.05);
margin: 10px;
}

table {
border: 1px solid #ddd;
border-collapse: collapse;
}
table th, table td {
border: 1px solid #ddd;
padding: 5px;
}
.image-clean
{
border: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,14 @@ thead td,
table caption {
font-weight: bold;
}

view table, spec-inspector table {
border-collapse: collapse;
border: 1px solid #ddd;
}
view table td, view table th, spec-inspector table td, spec-inspector table th {
border: 1px solid #ddd;
padding: 5px;
}
.table {
tr {
@include globals.transition(globals.$background-hover-transition);
Expand Down

0 comments on commit 3308322

Please sign in to comment.