Skip to content

Commit

Permalink
Add support for Xfwm4 4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ochosi committed Aug 5, 2018
1 parent 3267f26 commit 2dd5222
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
33 changes: 33 additions & 0 deletions gtk-3.0/_xfce.scss
Original file line number Diff line number Diff line change
Expand Up @@ -191,3 +191,36 @@ XfdesktopIconView.view {
}
}
}

/* Xfwm4's alt-tab dialog, aka "tabwin" */
#xfwm-tabwin {
padding: 12px;
background-image: none;
background-color: transparentize(black, 0.2);
color: shade($selected_fg_color, 0.65);
text-shadow: 0px 1px transparentize(black, 0.2);
border-radius: 12px;
/* Set the application icon- and preview-size to 64px */
-XfwmTabwinWidget-icon-size: 64px;
-XfwmTabwinWidget-preview-size: 64px;

button {
min-width: 96px;
min-height: 96px;
background-image: none;
color: $selected_fg_color;
font-weight: bold;
text-shadow: 0px 1px transparentize(black, 0.2);
border: none;
border-radius: 6px;
box-shadow: none;

&:active, &:checked, &:active:hover, &:checked:hover {
background: transparentize($bg_color, 0.7);
}
&:hover {
background: mix(black, $selected_bg_color, 40%);
transition-duration: 50ms;
}
}
}
27 changes: 27 additions & 0 deletions gtk-3.0/gtk-contained.css
Original file line number Diff line number Diff line change
Expand Up @@ -4576,6 +4576,33 @@ XfdesktopIconView.view {
border-radius: 3px;
padding: 1px 0; }

/* Xfwm4's alt-tab dialog, aka "tabwin" */
#xfwm-tabwin {
padding: 12px;
background-image: none;
background-color: rgba(0, 0, 0, 0.8);
color: shade(#ffffff, 0.65);
text-shadow: 0px 1px rgba(0, 0, 0, 0.8);
border-radius: 12px;
/* Set the application icon- and preview-size to 64px */
-XfwmTabwinWidget-icon-size: 64px;
-XfwmTabwinWidget-preview-size: 64px; }
#xfwm-tabwin button {
min-width: 96px;
min-height: 96px;
background-image: none;
color: #ffffff;
font-weight: bold;
text-shadow: 0px 1px rgba(0, 0, 0, 0.8);
border: none;
border-radius: 6px;
box-shadow: none; }
#xfwm-tabwin button:active, #xfwm-tabwin button:checked, #xfwm-tabwin button:active:hover, #xfwm-tabwin button:checked:hover {
background: rgba(206, 206, 206, 0.3); }
#xfwm-tabwin button:hover {
background: #22558b;
transition-duration: 50ms; }

.lightdm-gtk-greeter {
/*********
* panel *
Expand Down

0 comments on commit 2dd5222

Please sign in to comment.