-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fixes White Text-boxes on Free GPM #64 #69
base: master
Are you sure you want to change the base?
Changes from 3 commits
eddd701
cf7381c
a89f466
a21eb0e
0d0f96d
955401b
784b163
8033a8f
4091207
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -624,3 +624,10 @@ sj-search-box sj-entity-suggestion.sj-search-box:last-of-type { | |
::shadow ::-webkit-scrollbar-thumb:active { | ||
background-color: rgba(255, 255, 255, 0.125); | ||
} | ||
.qp #material-one-middle .material-search::-webkit-input-placeholder{ | ||
color:<<FORE_PRIMARY>>; | ||
} | ||
.qp #material-one-middle .material-search, .qp #material-one-middle .material-search:focus { | ||
background-color: rgba(255,255,255,0.16); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be something like (Not sure of exact syntax) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let me test that, to make sure! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
color:<<FORE_PRIMARY>>; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,10 @@ body, | |
background-image: url('ani_equalizer_black.gif'); | ||
background-size: 40px 40px; | ||
} | ||
input.material-search.label-input-label::-webkit-input-placeholder { | ||
color: #212121 !important; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These colors should use the variables not be hardcoded 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As in using |
||
} | ||
.qp #material-one-middle .material-search, .qp #material-one-middle .material-search:focus { | ||
background-color: rgba(255,255,255,0.16) !important; | ||
color: #212121 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I kept this line in each of them, because I felt that it would save space, rather than adding it to the common.css