mirror of
https://github.com/gosticks/PaperWM.git
synced 2026-02-13 04:12:50 +00:00
And a placeholder style for selected window in minimap.
The extension system load this file automatically. Simply set the class on a st
widget to use:
new St.Bin({ style_class: "paper-mm-selected-window"});
The border is part of the width though (box-sizing not supported I think) so
if we're going to use borders directly around the clone some adjustment will be
needed to keep 100% aligned with the actual space.
5 lines
129 B
CSS
5 lines
129 B
CSS
.paper-mm-selected-window {
|
|
border: 10px cyan; /* if we need to operate in pre-scaled dimension */
|
|
border-radius: 5px;
|
|
}
|