Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   Popup Windows
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
QDialog {
Kite 8c766d
  background-color: @bg;
Kite 8c766d
  & #dialogButtonFrame {
Kite 8c766d
    background-color: @dialogButtonFrame-bg-color;
Kite 8c766d
    border-top: 1 solid @dialogButtonFrame-border-color;
Kite 8c766d
    & QPushButton {
Kite 8c766d
      border-color: @button-dialog-border-color;
Kite 8c766d
      outline: 0;
Kite 8c766d
      &:focus {
Kite 8c766d
        background-color: @button-bg-color-focus;
Kite 8c766d
        border-color: @button-border-color-focus;
Kite 8c766d
        color: @button-text-color-focus;
Kite 8c766d
        &:hover {
Kite 8c766d
          background-color: @button-bg-color-focus-hover;
Kite 8c766d
        }
Kite 8c766d
        &:pressed {
Kite 8c766d
          background-color: @button-bg-color-pressed;
Kite 8c766d
          border-color: @button-border-color-pressed;
Kite 8c766d
          color: @button-text-color-pressed;
Kite 8c766d
        }
Kite 8c766d
      }
Kite 8c766d
    }
Kite 8c766d
  }
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   Scene Settings
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
#SceneSettings {
Kite 8c766d
  & QLabel {
Kite 8c766d
    color: @label-title;
Kite 8c766d
  }
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   Preferences
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
#PreferencesPopup {
Kite 8c766d
  & QListWidget {
Kite 8c766d
    background-color: @prefs-tree-bg-color;
Kite 8c766d
    alternate-background-color: @prefs-tree-bg-color;
Kite 8c766d
    border: 1 solid @accent;
shun-iwasawa ba4abf
    font-size: 13px;
Kite 8c766d
    &::item {
Kite 8c766d
      border: 0; // remove indent on hover
Kite 8c766d
      padding: 3;
Kite 8c766d
      &:hover {
Kite 8c766d
        .hl-color-secondary;
Kite 8c766d
        background-color: @prefs-tree-hl-color;
Kite 8c766d
      }
Kite 8c766d
      &:selected {
Kite 8c766d
        .hl-color;
Kite 8c766d
      }
Kite 8c766d
    }
Kite 8c766d
  }
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   Keyboard Shortcuts
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
#ShortcutTree {
Kite 8c766d
  &::item {
Kite 8c766d
    padding: 1 0;
Kite 8c766d
  }
Kite 8c766d
  border: 1 solid @accent;
Kite 8c766d
  & QScrollBar {
Kite 8c766d
    &:vertical {
Kite 8c766d
      width: 16;
Kite 8c766d
      margin-right: -1;
Kite 8c766d
    }
Kite 8c766d
  }
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   New Project / Configure Project Window
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
ProjectPopup {
Kite 8c766d
    & QLabel {
Kite 8c766d
      color: @label-title;
Kite 8c766d
    }
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
/* -----------------------------------------------------------------------------
Kite 8c766d
   PencilTestPopup / CameraCapture Window
Kite 8c766d
----------------------------------------------------------------------------- */
Kite 8c766d

Kite 8c766d
PencilTestPopup {
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
#GearButton {
Kite 8c766d
  qproperty-icon: url('@{img-url}/gear.svg');
Kite 8c766d
}
Kite 8c766d

Kite 8c766d
#SubfolderButton {
Kite 8c766d
  qproperty-icon: url('@{img-url}/subfolder.svg');
shun-iwasawa f28b21
  padding-left: 6px;
shun-iwasawa f28b21
  padding-right: 6px;
shun-iwasawa f28b21
}
shun-iwasawa f28b21

shun-iwasawa f28b21
#SubcameraButton {
shun-iwasawa f28b21
  qproperty-icon: url('@{img-url}/subcamera.svg');
shun-iwasawa f28b21
  padding-left: 6px;
shun-iwasawa f28b21
  padding-right: 6px;
Kite 8c766d
}