Bookmarked Speed Dial 的评价
Bookmarked Speed Dial 作者: AKAPON
Firefox 用户 13515392 的评价
评分 5 / 5
来自 Firefox 用户 13515392,7 年前Hello,
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
开发者回应
发布于 7 年前body {
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:)