Last active
June 21, 2019 08:50
-
-
Save Ben-Kaniobi/aa195ecaf26d6d010c847589aa4ccaf2 to your computer and use it in GitHub Desktop.
Simple Wide Launchy Skin
This file contains hidden or 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
#launchy { | |
qproperty-alignment: AlignLeft; | |
qproperty-geometry: rect(0 0 554 84); | |
background-color: rgba(0, 0, 0, 90%); | |
border: 1px solid rgba(64, 64, 64, 80%); | |
border-style: outset; | |
border-radius: 2px; | |
} | |
#workingAnimation { | |
qproperty-geometry: rect(534 4 16 16); | |
} | |
#outputIcon { | |
qproperty-geometry: rect(12 12 32 32); | |
} | |
#output { | |
qproperty-alignment: AlignCenter; | |
qproperty-geometry: rect(55 12 487 32); | |
font: 16px Monospace, Consolas, Lucida Console; | |
font-weight: bold; | |
color: white; | |
} | |
#input { | |
qproperty-alignment: AlignLeft; | |
qproperty-geometry: rect(7 55 540 22); | |
padding: 0px 2px 0px 2px; | |
background-color: white; | |
border: 1px solid rgba(128, 128, 128, 80%); | |
border-style: inset; | |
font: 12px Monospace, Consolas, Lucida Console; | |
font-weight: normal; | |
color: black; | |
} | |
#alternatives { | |
qproperty-geometry: rect(7 76 540 130); | |
background-color: white; | |
alternate-background-color: #D9D9D9; | |
selection-background-color: #447CB8; | |
border: 1px solid rgba(128, 128, 128, 80%); | |
border-style: inset; | |
font: 12px Monospace, Consolas, Lucida Console; | |
selection-color: white; | |
color: #3C3C3C; | |
} | |
#alternativesPath { | |
font: 11px Monospace, Consolas, Lucida Console; | |
color: #666666; | |
} | |
#altScroll, | |
#altScroll::sub-page, | |
#altScroll::sub-line, /* Scroll up */ | |
#altScroll::add-page, | |
#altScroll::add-line, /* Scroll down */ | |
#altScroll::handle { | |
image: none; | |
background: none; | |
border: none; | |
width: 5px; | |
} | |
#altScroll { | |
background-color: #CCCCCC; | |
} | |
/* Scroll up button */ | |
#altScroll::sub-line { | |
display: none; | |
} | |
/* Area above handle */ | |
#altScroll::sub-page { | |
} | |
/* Handle */ | |
#altScroll::handle { | |
background-color: #888888; | |
} | |
/* Area below handle */ | |
#altScroll::add-page { | |
} | |
/* Scroll down button */ | |
#altScroll::add-line { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment