Last active
May 14, 2017 04:51
-
-
Save chaitanya-lakkundi/683336907cc4d60750b934c8cb310b57 to your computer and use it in GitHub Desktop.
CSS Themes for Kupfer Launcher
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
These files are to be copied into ~/.local/share/kupfer directory. | |
custom_theme plugin will automatically detect these themes and present a choice. | |
Any user can write custom css and share. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#kupfer { | |
background: #353535; | |
color: white; | |
} | |
.matchview { | |
border-radius: 0.6em; | |
} | |
#kupfer-preedit { | |
padding: 0 0 0 0; | |
} | |
#kupfer-preedit.hidden { | |
border-width: 0 0 0 0; | |
padding: 0 0 0 0 ; | |
margin: 0 0 0 0; | |
outline-width: 0; | |
min-height: 0; | |
min-width: 0; | |
} | |
#kupfer-object-pane { | |
} | |
#kupfer-action-pane { | |
} | |
#kupfer-indirect-object-pane { | |
} | |
#kupfer-list { | |
} | |
#kupfer-list-view { | |
background-color: #292929; | |
color: white; | |
} | |
#kupfer-list-view:selected { | |
background-color: @theme_selected_bg_color; | |
color: @theme_selected_fg_color; | |
} | |
*:selected .matchview { | |
background: alpha(@theme_selected_bg_color, 0.5); | |
border: 2px solid alpha(black, 0.3) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#kupfer { | |
background: @theme_bg_color; | |
color: @theme_fg_color; | |
} | |
.matchview { | |
border-radius: 0.6em; | |
} | |
#kupfer-preedit { | |
padding: 0 0 0 0; | |
} | |
#kupfer-preedit.hidden { | |
border-width: 0 0 0 0; | |
padding: 0 0 0 0 ; | |
margin: 0 0 0 0; | |
outline-width: 0; | |
min-height: 0; | |
min-width: 0; | |
} | |
#kupfer-object-pane { | |
} | |
#kupfer-action-pane { | |
} | |
#kupfer-indirect-object-pane { | |
} | |
#kupfer-list { | |
} | |
#kupfer-list-view { | |
background-color: @theme_bg_color; | |
color: @theme_fg_color; | |
} | |
#kupfer-list-view:selected { | |
background-color: @theme_selected_bg_color; | |
color: @theme_selected_fg_color; | |
} | |
*:selected .matchview { | |
background: alpha(@theme_selected_bg_color, 0.5); | |
border: 2px solid alpha(black, 0.3) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment