vinceliuice / WhiteSur-gtk-theme

MacOS like theme for all gtk based desktops
MIT License
5.95k stars 615 forks source link

Error in Libre Office #583

Open minhntp opened 2 years ago

minhntp commented 2 years ago

System: Ubuntu 20.4.4 Kernel: 5.13.0-39-generic

With WhiteSur theme for Applications, in Libre Office, after a few clicks around, these input boxes will show like this: image

When I switch back to default Application Theme, it's back to normal.

CoolAller commented 2 years ago

Please fix it:

.linked > entry:not(:only-child), spinbutton entry, entry.contacts-postal-entry {
  color: #d3d7df;
- background-color: rgba(255, 255, 255, 0.05);   /*  rgba color does not apply here. */
+ background-color: #363a45;     /* for Dark-Nord: #363a45; for Light-Nord and Light: #e8e8ea; for Dark: #3d3d3d; */
  box-shadow: inset 0 0 0 2px transparent;
  border: none;
}

.linked > entry:focus:not(:only-child), spinbutton entry:focus, entry.contacts-postal-entry:focus {
  color: #d3d7df;
- background-color: rgba(255, 255, 255, 0.05);   /*  rgba color does not apply here. */
+ background-color: #363a45;     /* for Dark-Nord: #363a45; for Light-Nord and Light: #e8e8ea; for Dark: #3d3d3d; */
  box-shadow: inset 0 0 0 2px rgba(134, 156, 198, 0.75);
  transition-duration: 300ms;
}

.linked > entry:disabled:not(:only-child), spinbutton entry:disabled, entry.contacts-postal-entry:disabled {
  color: rgba(217, 220, 227, 0.35);
- background-color: rgba(255, 255, 255, 0.02);    /*  rgba color does not apply here. */
+ background-color: #363a45;     /* for Dark-Nord: #363a45; for Light-Nord and Light: #e8e8ea; for Dark: #3d3d3d; */
}
entry:hover {
  color: #d3d7df;
- background-color: rgba(255, 255, 255, 0.05);    /*  rgba color does not apply here. */
+ background-color: #363a45;     /* for Dark-Nord: #363a45; for Light-Nord and Light: #e8e8ea; for Dark: #3d3d3d; */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 0 0 2px transparent;
  transition-duration: 200ms;
}

entry:focus {
  color: #d3d7df;
- background-color: rgba(255, 255, 255, 0.05);    /*  rgba color does not apply here. */
+ background-color: #363a45;     /* for Dark-Nord: #363a45; for Light-Nord and Light: #e8e8ea; for Dark: #3d3d3d; */
  box-shadow: inset 0 0 0 2px rgba(134, 156, 198, 0.75);
  transition-duration: 300ms;
}