Reviews for Bookmarked Speed Dial
Bookmarked Speed Dial by AKAPON
Review by Firefox user 13515392
Rated 5 out of 5
by Firefox user 13515392, 7 years agoHello,
Good app. I like it.
But, I like a darker design.
How can I change the color of the whole side to black?
And the Backgroundcoler of the descrition line over the Icons black with white text on it?
Edit:
I have sloved my Problem:
body {
background-color: rgba(0, 0, 0, 1) !important;
}
.imgcontainer {
padding-top: 65% !important; /*4:3*/
}
.container table tr td p {
color: rgba(255, 255, 255, 1) !important;
}
.container table tr td {
border: 1px solid rgba(0, 0, 0, 0);
}
div[type='remove'], div[type='edit'], div[type='reloadbookmark']{
color: rgba(255, 255, 255, 1) !important;
}
Best regards Luriel
Good app. I like it.
But, I like a darker design.
How can I change the color of the whole side to black?
And the Backgroundcoler of the descrition line over the Icons black with white text on it?
Edit:
I have sloved my Problem:
body {
background-color: rgba(0, 0, 0, 1) !important;
}
.imgcontainer {
padding-top: 65% !important; /*4:3*/
}
.container table tr td p {
color: rgba(255, 255, 255, 1) !important;
}
.container table tr td {
border: 1px solid rgba(0, 0, 0, 0);
}
div[type='remove'], div[type='edit'], div[type='reloadbookmark']{
color: rgba(255, 255, 255, 1) !important;
}
Best regards Luriel
Developer response
posted 7 years agobody {
background-color: rgb(150, 150, 150) !important;
}
.container table tr td {
background-color: rgba(0, 0, 0, 0.7) !important;
}
td div, td p {
color: #F2F2F2 !important;
}
.header {
background-color: #000000 !important;
}
#pages, #upbutton, #toggle {
color: #F2F2F2 !important;
}
.pages:hover, .active, #upbutton:hover {
background-color: #505050 !important;
}
You can also use developer tools (Ctrl+Shift+I) for searching classes/id of elements. For better color you can search "html color" or use this page https://www.w3schools.com/colors/colors_picker.asp
Edited: I see what you solved issue before when I printed answer:)
background-color: rgb(150, 150, 150) !important;
}
.container table tr td {
background-color: rgba(0, 0, 0, 0.7) !important;
}
td div, td p {
color: #F2F2F2 !important;
}
.header {
background-color: #000000 !important;
}
#pages, #upbutton, #toggle {
color: #F2F2F2 !important;
}
.pages:hover, .active, #upbutton:hover {
background-color: #505050 !important;
}
You can also use developer tools (Ctrl+Shift+I) for searching classes/id of elements. For better color you can search "html color" or use this page https://www.w3schools.com/colors/colors_picker.asp
Edited: I see what you solved issue before when I printed answer:)