Skip to content

Commit

Permalink
Release 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
afeiship committed Apr 5, 2021
1 parent 89250cf commit 819deee
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 deletions dist/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* name: @jswork/wsui-tippy
* description: Theme for tippyjs style.
* homepage: https://github.com/afeiship/tippy-tippy
* version: 1.0.9
* date: 2021-04-05 21:52:12
* version: 1.0.10
* date: 2021-04-05 22:00:12
* license: MIT
*/
/*tippy-components Start*/
Expand Down Expand Up @@ -161,20 +161,20 @@
font-size: 14px; }

.tippy-tag {
color: #fff;
background: #5586f4;
border: 1px solid #5586f4;
color: #4e1cc7;
background: #ede6fc;
border: 1px dashed #cbbaf5;
font-family: Menlo, "Dank Mono", Inconsolata, "Operator Mono", Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
padding: 0.35em 0.6em;
padding: 0.35em 0.5em;
border-radius: 0.25em;
line-height: inherit;
font-size: 14px;
cursor: pointer;
transition: background 0.3s; }
.tippy-tag:hover {
background: #2e6bf2; }
background: #cbbaf5; }
.tippy-tag.is-small {
padding: 0.25em 0.6em;
padding: 0.15em 0.5em;
font-size: 12px; }

.tippy-block {
Expand Down
16 changes: 8 additions & 8 deletions dist/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* name: @jswork/wsui-tippy
* description: Theme for tippyjs style.
* homepage: https://github.com/afeiship/tippy-tippy
* version: 1.0.9
* date: 2021-04-05 21:52:12
* version: 1.0.10
* date: 2021-04-05 22:00:12
* license: MIT
*/
/*tippy-components Start*/
Expand Down Expand Up @@ -161,20 +161,20 @@
font-size: 14px; }

.tippy-tag {
color: #fff;
background: #5586f4;
border: 1px solid #5586f4;
color: #4e1cc7;
background: #ede6fc;
border: 1px dashed #cbbaf5;
font-family: Menlo, "Dank Mono", Inconsolata, "Operator Mono", Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
padding: 0.35em 0.6em;
padding: 0.35em 0.5em;
border-radius: 0.25em;
line-height: inherit;
font-size: 14px;
cursor: pointer;
transition: background 0.3s; }
.tippy-tag:hover {
background: #2e6bf2; }
background: #cbbaf5; }
.tippy-tag.is-small {
padding: 0.25em 0.6em;
padding: 0.15em 0.5em;
font-size: 12px; }

.tippy-block {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jswork/wsui-tippy",
"version": "1.0.9",
"version": "1.0.10",
"description": "Theme for tippyjs style.",
"homepage": "https://github.com/afeiship/tippy-tippy",
"author": {
Expand Down
14 changes: 7 additions & 7 deletions src/components/tag.scss
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
.#{$prefix}-tag {
$color: #5083f4;
color: #fff;
background: lighten($color, 1%);
border: 1px solid lighten($color, 1%);
$color: #4e1cc7;
color: $color;
background: lighten($color, 50%);
border: 1px dashed lighten($color, 40%);
font-family: Menlo, "Dank Mono", Inconsolata, "Operator Mono", Consolas, "Andale Mono WT", "Andale Mono",
"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono",
"Nimbus Mono L", "Courier New", Courier, monospace;
padding: 0.35em 0.6em;
padding: 0.35em 0.5em;
border-radius: 0.25em;
line-height: inherit;
font-size: 14px;
cursor: pointer;
transition: background 0.3s;
&:hover {
background: darken($color: $color, $amount: 7%);
background: lighten($color: $color, $amount: 40%);
}

&.is-small {
padding: 0.25em 0.6em;
padding: 0.15em 0.5em;
font-size: 12px;
}
}

0 comments on commit 819deee

Please sign in to comment.