1
0
mirror of https://github.com/kuohuanhuan/x-markdown-css.git synced 2024-11-25 06:18:19 +00:00

Compare commits

..

5 Commits

Author SHA1 Message Date
132eb4ff72 chore: release v0.1.5 2023-03-18 22:59:26 +08:00
4a9dbe84aa chore(ci): remove quote with tags 2023-03-11 20:14:58 +08:00
ba95b90714 chore(deps-dev): bump autoprefixer from 10.4.13 to 10.4.14 (#1)
Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.13 to 10.4.14.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.13...10.4.14)

---
updated-dependencies:
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-10 22:29:52 +08:00
6b4fd5f2c5 chore: release v0.1.4 2023-03-08 18:49:35 +08:00
c8bc7d3438 feat(colors): rename $border-rev to $border-table 2023-03-08 18:45:18 +08:00
6 changed files with 15 additions and 15 deletions

View File

@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- 'v*'
- v*
jobs:
# NPM Registry & GitHub Release

20
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "x-markdown-css",
"version": "0.1.3",
"version": "0.1.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "x-markdown-css",
"version": "0.1.1",
"version": "0.1.4",
"license": "MIT",
"dependencies": {
"coffeescript": "^2.7.0",
@ -840,9 +840,9 @@
"dev": true
},
"node_modules/autoprefixer": {
"version": "10.4.13",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz",
"integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==",
"version": "10.4.14",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
"integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
"dev": true,
"funding": [
{
@ -855,8 +855,8 @@
}
],
"dependencies": {
"browserslist": "^4.21.4",
"caniuse-lite": "^1.0.30001426",
"browserslist": "^4.21.5",
"caniuse-lite": "^1.0.30001464",
"fraction.js": "^4.2.0",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.0",
@ -1023,9 +1023,9 @@
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001462",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001462.tgz",
"integrity": "sha512-PDd20WuOBPiasZ7KbFnmQRyuLE7cFXW2PVd7dmALzbkUXEP46upAuCDm9eY9vho8fgNMGmbAX92QBZHzcnWIqw==",
"version": "1.0.30001464",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001464.tgz",
"integrity": "sha512-oww27MtUmusatpRpCGSOneQk2/l5czXANDSFvsc7VuOQ86s3ANhZetpwXNf1zY/zdfP63Xvjz325DAdAoES13g==",
"dev": true,
"funding": [
{

View File

@ -1,6 +1,6 @@
{
"name": "x-markdown-css",
"version": "0.1.3",
"version": "0.1.5",
"description": "A simple and customizable markdown CSS stylesheet for everyone.",
"keywords": [
"markdown",

View File

@ -6,7 +6,7 @@ table {
th,
td {
padding: 6px 13px;
border: 1.5px solid var(--xm-c-border-rev);
border: 1.5px solid var(--xm-c-border-table);
}
thead th {
font-weight: 700;

View File

@ -7,4 +7,4 @@ $regular: #bbb;
$deep: #ddd;
$deeper: #fff;
$border: hsla(0deg 0% 75% / .35);
$border-rev: hsla(0deg 0% 40% / .75);
$border-table: hsla(0deg 0% 40% / .75);

View File

@ -7,4 +7,4 @@ $regular: #555;
$deep: #222;
$deeper: #000;
$border: hsla(0deg 0% 50% / .35);
$border-rev: hsla(0deg 0% 50% / .5);
$border-table: hsla(0deg 0% 50% / .5);