Skip to content

Commit

Permalink
Merge pull request #273 from nokyan/gnome-circle-fixes
Browse files Browse the repository at this point in the history
GNOME Circle Fixes Batch 3
  • Loading branch information
nokyan authored Jul 3, 2024
2 parents 7913d3f + 9684f39 commit 65341f7
Show file tree
Hide file tree
Showing 16 changed files with 320 additions and 304 deletions.
16 changes: 15 additions & 1 deletion data/resources/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,18 @@ progressbar.slim > trough, progressbar.slim > trough > progress {

.resources-columnview {
background-color: @window_bg_color;
}
}

.bubble {
background-color: alpha(currentColor, 0.08);
min-width: 32px;
min-height: 32px;
border-radius: 50%;
}

.big-bubble {
background-color: alpha(currentColor, 0.08);
min-width: 128px;
min-height: 128px;
border-radius: 50%;
}
15 changes: 10 additions & 5 deletions data/resources/ui/dialogs/app_dialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,16 @@
<property name="margin-end">16</property>
<property name="spacing">16</property>
<child>
<object class="GtkImage" id="icon">
<property name="pixel-size">128</property>
<style>
<class name="icon-dropshadow"/>
</style>
<object class="GtkBox">
<property name="halign">center</property>
<child>
<object class="GtkImage" id="icon">
<property name="pixel-size">128</property>
<style>
<class name="icon-dropshadow"/>
</style>
</object>
</child>
</object>
</child>
<child>
Expand Down
4 changes: 2 additions & 2 deletions data/resources/ui/pages/applications.ui
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<child>
<object class="GtkToggleButton" id="search_button">
<property name="icon-name">search-symbolic</property>
<property name="tooltip-text">Toggle search field</property>
<property name="tooltip-text">Search</property>
<accessibility>
<property name="label">Toggle search field</property>
</accessibility>
Expand All @@ -83,7 +83,7 @@
<object class="GtkButton" id="information_button">
<property name="icon-name">info-symbolic</property>
<property name="sensitive">false</property>
<property name="tooltip-text">Show app information</property>
<property name="tooltip-text">Show App Information</property>
<accessibility>
<property name="label">Show app information</property>
</accessibility>
Expand Down
4 changes: 2 additions & 2 deletions data/resources/ui/pages/processes.ui
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<child>
<object class="GtkToggleButton" id="search_button">
<property name="icon-name">search-symbolic</property>
<property name="tooltip-text">Toggle search field</property>
<property name="tooltip-text">Search</property>
<accessibility>
<property name="label">Toggle search field</property>
</accessibility>
Expand All @@ -83,7 +83,7 @@
<object class="GtkButton" id="information_button">
<property name="icon-name">info-symbolic</property>
<property name="sensitive">false</property>
<property name="tooltip-text">Show process information</property>
<property name="tooltip-text">Show Process Information</property>
<accessibility>
<property name="label">Show process information</property>
</accessibility>
Expand Down
Loading

0 comments on commit 65341f7

Please sign in to comment.