/*****----- Configuration -----*****/
configuration {
    show-icons:                 false;
}

/*
USE_BUTTONS=YES
*/

@import "../colors.rasi"

/*****----- Main Window -----*****/
window {
    transparency:                "real";
    location:                    east;
    anchor:                      east;
    fullscreen:                  false;
    width:                       80px;
    x-offset:                    -20px;
    y-offset:                    0px;

    padding:                     0px;
    border:                      0px solid;
    border-radius:               100%;
    border-color:                @selected;
    cursor:                      "default";
    background-color:            @background;
}

mainbox {
  background-color:              transparent;
  children:                      [ "listview" ];
}

inputbar {
  enable:                        true;
  background-color:              transparent;
  children:                      [ "textbox-prompt-colon", "dummy", "prompt" ];
}

promt {
  enable:                        false;
  background-color:              transparent;
}

textbox-prompt-colon {
  enable:                        false;
  background-color:              transparent;
}

dummy {
  background-color:              transparent;
}

listview {
  columns:                       1; 
  lines:                         3;
  background-color:              transparent;
  spacing:                       10px;
  padding:                       10px;
}

element {
  background-color:              @background-alt;
  text-color:                    @foreground;
  border-radius:                 100%;
  cursor:                        pointer;
  padding: 15px 0;
}

element-text {
  font:                          "FiraCode Nerd Font Propo 18";
  background-color:              transparent;
  text-color:                    inherit;
  cursor:                        inherit;
  vertical-align:                0.5;
  horizontal-align:              0.5;
}

element selected.normal {
  background-color:              @selected;
  text-color:                    @background;
}