mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-05-04 23:47:23 +00:00
131 lines
2 KiB
Text
131 lines
2 KiB
Text
/**
|
|
* A floating and a modified box version of the paper theme.
|
|
*
|
|
* Copyright: Dave Davenport
|
|
*/
|
|
|
|
* {
|
|
blue: #0000FF;
|
|
white: #FFFFFF;
|
|
black: #000000;
|
|
grey: #eeeeee;
|
|
|
|
spacing: 2;
|
|
background-color: #00000000;
|
|
border-color: #444444FF;
|
|
}
|
|
|
|
#window {
|
|
transparency: "screenshot";
|
|
background-color: #00000000;
|
|
border: 0;
|
|
padding: 0% 0% 1em 0%;
|
|
x-offset: 0;
|
|
y-offset: 0;
|
|
}
|
|
|
|
#mainbox {
|
|
padding: 0px;
|
|
border: 0;
|
|
spacing: 1%;
|
|
}
|
|
|
|
#message {
|
|
border: 2px;
|
|
padding: 1em;
|
|
background-color: @white;
|
|
text-color: @back;
|
|
}
|
|
|
|
#textbox normal {
|
|
text-color: #002B36FF;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
#listview {
|
|
fixed-height: 1;
|
|
border: 2px;
|
|
padding: 0em;
|
|
reverse: false;
|
|
|
|
columns: 1;
|
|
background-color: @white;
|
|
}
|
|
|
|
#element {
|
|
padding: 0.5em;
|
|
highlight: bold;
|
|
}
|
|
|
|
#element normal.normal {
|
|
text-color: @gray;
|
|
background-color: #F5F5F500;
|
|
}
|
|
|
|
#element normal.urgent {
|
|
text-color: #D75F00FF;
|
|
background-color: #F5F5F5FF;
|
|
}
|
|
|
|
#element normal.active {
|
|
text-color: @black;
|
|
background-color: #F5F5F5FF;
|
|
}
|
|
|
|
#element selected.normal {
|
|
text-color: #F5F5F5FF;
|
|
text-color: @black;
|
|
background-color: #D0D0D0FF;
|
|
}
|
|
|
|
#element selected.urgent {
|
|
text-color: #F5F5F5FF;
|
|
background-color: #D75F00FF;
|
|
}
|
|
|
|
#element selected.active {
|
|
text-color: @black;
|
|
background-color: #D0D0D0FF;
|
|
}
|
|
|
|
#scrollbar {
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#inputbar {
|
|
spacing: 0;
|
|
border: 2px;
|
|
padding: 0.5em 1em;
|
|
padding: 0.5em 0.4em;
|
|
background-color: @grey;
|
|
index: 0;
|
|
}
|
|
|
|
#inputbar normal {
|
|
foreground-color: #002B36FF;
|
|
background-color: #F5F5F500;
|
|
}
|
|
|
|
#sidebar {
|
|
border: 2px;
|
|
padding: 0.5em 1em;
|
|
background-color: @grey;
|
|
index: 10;
|
|
}
|
|
|
|
#button selected {
|
|
text-color: #4271AEFF;
|
|
}
|
|
|
|
inputbar {
|
|
children: [ prompt, textbox-prompt-colon, entry, case-indicator ];
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
text-color: inherit;
|
|
expand: false;
|
|
margin: 0 0.3em 0em 0em;
|
|
str: ":";
|
|
}
|