Skip to content

Commit

Permalink
Merge pull request #496 from Pelican-Elegant/feats-fixes
Browse files Browse the repository at this point in the history
Feats fixes
  • Loading branch information
talha131 committed Aug 21, 2019
2 parents 8f871bf + 7eaaa96 commit 8b7cff8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
5 changes: 2 additions & 3 deletions static/css/admonition.css
Expand Up @@ -2,11 +2,10 @@
div.admonition {
padding: 0;
margin-bottom: 20px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}

div.admonition p {
Expand Down
22 changes: 11 additions & 11 deletions static/css/elegant.css
Expand Up @@ -622,9 +622,9 @@ table {
border-collapse: separate;
*border-collapse: collapse;
border-left: 0;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

table th,
Expand All @@ -639,26 +639,26 @@ table thead:first-child tr:first-child th {
}

table thead:first-child tr:first-child > th:first-child {
-webkit-border-top-left-radius: 6px;
border-top-left-radius: 6px;
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topleft: 6px;
}

table thead:first-child tr:first-child > th:last-child {
-webkit-border-top-right-radius: 6px;
border-top-right-radius: 6px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
-moz-border-radius-topright: 6px;
}

table tbody:last-child tr:last-child > td:first-child {
-webkit-border-bottom-left-radius: 6px;
border-bottom-left-radius: 6px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 6px;
}

table tbody:last-child tr:last-child > td:last-child {
-webkit-border-bottom-right-radius: 6px;
border-bottom-right-radius: 6px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 6px;
}

Expand Down

0 comments on commit 8b7cff8

Please sign in to comment.