You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.5 KiB

4 years ago
  1. /**
  2. * ROFI theme: AWEL
  3. * User: Wangz
  4. * Copyright: Dave Davenport
  5. */
  6. configuration {
  7. display-drun: "Apps";
  8. display-window: "Window";
  9. show-icons:true;
  10. }
  11. @import "colors"
  12. * {
  13. columns: 1;
  14. background-color: @xbg;
  15. border-color: #00000000;
  16. text-color: @xfg;
  17. font: "SF Pro Display 15";
  18. }
  19. #window {
  20. /* fullscreen:true;
  21. location: west;
  22. anchor: west;*/
  23. border: 0;
  24. border-radius: 4px;
  25. padding: 40;
  26. width: 30%;
  27. height: 40%;
  28. }
  29. #mainbox {
  30. background-color: #e9e9e900;
  31. children: [inputbar, listview];
  32. spacing: 10px;
  33. /*margin: 20%;*/
  34. padding: 20px 20px;
  35. border-radius: 5px;
  36. border: 1px;
  37. border-color: @base0D;
  38. }
  39. #listview {
  40. background-color: #e9e9e900;
  41. fixed-height: 0;
  42. border: 0px;
  43. spacing: 5px;
  44. scrollbar: false;
  45. padding: 10px 10px 0px;
  46. }
  47. #element {
  48. background-color: #e9e9e900;
  49. border: 0;
  50. border-radius: 4px;
  51. padding: 3 0 4 4 ;
  52. }
  53. #element selected {
  54. background-color: @xbs;
  55. text-color: @xfs;
  56. }
  57. #inputbar {
  58. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  59. background-color: #00000000;
  60. }
  61. #case-indicator {
  62. background-color: #00000000;
  63. spacing: 0;
  64. }
  65. #entry {
  66. background-color: #00000000;
  67. spacing: 0;
  68. }
  69. #prompt {
  70. background-color: #00000000;
  71. spacing: 0;
  72. }
  73. #textbox-prompt-colon {
  74. background-color: #00000000;
  75. expand: false;
  76. str: ":";
  77. margin: 0px 0.3em 0em 0em ;
  78. }