forked from GitHub-Mirrors/foundry-sw5e
General Cleanup
CSS - Removed unnecessary units on 0 values - Replaced invalid css values (such as line-height default) with valid equivalents Templates - Added missing closing tags - Fixed incorrect closing tags - Removed unnecessary closing tags
This commit is contained in:
parent
d0e0dda2b3
commit
92bf020cdf
23 changed files with 272 additions and 279 deletions
|
@ -106,17 +106,17 @@
|
|||
&:nth-child(even) {
|
||||
width: 150px;
|
||||
margin: 0.5em 0.5em;
|
||||
padding: 0px 10px 0px 10px;
|
||||
padding: 0 10px 0 10px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
thead {
|
||||
border-bottom: 0px;
|
||||
border-bottom: 0;
|
||||
}
|
||||
th {
|
||||
color: #000000;
|
||||
text-shadow: none;
|
||||
border-bottom: 0px;
|
||||
border-bottom: 0;
|
||||
background-color: #bdc8cc;
|
||||
text-transform: none;
|
||||
font-weight: bold;
|
||||
|
@ -129,7 +129,7 @@
|
|||
&:nth-child(even) {
|
||||
width: 150px;
|
||||
margin: 0.5em 0.5em;
|
||||
padding: 0px 10px 0px 10px;
|
||||
padding: 0 10px 0 10px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
@ -137,7 +137,7 @@
|
|||
.medtable {
|
||||
table {
|
||||
width: 500px;
|
||||
border: 0px;
|
||||
border: 0;
|
||||
margin: 0.5em 0.5em;
|
||||
}
|
||||
td {
|
||||
|
@ -149,17 +149,17 @@
|
|||
&:nth-child(even) {
|
||||
width: 450px;
|
||||
margin: 0.5em 0.5em;
|
||||
padding: 0px 10px 0px 0px;
|
||||
padding: 0 10px 0 0;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
thead {
|
||||
border-bottom: 0px;
|
||||
border-bottom: 0;
|
||||
}
|
||||
th {
|
||||
color: #000000;
|
||||
text-shadow: none;
|
||||
border-bottom: 0px;
|
||||
border-bottom: 0;
|
||||
background-color: #bdc8cc;
|
||||
text-transform: none;
|
||||
font-weight: bold;
|
||||
|
@ -174,8 +174,8 @@
|
|||
}
|
||||
.classtable {
|
||||
blockquote {
|
||||
border-left: 0px;
|
||||
border-right: 0px;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
background-color: #bdc8cc;
|
||||
width: 600px;
|
||||
h3 {
|
||||
|
@ -189,8 +189,8 @@
|
|||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
border-left: 0px;
|
||||
border-right: 0px;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-top: 0;
|
||||
border-bottom: 0;
|
||||
margin: 0.5em 0;
|
||||
|
@ -200,7 +200,7 @@
|
|||
thead {
|
||||
color: #000000;
|
||||
text-shadow: none;
|
||||
border-bottom: 0px;
|
||||
border-bottom: 0;
|
||||
background-color: #bdc8cc;
|
||||
text-transform: none;
|
||||
font-style: normal;
|
||||
|
@ -209,7 +209,7 @@
|
|||
th {
|
||||
color: #000000;
|
||||
text-shadow: none;
|
||||
border-bottom: 0px;
|
||||
border-bottom: 0;
|
||||
background-color: #bdc8cc;
|
||||
text-transform: none;
|
||||
font-style: normal;
|
||||
|
@ -246,7 +246,7 @@
|
|||
width: 100%;
|
||||
line-height: 18px;
|
||||
margin-bottom: 15px;
|
||||
border: 0 0 0 0;
|
||||
border: 0;
|
||||
border-bottom: none;
|
||||
overflow-x: auto;
|
||||
tbody {
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
display: inline-block;
|
||||
text-align: right;
|
||||
|
||||
padding: 0px 3px;
|
||||
padding: 0 3px;
|
||||
|
||||
&:last-child {
|
||||
text-align: left;
|
||||
|
@ -780,7 +780,7 @@
|
|||
display: block;
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
padding: 0px 3px;
|
||||
padding: 0 3px;
|
||||
&:last-child {
|
||||
text-align: left;
|
||||
}
|
||||
|
@ -956,7 +956,7 @@
|
|||
display: block;
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
padding: 0px 3px;
|
||||
padding: 0 3px;
|
||||
&:last-child {
|
||||
text-align: left;
|
||||
}
|
||||
|
|
|
@ -231,7 +231,7 @@
|
|||
padding-bottom: 4px;
|
||||
.folder {
|
||||
& > .folder-header {
|
||||
line-height: default;
|
||||
line-height: initial;
|
||||
padding: 0 0 0 8px;
|
||||
position: relative;
|
||||
border: none;
|
||||
|
|
|
@ -302,7 +302,7 @@
|
|||
}
|
||||
.folder {
|
||||
& > .folder-header {
|
||||
line-height: default;
|
||||
line-height: initial;
|
||||
padding: 0 0 0 8px;
|
||||
position: relative;
|
||||
border: none;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue