Skip to content
This repository has been archived by the owner on Dec 17, 2017. It is now read-only.

Commit

Permalink
Set foreground colors for dark themes
Browse files Browse the repository at this point in the history
Fix by Patrik Bachan (Issue #512)
  • Loading branch information
amoskvin committed Dec 22, 2012
1 parent 9565e4e commit e31054f
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 7 deletions.
3 changes: 0 additions & 3 deletions razorqt-notificationd/src/notification.ui
Expand Up @@ -87,9 +87,6 @@
</property>
<item>
<widget class="QLabel" name="appLabel">
<property name="enabled">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
<horstretch>0</horstretch>
Expand Down
8 changes: 6 additions & 2 deletions razorqt-resources/themes/a-mego/razor-panel.qss
Expand Up @@ -149,8 +149,12 @@ MountButton:pressed {
}

#RazorMountPopup {
background-color: #e8e7e6;
border: 1px solid #a59f94;
background-color: #121212;
border: 1px solid #4a4a4a;
}

#RazorMountPopup > QLabel {
color: #7f7f7f;
}

/*
Expand Down
7 changes: 5 additions & 2 deletions razorqt-resources/themes/ambiance/razor-panel.qss
Expand Up @@ -173,8 +173,11 @@ MountButton:pressed {
}

#RazorMountPopup {
background-color: #e8e7e6;
border: 1px solid #a59f94;
background-color: #5c5b56;
}

#RazorMountPopup > QLabel {
color: #ffffff;
}

/*
Expand Down
8 changes: 8 additions & 0 deletions razorqt-resources/themes/green/razor-notificationd.qss
Expand Up @@ -4,6 +4,14 @@ Notification {
margin: 0px;
}

QLabel {
color: black;
}

#appLabel {
color: #838581;
}

#closeButton {
qproperty-icon: url(razor-runner/close-48x48.png);
}
5 changes: 5 additions & 0 deletions razorqt-resources/themes/green/razor-panel.qss
Expand Up @@ -37,6 +37,7 @@ RazorPanelPlugin > QToolButton {
margin: 0;
border: 2px solid transparent;
border-radius: 3px;
color: black;
qproperty-iconSize: 22px;
}

Expand Down Expand Up @@ -152,6 +153,10 @@ MountButton {}
border: 1px solid #a59f94;
}

#RazorMountPopup {
color: black;
}

/*
* Screensaver
*/
Expand Down
8 changes: 8 additions & 0 deletions razorqt-resources/themes/light/razor-notificationd.qss
Expand Up @@ -4,6 +4,14 @@ Notification {
margin: 0px;
}

QLabel {
color: black;
}

#appLabel {
color: #838581;
}

#closeButton {
qproperty-icon: url(razor-runner/close-48x48.png);
}
5 changes: 5 additions & 0 deletions razorqt-resources/themes/light/razor-panel.qss
Expand Up @@ -37,6 +37,7 @@ RazorPanelPlugin > QToolButton {
margin: 0;
border: 2px solid transparent;
border-radius: 3px;
color: black;
qproperty-iconSize: 22px;
}

Expand Down Expand Up @@ -152,6 +153,10 @@ MountButton {}
border: 1px solid #a59f94;
}

#RazorMountPopup > QLabel {
color: black;
}

/*
* Screensaver
*/
Expand Down

0 comments on commit e31054f

Please sign in to comment.