Skip to content

Ultima: triStateCheckbox State Icon does not change #2116

Discussion options

You must be logged in to vote

Yep its a bug.

I just tested with my local Ultima and fixed it by editing \ultima\src\main\webapp\resources\layout\styles\theme\extensions\_checkbox.scss

and making the file just this

body {
  .ui-chkbox {
    border-radius: 50%;
    transition: box-shadow $transitionDuration;

    .ui-chkbox-box {
      border-color: nth($checkboxBorder, 3);
      border-radius: 2px;
      position: relative;

      &:not(.ui-state-disabled).ui-state-hover {
        border-color: nth($checkboxBorder, 3);
      }

      &:not(.ui-state-disabled).ui-state-focus {
        border-color: nth($checkboxBorder, 3);
      }

      &.ui-state-active {
        &:not(.ui-state-disabled).ui-state-hover {
          b…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@melloware
Comment options

Answer selected by melloware
@roabol
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Bug Something isn't working Resolution: Workaround Workaround for the issue is found
2 participants