mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-10 04:21:07 +00:00
Fixed XFCE desktop
This commit is contained in:
parent
445594e1e9
commit
f673429780
8 changed files with 64 additions and 19 deletions
|
|
@ -1512,6 +1512,12 @@ undershoot.left { background-size: 0.5em 100%; background-position: left; }
|
||||||
|
|
||||||
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view { text-shadow: 0 0 2px #323232, 0 0 2px #323232, 0 0 2px #323232; color: #EDF0F5; background-color: transparent; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view .rubberband { background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
|
XfdesktopIconView.view:active { text-shadow: none; color: #d1ff96; background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
||||||
|
|
||||||
#XfceNotifyWindow label { color: #66cbec; }
|
#XfceNotifyWindow label { color: #66cbec; }
|
||||||
|
|
|
||||||
|
|
@ -1667,6 +1667,12 @@ undershoot.left { background-size: 0.5em 100%; background-position: left; }
|
||||||
|
|
||||||
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view { text-shadow: 0 0 2px #323232, 0 0 2px #323232, 0 0 2px #323232; color: #EDF0F5; background-color: transparent; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view .rubberband { background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
|
XfdesktopIconView.view:active { text-shadow: none; color: #d1ff96; background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
||||||
|
|
||||||
#XfceNotifyWindow label { color: #66cbec; }
|
#XfceNotifyWindow label { color: #66cbec; }
|
||||||
|
|
|
||||||
38
source/common/desktops.scss
Normal file
38
source/common/desktops.scss
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
// Other desktops fixes
|
||||||
|
|
||||||
|
// XFCE
|
||||||
|
|
||||||
|
|
||||||
|
XfdesktopIconView.view {
|
||||||
|
text-shadow: 0 0 2px $base_color, 0 0 2px $base_color, 0 0 2px $base_color;
|
||||||
|
color: $text_color;
|
||||||
|
background-color: transparent;
|
||||||
|
|
||||||
|
.rubberband {
|
||||||
|
background-color: gtkalpha($selected_bg_color, 0.5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
XfdesktopIconView.view:active {
|
||||||
|
text-shadow: none;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
background-color: gtkalpha($selected_bg_color, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
#XfceNotifyWindow {
|
||||||
|
|
||||||
|
color: $hint_fg;
|
||||||
|
border-radius: $window_radius;
|
||||||
|
border-width: $border_width;
|
||||||
|
border-style: solid;
|
||||||
|
@include relief($hint_bg);
|
||||||
|
label {color: $hint_fg}
|
||||||
|
label #summary { font-weight: bold; }
|
||||||
|
|
||||||
|
button {
|
||||||
|
@include button(osd);
|
||||||
|
&:hover {@include button(osd-hover); }
|
||||||
|
&:active {@include button(osd-active);}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
#XfceNotifyWindow {
|
|
||||||
|
|
||||||
color: $hint_fg;
|
|
||||||
border-radius: $window_radius;
|
|
||||||
border-width: $border_width;
|
|
||||||
border-style: solid;
|
|
||||||
@include relief($hint_bg);
|
|
||||||
label {color: $hint_fg}
|
|
||||||
label #summary { font-weight: bold; }
|
|
||||||
|
|
||||||
button {
|
|
||||||
@include button(osd);
|
|
||||||
&:hover {@include button(osd-hover); }
|
|
||||||
&:active {@include button(osd-active);}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -3881,4 +3881,4 @@ statusbar {
|
||||||
|
|
||||||
|
|
||||||
@import '../common/undershoot.scss';
|
@import '../common/undershoot.scss';
|
||||||
@import '../common/xfce.scss';
|
@import '../common/desktops.scss';
|
||||||
|
|
|
||||||
|
|
@ -1512,6 +1512,12 @@ undershoot.left { background-size: 0.5em 100%; background-position: left; }
|
||||||
|
|
||||||
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view { text-shadow: 0 0 2px #323232, 0 0 2px #323232, 0 0 2px #323232; color: #EDF0F5; background-color: transparent; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view .rubberband { background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
|
XfdesktopIconView.view:active { text-shadow: none; color: #d1ff96; background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
||||||
|
|
||||||
#XfceNotifyWindow label { color: #66cbec; }
|
#XfceNotifyWindow label { color: #66cbec; }
|
||||||
|
|
|
||||||
|
|
@ -3773,4 +3773,4 @@ splitbutton {
|
||||||
}
|
}
|
||||||
|
|
||||||
@import '../common/undershoot.scss';
|
@import '../common/undershoot.scss';
|
||||||
@import '../common/xfce.scss';
|
@import '../common/desktops.scss';
|
||||||
|
|
|
||||||
|
|
@ -1667,6 +1667,12 @@ undershoot.left { background-size: 0.5em 100%; background-position: left; }
|
||||||
|
|
||||||
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
undershoot.right { background-size: 0.5em 100%; background-position: right; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view { text-shadow: 0 0 2px #323232, 0 0 2px #323232, 0 0 2px #323232; color: #EDF0F5; background-color: transparent; }
|
||||||
|
|
||||||
|
XfdesktopIconView.view .rubberband { background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
|
XfdesktopIconView.view:active { text-shadow: none; color: #d1ff96; background-color: alpha(#669900,0.5); }
|
||||||
|
|
||||||
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
#XfceNotifyWindow { color: #66cbec; border-radius: 0px; border-width: 2px; border-style: solid; background-color: #203d79; border-left-color: #6377a1; border-top-color: #6377a1; border-right-color: #15284f; border-bottom-color: #15284f; }
|
||||||
|
|
||||||
#XfceNotifyWindow label { color: #66cbec; }
|
#XfceNotifyWindow label { color: #66cbec; }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue