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

Text isn't visible in dark mode/theme #79

Open
stuartrider opened this issue Feb 19, 2023 · 2 comments
Open

Text isn't visible in dark mode/theme #79

stuartrider opened this issue Feb 19, 2023 · 2 comments

Comments

@stuartrider
Copy link

Some of the text isn't visible when using dark mode/theme

image

@nascentt
Copy link

In duplicate issue #82
@Zanatoo suggested an addon called Stylebot as a workaround #82 (comment)

A native solution would be great though

@Zanatoo
Copy link

Zanatoo commented Nov 23, 2024

Yes, a Chrome Extension called Stylebot (or any extension that injects CSS) will fix the issue in 2 minutes until Kevin gets around to recoding it.

You can get Stylebot (for Chrome) here → https://chromewebstore.google.com/detail/stylebot/oiaejidbmkiecgbjeifoejpgmdaleoha?hl=en&pli=1

My styling is below. I don't use dark mode so you'll have to add that yourself.
The DELETE and EDIT icons are hidden until you hover over them.
quicklinks

* {font-family: 'Lato' !important}

.btb {
box-shadow:none;
border-bottom: 1px solid #dedede;
}

#listContainer {
  margin-bottom: 30px;
}

#listContainer a {
  color: #202124;
}



#listContainer .clear {
  display: none;
}

#listContainer a.n0 {
  background-image: url(https://cdn3.iconfinder.com/data/icons/faticons/32/arrow-right-01-512.png);
  background-position: 0px;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 38px;
  text-decoration: none;
  transition: all .3s;
}

#listContainer div {
  padding-left: 0px;
}

#listContainer div div {
  border-radius: 0 14px 14px 0;
  color: #cc37cc ;
  font-family: Roboto ;
  margin-right: 16px;
  padding-bottom: 3px;
  padding-left: 26px;
  padding-top: 4px;
}

#listContainer div div span.glyph.delete:hover, #listContainer div div span.glyph.rename:hover {
  opacity: 1;
}

#listContainer div div:hover {
  background-color: #f1f3f4;
  transition: all .3s;
}

#listContainer div div:hover .delete, #listContainer div div:hover .rename {
  opacity: 0;
}

#listContainer div div:hover a.n0 {
  background-position: 10px;
  color: #d93025;
}

.at {
  font-weight: bold;
}

.r .n0 {
  visibility: hidden;
}

.r .n0:after {
  content: "Add";
  font-size: 80%;
  opacity: .2;
  visibility: visible;
}

.x7 {
  background: #f7e69a;
  color: #202124;
}

.zA:hover {
  background: #fef4ca;
  box-shadow: none;
}

a.n0 {
  font-weight: normal;
}

a.sgn_bart_logo img {
  display: none;
}

a.sgn_bart_logo_top img {
  display: none;
}

div.asa {
  color: #f224f2;
}

div.l2.pfiaof {
  display: none;
}

div.pU {
  color: #dbdbdb;
  font-size: 50%;
  margin-bottom: 5px;
  margin-right: 14px;
}

span.bqe {
  background-color: #ffff00;
  color: #000000;
}

span.glyph.circle {
  display: none;
}

span.glyph.delete, span.glyph.rename {
  opacity: 0;
}

.xY.bq4 {
    /* display: none; */
    position: absolute;
    left: 300px;
    bottom:2px;
    background: #999;
    border-radius: 6px;
    padding:2px;
}

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