Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions NppMarkdownPanel/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -551,3 +551,27 @@ pre code, pre tt {
.bold {
font-weight: bold;
}

table { /* Black border in tables */
border-collapse: collapse;
border: 1px solid black;
}

table td { /* Black border in tables */
border: 1px solid black;
}

fieldset { /* Black border arround field sets */
font-family: sans-serif;
border: 1px solid black;
background-color: transparent;
border-radius: 5px;
padding: 2px;
}
fieldset legend { /* Black border arround field sets */
background-color: transparent;
padding: 2px 5px ;
border-radius: 2px;
box-shadow: 0 0 0 1px black;
margin-left: 12px;
}