* Solved padding issue

* Solved margin and colour issue of text
* Addressed some small code-style tweaks that need doing as well before this can be merged
This commit is contained in:
MrOnosa
2020-10-30 19:36:40 -05:00
parent 1245d58b7e
commit 492b3b6715
7 changed files with 29 additions and 17 deletions

View File

@@ -91,10 +91,4 @@ body {
::selection {
background-color: #c2c2c2;
}
div.picker-area > div.preview > div.color-hue-alpha > div.alpha,
div.color-preview-area > div > div:nth-child(5)
{
display: none;
}

View File

@@ -0,0 +1,17 @@
//The following CSS is to work around some assumptions made by the react-color-gradient-picker
* {
box-sizing: inherit; //Required to work around https://github.com/arthay/react-color-gradient-picker/issues/11
}
div.picker-area > div.preview > div.color-hue-alpha > div.alpha,
div.color-preview-area > div > div:nth-child(5) {
display: none;
}
.ui-color-picker {
margin: 8px -12px;
}
.input-field .label {
color: inherit;
}