Added SVG to PNG conversion tool, Added tool page and code

Update .gitignore, sidebar.php, and 17 more files...
This commit is contained in:
2023-05-26 05:50:37 +02:00
parent e6e00ad02f
commit 6e9bf25866
19 changed files with 559 additions and 38 deletions

View File

@@ -43,3 +43,6 @@
.p-mxs {
padding: calc(#{$margin-base-size} * 0.375);
}
.p-xxs {
padding: calc(#{$margin-base-size} * 0.25);
}

View File

@@ -21,32 +21,6 @@ table.stylish {
border-right: 1.5px solid #{$color-table-border};
}
// Applying .p-xs and .p-s to all cells if needed
// See 'core/spacing' for more info.
&.table-p-xs {
td, th {
padding: calc(#{$margin-base-size} * 0.5);
}
}
&.table-h-p-s {
th {
padding: calc(#{$margin-base-size} * 0.75);
}
}
&.table-p-s {
td, th {
padding: calc(#{$margin-base-size} * 0.75);
}
}
&.table-v-center {
tr, td {
vertical-align: middle;
}
}
// Fixing border issues when using rounded corners by using a "fake" one using the background's color.
// It will look like utter shit when rounded on firefox because its rendering engine cannot clip rounded corners apparently.
// I guess that's what being at less than 3% of the market share does to you and your ability to care about basic shit.
@@ -54,3 +28,29 @@ table.stylish {
background-color: #{$color-border-all};
}
}
// Applying .p-xs and .p-s to all cells if needed
// See 'core/spacing' for more info.
.table-p-xs {
td, th {
padding: calc(#{$margin-base-size} * 0.5);
}
}
.table-h-p-s {
th {
padding: calc(#{$margin-base-size} * 0.75);
}
}
.table-p-s {
td, th {
padding: calc(#{$margin-base-size} * 0.75);
}
}
.table-v-center {
tr, td {
vertical-align: middle;
}
}