selection highlight: add rounded border

This commit is contained in:
Tor Hedin Brønner
2020-03-01 18:13:05 +01:00
parent 8971ae73e3
commit 0c3f71d94d
3 changed files with 6 additions and 1 deletions
+1
View File
@@ -64,6 +64,7 @@ var ActionDispatcher = class {
show(backward, binding, mask) {
this._modifierMask = SwitcherPopup.primaryModifier(mask);
this.navigator = getNavigator();
TopBar.fixTopBar();
let actionId = Keybindings.idOf(binding);
if(actionId === Meta.KeyBindingAction.NONE) {
try {
+4
View File
@@ -14,3 +14,7 @@
.workspace-icon-button StIcon {
icon-size: 16px;
}
.paperwm-selection {
border-radius: 8px;
}
+1 -1
View File
@@ -153,7 +153,7 @@ class Space extends Array {
label.hide();
let selection = new St.Widget({name: 'selection',
style_class: 'tile-preview'});
style_class: 'paperwm-selection tile-preview'});
this.selection = selection;
clip.space = this;