Skip to content

Commit

Permalink
Update sketch style bug
Browse files Browse the repository at this point in the history
  • Loading branch information
easylogic committed Jul 19, 2018
1 parent d682d64 commit 8bf671f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions dist/codemirror-colorpicker.css
Original file line number Diff line number Diff line change
Expand Up @@ -576,12 +576,13 @@
.codemirror-colorpicker.sketch > .information .information-item.hsl {
display: none !important; }
.codemirror-colorpicker.sketch > .information .information-item.hex {
width: 80px;
width: 70px;
padding-right: 0px;
padding-left: 5px; }
.codemirror-colorpicker.sketch > .information .information-item.rgb {
width: 140px;
padding-left: 0px; }
width: 144px;
padding-left: 0px;
padding-right: 0px; }
.codemirror-colorpicker.sketch > .colorsets > .menu {
display: none; }
.codemirror-colorpicker.sketch > .colorsets > .color-list {
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": "codemirror-colorpicker",
"version": "1.7.1",
"version": "1.7.2",
"description": "colorpicker for codemirror",
"main": "./dist/codemirror-colorpicker.js",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions src/scss/themes/sketch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,15 @@
}

.information-item.hex {
width: 80px;
width: 70px;
padding-right: 0px;
padding-left: 5px;
}

.information-item.rgb {
width: 140px;
width: 144px;
padding-left: 0px;
padding-right: 0px;
}
}

Expand Down

0 comments on commit 8bf671f

Please sign in to comment.