@@ -198,10 +198,6 @@ flowboxchild.filter-chip-child:selected:hover {
198198 background-color: alpha(@accent_color, 0.24);
199199}
200200
201- /* Object tables: rounded card look, matching the old boxed-list style —
202- * card background for rows, a distinct shaded header, hairline row
203- * separators. The frame class goes on the enclosing ScrolledWindow so the
204- * rounded corners wrap header and rows together. */
205201scrolledwindow.aetheris-table-frame {
206202 background-color: @card_bg_color;
207203 border: 1px solid alpha(currentColor, 0.1);
@@ -213,10 +209,6 @@ columnview.aetheris-table > listview {
213209 background: transparent;
214210}
215211
216- /* GNOME-style header: dimmed label at rest (like .dim-label), and on
217- * hover a genuinely darker surface (@shade_color is Adwaita's translucent
218- * black shading color in both light and dark) with the label brightening
219- * to full strength. */
220212columnview.aetheris-table > header > button {
221213 background-color: alpha(currentColor, 0.05);
222214 border-bottom: 1px solid alpha(currentColor, 0.1);
@@ -315,9 +307,6 @@ pub struct App {
315307 add_cluster_button : gtk:: Button ,
316308 import_cluster_button : gtk:: Button ,
317309 clusters_content_stack : gtk:: Stack ,
318- /// State/Provider/Version/CPU/Memory/Pods snapshot per context name,
319- /// fetched lazily the first time the Clusters page shows a given
320- /// context and cached until the app restarts.
321310 cluster_summaries : std:: collections:: HashMap < String , ClusterSummaryState > ,
322311 namespace_menu_button : gtk:: MenuButton ,
323312 namespace_selector_label : gtk:: Label ,
@@ -342,7 +331,6 @@ pub struct App {
342331 /// activation positions index into this model.
343332 object_sorted : gtk:: SortListModel ,
344333 object_columns : Vec < ( ObjectTableColumn , gtk:: ColumnViewColumn ) > ,
345- /// Switches between the object table and the "No objects" placeholder.
346334 object_list_stack : gtk:: Stack ,
347335 detail_stack : gtk:: Stack ,
348336 detail_name_label : gtk:: Label ,
@@ -368,8 +356,6 @@ pub struct App {
368356 detail_conditions_list : gtk:: ListBox ,
369357 detail_related_pods_store : gtk:: gio:: ListStore ,
370358 detail_related_pods_sorted : gtk:: SortListModel ,
371- /// Switches the detail "Pods" tab between the pods table and an
372- /// informational message (non-Deployment kinds, empty selector match).
373359 detail_related_pods_stack : gtk:: Stack ,
374360 detail_related_pods_message : adw:: StatusPage ,
375361 detail_log_container_dropdown : gtk:: DropDown ,
@@ -414,8 +400,6 @@ pub struct App {
414400 project_dialog_description : gtk:: Label ,
415401 project_name_entry : adw:: EntryRow ,
416402 project_create_button : gtk:: Button ,
417- /// The project's name before this edit, when the project dialog is in
418- /// rename mode. `None` means the dialog is creating a new project.
419403 editing_project_name : Option < String > ,
420404 create_yaml_dialog : adw:: Dialog ,
421405 create_yaml_buffer : sourceview5:: Buffer ,
@@ -432,8 +416,6 @@ pub struct App {
432416 setup_button : gtk:: Button ,
433417 editing_cluster : bool ,
434418 editing_context_name : Option < String > ,
435- /// The namespace being renamed while `rename_namespace_dialog` is open.
436- /// `None` means the dialog is closed.
437419 renaming_namespace : Option < String > ,
438420}
439421
0 commit comments