Skip to content

Commit

Permalink
Merge pull request #39 from Nighty3098/InDev
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
Nighty3098 authored Apr 19, 2024
2 parents 3af87f8 + dde1ade commit 323f2a8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 23 deletions.
1 change: 1 addition & 0 deletions src/CodeKeeper/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
" background-repeat: no-repeat;"
" background-color: rgba(0, 0, 0, 0);"
"}");

minimizeBtn->setStyleSheet("QPushButton {"
" border-color: rgba(0, 0, 0, 0);"
" background-color: rgba(0, 0, 0, 0);"
Expand Down
Binary file added src/resources/down-arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/resources/resources.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,7 @@
<file>yellow.png</file>
<file>yellowHovered.png</file>
<file>yellowPressed.png</file>
<file>up-arrow.png</file>
<file>down-arrow.png</file>
</qresource>
</RCC>
Binary file added src/resources/up-arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 17 additions & 23 deletions src/stylesheet/stylesheet.qss
Original file line number Diff line number Diff line change
@@ -1,42 +1,40 @@
QStatusBar {
background-color: #222436;
QDialog {
background-color: #2f334d;
border-width: 2px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}

QStatusBar::QSizeGrip {
background-color: transparent;
QWidget {
background-color: #222436;
border-width: 2px;
border-color: #ffffff;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}

QMainWindow {
background-color: #222436;
color: #c8d3f5;
}

QDialog {
background-color: #2f334d;
border-width: 2px;
QStatusBar {
background-color: #222436;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}

QSizeGrip {
QStatusBar::QSizeGrip {
background-color: transparent;
border-radius: 10px;
}

QWidget {
background-color: #222436;
border-width: 2px;
border-color: #ffffff;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
QSizeGrip {
background-color: transparent;
border-radius: 10px;
}

QMarkdownTextEdit {
Expand All @@ -62,10 +60,6 @@ QMarkdownTextEdit::lineNumber::selected:active {
border-radius: 10px;
}

QFrame {

}

QFileDialog {
background-color: #1a1b26;
}
Expand Down

0 comments on commit 323f2a8

Please sign in to comment.