Created
July 28, 2019 08:48
-
-
Save hossainemruz/2b8ecfa73326b3cb073e0c1865439769 to your computer and use it in GitHub Desktop.
Albert Theme: Elemetary Dark
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
/* | |
* author: Bart Zaalberg <https://github.com/bartzaalberg> | |
* | |
* Check http://doc.qt.io/qt-5/stylesheet-syntax.html especially the subtopics: | |
* The Style Sheet Syntax (http://doc.qt.io/qt-5/stylesheet-syntax.html) | |
* Qt Style Sheets Reference (http://doc.qt.io/qt-5/stylesheet-reference.html) | |
*/ | |
* { | |
border: none; | |
color : white; | |
background-color: #FFFFFF; | |
} | |
#frame { | |
padding: 10px; | |
border-radius: 4px; | |
background-color: #232629; | |
border: 1px solid #808080; | |
/* Workaround for Qt to get fixed size button*/ | |
min-width:640px; | |
max-width:640px; | |
} | |
#inputLine { | |
padding: 0px; | |
border-radius: 2px; | |
border: 1px solid #395D80; | |
font-size:15px; | |
selection-color: #404040; | |
selection-background-color: #FFFFFF; | |
background-color: #232629; | |
padding-left:10px; | |
margin-right:20px; | |
color:white; | |
} | |
#settingsButton { | |
color : white; | |
background-color: #29344B; | |
padding: 4px; | |
/* Respect the frame border */ | |
margin: 12px 6px 0px 0px; | |
border-top-right-radius: 6px; | |
border-bottom-left-radius: 10px; | |
/* Workaround for Qt to get fixed size button*/ | |
min-width:13px; | |
min-height:13px; | |
max-width:13px; | |
max-height:13px; | |
} | |
/********** ListViews **********/ | |
QListView { | |
selection-color: white; | |
background-color: #232629; | |
} | |
QListView::item { | |
background-color: black; | |
padding:6px; | |
} | |
QListView::item:selected { | |
border-radius: 4px; | |
background-color: #31363B; | |
color: #FFFFFF; | |
} | |
QListView QScrollBar:vertical { | |
width: 5px; | |
background: transparent; | |
} | |
QListView QScrollBar::handle:vertical { | |
background: #808080; | |
min-height: 24px; | |
} | |
QListView QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical, | |
QListView QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical, | |
QListView QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { | |
border: 0px; | |
width: 0px; | |
height: 0px; | |
background: #F5F5F5; | |
} | |
/********** actionList **********/ | |
QListView#actionList { | |
font-size: 15px; | |
color: black; | |
} | |
QListView#actionList::item{ | |
height:28px; | |
} | |
/********** resultsList **********/ | |
QListView#resultsList { | |
icon-size: 35px; | |
font-size: 13px; | |
color: #DEDED5; | |
fill: #333; | |
font-family: "Open Sans"; | |
src: url("//fonts.googleapis.com/css?family=Open+Sans"); | |
font-weight: 400; | |
} | |
QListView#resultsList::item{ | |
height:48px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment