Skip to content

Commit

Permalink
Fixed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Nov 16, 2024
1 parent 18a308b commit b9f3d52
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/sass/gnome-shell/extensions-46-0/_dash-to-dock.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
color: white;
background-color: rgba(black, 0.75);
text-align: center;
padding: 0.32em 0.4em;
padding: 0.25em 0.4em;
}

.notification-badge {
Expand All @@ -29,7 +29,7 @@
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
border-radius: $circular-radius;
margin: 2px 3px 5px;
padding: 0.3em 0.4em;
padding: 0.25em 0.4em;
font-weight: bold;
text-align: center;
}
Expand Down
4 changes: 4 additions & 0 deletions src/sass/gtk/_common-4.0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2183,6 +2183,10 @@ popover {
stack > box { padding: 0; }

> box > button { margin: 0; }

> statuspage.compact > scrolledwindow > viewport > box {
margin: $space-size * 2;
}
}

// FIXME: Use the popover color instead of transparent as a workaround for .view
Expand Down
19 changes: 7 additions & 12 deletions src/sass/gtk/apps/_gnome-4.0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ navigation-view-page {
}
}

button.star {
min-height: 24px;
min-width: 24px;
padding: ($medium-size - 24px) / 2;
border-radius: $corner-radius;
}

//
// Gnome Control Center
//
Expand Down Expand Up @@ -899,18 +906,6 @@ box.star {
background-image: none;
}

button.star {
outline-offset: 0;
background-color: transparent;
background-image: none;
border-image: none;
border-radius: 0;
border-width: 0;
padding: 0;
box-shadow: none;
outline-offset: -1px;
}

star-image {
color: $yellow-dark;
}
Expand Down
7 changes: 7 additions & 0 deletions src/sass/libadwaita/apps/_nautilus.scss
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,11 @@ list.operations-list {
animation: none;
}
}
}

button.image-button.star {
min-height: 24px;
min-width: 24px;
padding: ($medium_size - 24px) / 2;
border-radius: $button_radius;
}
4 changes: 4 additions & 0 deletions src/sass/libadwaita/widgets/_popovers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ popover {
separator {
background-color: gtkalpha(currentColor, 0.08);
}

> statuspage.compact > scrolledwindow > viewport > box { // Nautilus popover
margin: $base_padding * 2;
}
}

.osd &,
Expand Down

0 comments on commit b9f3d52

Please sign in to comment.