增加rofi密码弹窗的样式

master
yutent 2023-07-10 05:45:42 +00:00
parent 0b50edf724
commit cc7d743077
1 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,48 @@
configuration {
show-icons: false;
}
@import "./colors.rasi"
window {
transparency: "real";
width: 360px;
border-radius: 4px;
background-color: @bg;
}
mainbox {
padding: 24px;
children: [ "inputbar", "entry"];
}
inputbar {
spacing: 10px;
background-color: transparent;
children: [ "textbox-prompt-colon", "prompt" ];
}
textbox-prompt-colon {
expand: false;
str: "";
padding: 12px 14px;
border-radius: 50%;
background-color: @blue;
}
prompt {
padding: 12px 16px;
border-radius: 24px;
background-color: @grey;
text-color: @fg;
vertical-align: 0.5;
}
entry {
margin: 16 0 0 0;
padding: 12px;
border-radius: 6px;
font: "Menlo 18px";
background-color: @bluea;
background-color: @grey;
}