Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding few styles into window #1

Open
korlikiangel opened this issue Apr 28, 2021 · 2 comments
Open

Adding few styles into window #1

korlikiangel opened this issue Apr 28, 2021 · 2 comments

Comments

@korlikiangel
Copy link

I was trying to add few styles using your plugin but got this error after i am trying to save this:

#tooltip-container {width: 35%;}
.task-form-bottom {
	margin-top: -3%;
	width: 300px;}
.form-actions {
	padding: 0;}
.task-board { 
    margin-bottom: 4px;
    padding: 8px;
    border-radius: 3px;
    border: none;
    border-radius: 3px;
    border-bottom: none;}

Internal Error: SQL Error: SQLSTATE[22001]: String data, right truncated: 7 ERROR: value too long for type character varying(255)

@PapeCoding
Copy link
Owner

Oh, apparently the storage I used to store the CSS data is limited to 255 characters.
Unfortunately right now I have not enough experience nor time to add a correct data base model to fix this issue. If someone else is willing to implement this with a custom table, I would be happy to merge it.

@korlikiangel As a workaround for you right now: You CSS seems quite redundant. Is that needed to exploit some kind of quirk in CSS or would the following (< 250 characters) also work?

#tooltip-container {width: 35%;}
.task-form-bottom {
	margin-top: -3%;
	width: 300px;}
.form-actions {
	padding: 0;}
.task-board { 
    margin-bottom: 4px;
    padding: 8px;
    border-radius: 3px;
    border: none;}

@Jieiku
Copy link

Jieiku commented Dec 3, 2021

I have this same error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants