Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions qui/styles/qubes-widgets-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,12 @@ radiobutton radio {
border: none;
background: none;
}

tooltip {
text-shadow: none;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

tooltip * {
color: @text-color;
}
4 changes: 3 additions & 1 deletion qui/updater/intro_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@ def refresh_update_list(self, update_if_stale):
if row.vm.name == "dom0":
continue
row.updates_available = bool(row.vm.name in to_update)
row.selected = bool(row.vm.name in to_update)
row.selected = bool(
row.vm.name in to_update
) and not row.vm.features.get("prohibit-start", False)

def get_vms_to_update(self) -> ListWrapper:
"""Returns list of vms selected to be updated"""
Expand Down