-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adopt 0.22 frontend interface. remove platform quirks. * Remove option "display icon" * Appwide input history * Fix initial query breaks initializatoin * Fix nord theme * Fix pixmap size * Fix theme templates * Give focus back on hide * Use albert::Iconprovider
- Loading branch information
1 parent
93b4dd1
commit 7d12a08
Showing
58 changed files
with
1,969 additions
and
2,038 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
* author: ubervison <https://github.com/ubervison> | ||
* | ||
* 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 : #%foreground_color%; | ||
background-color: #%background_color%; | ||
} | ||
|
||
#frame { | ||
padding: 4px; | ||
border-radius: 3px; | ||
background-color: #%background_color%; | ||
|
||
/* Workaround for Qt to get fixed size button*/ | ||
min-width:640px; | ||
max-width:640px; | ||
} | ||
|
||
#inputLine { | ||
padding: 2px; | ||
border-radius: 2px; | ||
border: 1px solid #%border_color%; | ||
font-size: 36px; | ||
selection-color: #%background_color%; | ||
selection-background-color: #%foreground_color%; | ||
background-color: #%inputline_color%; | ||
} | ||
|
||
#settingsButton { | ||
color : #%button_color%; | ||
background-color: #%background_color%; | ||
padding: 4px; | ||
|
||
/* Respect the frame border */ | ||
margin: 6px 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: #%foreground_color%; | ||
} | ||
|
||
QListView::item:selected { | ||
background: #%selection_background_color%; | ||
border: 1px solid #%selection_border_color%; | ||
} | ||
|
||
QListView QScrollBar:vertical { | ||
width: 5px; | ||
background: transparent; | ||
} | ||
|
||
QListView QScrollBar::handle:vertical { | ||
background: #%scroll_color%; | ||
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: transparent; | ||
} | ||
|
||
/********** actionList **********/ | ||
|
||
QListView#actionList { | ||
font-size: 20px; | ||
} | ||
|
||
QListView#actionList::item{ | ||
height:28px; | ||
} | ||
|
||
/********** resultsList **********/ | ||
|
||
QListView#resultsList { | ||
icon-size: 44px; | ||
font-size: 26px; | ||
} | ||
|
||
QListView#resultsList::item{ | ||
height:48px; | ||
} |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
* author: Manuel Schneider <https://github.com/ManuelSchneid3r> | ||
* | ||
* 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 : #%foreground_color%; | ||
background-color: #%background_color%; | ||
} | ||
|
||
#frame { | ||
padding: 6px; | ||
border-radius: 12px; | ||
background-color: #%background_color%; | ||
border: 6px solid #%border_color%; | ||
|
||
/* Workaround for Qt to get fixed size button*/ | ||
min-width:640px; | ||
max-width:640px; | ||
} | ||
|
||
#inputLine { | ||
padding: 2px; | ||
border-radius: 2px; | ||
font-size: 36px; | ||
selection-color: #%background_color%; | ||
selection-background-color: #%foreground_color%; | ||
background-color: #%inputline_color%; | ||
} | ||
|
||
#settingsButton { | ||
color : #%button_color%; | ||
background-color: #%background_color%; | ||
padding: 4px; | ||
|
||
/* Respect the frame border */ | ||
margin: 6px 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 { | ||
background: transparent; | ||
selection-color: #%selection_foreground_color%; | ||
} | ||
|
||
QListView::item:selected { | ||
background: qlineargradient(x1:0, x2:1, stop:0.0 #20%selection_background_color%, stop:0.5 #10%selection_background_color%, stop:1.0 #20%selection_background_color% ); | ||
} | ||
|
||
QListView QScrollBar:vertical { | ||
width: 5px; | ||
background: transparent; | ||
} | ||
|
||
QListView QScrollBar::handle:vertical { | ||
background: #%scroll_color%; | ||
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: transparent; | ||
} | ||
|
||
/********** actionList **********/ | ||
|
||
QListView#actionList { | ||
font-size: 20px; | ||
} | ||
|
||
QListView#actionList::item{ | ||
height:28px; | ||
} | ||
|
||
/********** resultsList **********/ | ||
|
||
QListView#resultsList { | ||
icon-size: 44px; | ||
font-size: 26px; | ||
} | ||
|
||
QListView#resultsList::item{ | ||
height:48px; | ||
} |
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
Oops, something went wrong.