Revert "Use the correct engine for gtk2 themes"
This reverts commit e95c5dc4f647a74b330462c1c6fc25a4a06ebde2.
This commit is contained in:
parent
e95c5dc4f6
commit
f99f7c9cfe
2
debian/control
vendored
2
debian/control
vendored
@ -54,7 +54,7 @@ Depends:
|
|||||||
# exo-utils configuration reference sensible-browser
|
# exo-utils configuration reference sensible-browser
|
||||||
sensible-utils,
|
sensible-utils,
|
||||||
# The GTK theme uses this engine
|
# The GTK theme uses this engine
|
||||||
gtk2-engines-pixbuf,
|
gtk2-engines-murrine,
|
||||||
# For boot-time splash screen
|
# For boot-time splash screen
|
||||||
plymouth-label,
|
plymouth-label,
|
||||||
${misc:Depends}
|
${misc:Depends}
|
||||||
|
|||||||
@ -2,9 +2,6 @@
|
|||||||
@import 'fallback-base';
|
@import 'fallback-base';
|
||||||
@import 'shared-base';
|
@import 'shared-base';
|
||||||
|
|
||||||
$tab_bg: darken($bg_color, if($variant == 'dark', 6%, 12%));
|
|
||||||
$tab_bg_backdrop: darken($backdrop_bg_color, 6%);
|
|
||||||
|
|
||||||
// HdyComboRow
|
// HdyComboRow
|
||||||
|
|
||||||
popover.combo {
|
popover.combo {
|
||||||
@ -337,227 +334,3 @@ window.csd.unified:not(.solid-csd):not(.fullscreen) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// HdyStatusPage
|
|
||||||
|
|
||||||
statuspage > scrolledwindow > viewport > box > clamp > box > .icon {
|
|
||||||
color: transparentize($fg_color, 0.5);
|
|
||||||
|
|
||||||
&:backdrop {
|
|
||||||
color: transparentize($backdrop_fg_color, 0.5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Tabs
|
|
||||||
|
|
||||||
@mixin undershoot-gradient($dir) {
|
|
||||||
@if $variant == 'dark' {
|
|
||||||
background: linear-gradient(to #{$dir},
|
|
||||||
transparentize(black, .6),
|
|
||||||
transparentize(black, 1) 20px);
|
|
||||||
}
|
|
||||||
@else {
|
|
||||||
background: linear-gradient(to #{$dir},
|
|
||||||
transparentize(black, .93),
|
|
||||||
transparentize(black, 1) 20px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin need-attention-gradient($dir) {
|
|
||||||
background: linear-gradient(to #{$dir},
|
|
||||||
transparentize($selected_bg_color, .3),
|
|
||||||
transparentize($selected_bg_color, .5) 1px,
|
|
||||||
transparentize($selected_bg_color, 1) 20px);
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbar {
|
|
||||||
.box {
|
|
||||||
min-height: 38px;
|
|
||||||
background: darken($tab_bg, 3%);
|
|
||||||
border-bottom: 1px solid $alt_borders_color;
|
|
||||||
|
|
||||||
&:backdrop {
|
|
||||||
background-color: darken($tab_bg_backdrop, 3%);
|
|
||||||
border-color: $backdrop_borders_color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
scrolledwindow.pinned {
|
|
||||||
undershoot {
|
|
||||||
border: 0 solid $alt_borders_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:dir(rtl) undershoot.left {
|
|
||||||
border-left-width: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:dir(ltr) undershoot.right {
|
|
||||||
border-right-width: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:backdrop undershoot {
|
|
||||||
border-color: $backdrop_borders_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbox {
|
|
||||||
&:dir(ltr) {
|
|
||||||
padding-right: 1px;
|
|
||||||
box-shadow: inset -1px 0 $alt_borders_color;
|
|
||||||
|
|
||||||
&:backdrop {
|
|
||||||
box-shadow: inset -1px 0 $backdrop_borders_color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:dir(rtl) {
|
|
||||||
padding-left: 1px;
|
|
||||||
box-shadow: inset 1px 0 $alt_borders_color;
|
|
||||||
|
|
||||||
&:backdrop {
|
|
||||||
box-shadow: inset 1px 0 $backdrop_borders_color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
undershoot {
|
|
||||||
transition: none;
|
|
||||||
|
|
||||||
&.left {
|
|
||||||
@include undershoot-gradient("right");
|
|
||||||
}
|
|
||||||
|
|
||||||
&.right {
|
|
||||||
@include undershoot-gradient("left");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.needs-attention-left undershoot.left {
|
|
||||||
@include need-attention-gradient("right");
|
|
||||||
}
|
|
||||||
|
|
||||||
.needs-attention-right undershoot.right {
|
|
||||||
@include need-attention-gradient("left");
|
|
||||||
}
|
|
||||||
|
|
||||||
tab {
|
|
||||||
border-style: solid;
|
|
||||||
border-color: $alt_borders_color;
|
|
||||||
border-width: 0 1px 0 1px;
|
|
||||||
transition: background 150ms ease-in-out;
|
|
||||||
background-color: $tab_bg;
|
|
||||||
|
|
||||||
&:checked {
|
|
||||||
background-color: lighten($tab_bg, 6%);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: lighten($tab_bg, 9%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: lighten($tab_bg, 3%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:backdrop {
|
|
||||||
border-color: $backdrop_borders_color;
|
|
||||||
background-color: $tab_bg_backdrop;
|
|
||||||
|
|
||||||
&:checked {
|
|
||||||
background-color: $backdrop_bg_color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.start-action,
|
|
||||||
.end-action {
|
|
||||||
background: $tab_bg;
|
|
||||||
border-color: $alt_borders_color;
|
|
||||||
border-style: solid;
|
|
||||||
transition: background 150ms ease-in-out;
|
|
||||||
|
|
||||||
&:backdrop {
|
|
||||||
border-color: $backdrop_borders_color;
|
|
||||||
background-color: $tab_bg_backdrop;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
border: none;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.start-action:dir(ltr),
|
|
||||||
.end-action:dir(rtl) {
|
|
||||||
border-right-width: 1px;
|
|
||||||
|
|
||||||
> * {
|
|
||||||
margin-right: 1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.start-action:dir(rtl),
|
|
||||||
.end-action:dir(ltr) {
|
|
||||||
border-left-width: 1px;
|
|
||||||
|
|
||||||
> * {
|
|
||||||
margin-left: 1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tab-drag-icon {
|
|
||||||
tab {
|
|
||||||
min-height: 26px;
|
|
||||||
background-color: lighten($tab_bg, 9%);
|
|
||||||
|
|
||||||
$_wm_border: if($variant=='light', transparentize(black, 0.77), transparentize($borders_color, 0.1));
|
|
||||||
|
|
||||||
box-shadow: 0 3px 9px 1px transparentize(black, 0.75),
|
|
||||||
0 0 0 1px $_wm_border, //doing borders with box-shadow
|
|
||||||
inset 0 1px $top_hilight;
|
|
||||||
|
|
||||||
margin: 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbar,
|
|
||||||
.tab-drag-icon {
|
|
||||||
tab {
|
|
||||||
padding: 6px;
|
|
||||||
|
|
||||||
&.needs-attention {
|
|
||||||
background-image:
|
|
||||||
radial-gradient(ellipse at bottom,
|
|
||||||
transparentize(white, .2),
|
|
||||||
transparentize($selected_bg_color, .8) 15%,
|
|
||||||
transparentize($selected_bg_color, 1) 15%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tab-close-button,
|
|
||||||
.tab-indicator {
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
min-width: 24px;
|
|
||||||
min-height: 24px;
|
|
||||||
border-radius: 99px;
|
|
||||||
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
-gtk-icon-shadow: none;
|
|
||||||
text-shadow: none;
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tab-close-button,
|
|
||||||
.tab-indicator.clickable {
|
|
||||||
&:hover {
|
|
||||||
background: hdyalpha($fg_color, .15);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
background: hdyalpha(black, .2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@ -69,7 +69,6 @@ row.expander {
|
|||||||
|
|
||||||
// Shadows
|
// Shadows
|
||||||
|
|
||||||
flap,
|
|
||||||
deck,
|
deck,
|
||||||
leaflet {
|
leaflet {
|
||||||
> dimming {
|
> dimming {
|
||||||
@ -147,68 +146,3 @@ viewswitchertitle viewswitcher {
|
|||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// HdyStatusPage
|
|
||||||
|
|
||||||
statuspage > scrolledwindow > viewport > box {
|
|
||||||
margin: 36px 12px;
|
|
||||||
|
|
||||||
> clamp {
|
|
||||||
&:not(:last-child) > box {
|
|
||||||
margin-bottom: 36px;
|
|
||||||
}
|
|
||||||
|
|
||||||
> box {
|
|
||||||
> .icon:not(:last-child) {
|
|
||||||
margin-bottom: 36px;
|
|
||||||
}
|
|
||||||
|
|
||||||
> .title:not(:last-child) {
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Preferences
|
|
||||||
|
|
||||||
window.preferences > deck > deck > box > stack > stack > scrolledwindow > viewport > clamp,
|
|
||||||
preferencespage > scrolledwindow > viewport > clamp {
|
|
||||||
margin: 0 12px;
|
|
||||||
|
|
||||||
transition: margin-bottom 200ms ease;
|
|
||||||
|
|
||||||
> list,
|
|
||||||
> box > preferencesgroup {
|
|
||||||
transition: margin-top 200ms ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
$sizes: ("small": 18px, "medium": 24px, "large": 30px);
|
|
||||||
|
|
||||||
@each $name, $size in $sizes {
|
|
||||||
&.#{$name} {
|
|
||||||
margin-bottom: $size;
|
|
||||||
|
|
||||||
> list,
|
|
||||||
> box > preferencesgroup { margin-top: $size; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
preferencesgroup > box {
|
|
||||||
// Add space between the description and the title.
|
|
||||||
> label:not(:first-child) {
|
|
||||||
margin-top: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add space between the box and the labels.
|
|
||||||
> box:not(:first-child) {
|
|
||||||
margin-top: 12px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbar .tab-indicator:not(.clickable) {
|
|
||||||
background: none;
|
|
||||||
box-shadow: none;
|
|
||||||
border-color: transparent;
|
|
||||||
}
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ GREEN='\033[0;32m'
|
|||||||
YELLOW='\033[0;33m'
|
YELLOW='\033[0;33m'
|
||||||
RESET='\033[0m'
|
RESET='\033[0m'
|
||||||
|
|
||||||
VERSION=1.2.2
|
VERSION=1.0.3
|
||||||
|
|
||||||
echo
|
echo
|
||||||
printf " $YELLOW[ i ]$RESET Upstream version $VERSION\n"
|
printf " $YELLOW[ i ]$RESET Upstream version $VERSION\n"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user