seti-ui icon indicating copy to clipboard operation
seti-ui copied to clipboard

Some unreadable buttons

Open haabe opened this issue 8 years ago • 5 comments
trafficstars

Some buttons are quite unreadable, such as the install package button (white on [insert Seti-ui color scheme here] doesn't work too well).

Install button

Neither does transparent on blue (or blue on blue) for the Find options.

Regex button

haabe avatar Feb 21 '17 08:02 haabe

I erroneously thought this was https://github.com/steelbrain/linter/issues/1361. So the buttons on the "install dependent package" notification are also hard to read.

johnhaley81 avatar Mar 14 '17 19:03 johnhaley81

Came here to see if anyone else was having problems with the blue on blue find options.

scragz avatar May 07 '17 20:05 scragz

You can fix it temporarily by putting this in your styles.less:

@import "ui-variables";
.project-find, .find-and-replace {
  .btn-group {
    .option-regex, .option-case-sensitive, .option-whole-word {
      &.selected {
        color: @seti-primary-text;
      }
    }
  }
}

scragz avatar May 07 '17 20:05 scragz

I haven't really dived into the seti-ui config to examine how it is all set to play together. I found some quick fix for some of the unreadable texts using the yellow theme color:

import "ui-variables";
.project-find, .find-and-replace {
  .btn-group {
    .btn {
      &.selected {
        color: @text-color-highlight;
      }
    }
  }
}

.item-views {
  .pane-item {
    .section-heading-count {
      &.badge {
        color: @black;
      }
    }

    .btn-group {
      .btn{
        &.install-button {
          color: @black;
        }
      }
    }
  }
}

haabe avatar Jun 28 '17 10:06 haabe

I can confirm the problem. For me its most noticeable on the install/update page, however other buttons without much bg color area(somehow stronger..) have the issue also. Compare on the green scheme screenshot the package/install buttons to see the effect.

atom_seti_ui_bug atom_seti_ui_bug1

The worst is it with yellow and green, but other bright schemes have it also to a lesser extent. seti-ui-1-10.0

Strange how long some bugs stay around. :) Greets

madeddy avatar Feb 16 '18 17:02 madeddy