windowManager: Implement tile previews
Mutter now delegates tile previews to compositor plugins, so add a simple implementation based on the UI previously provided by mutter. https://bugzilla.gnome.org/show_bug.cgi?id=665758
This commit is contained in:
@@ -1877,6 +1877,27 @@ StScrollBar StButton#vhandle:active {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
/* Tile previews */
|
||||
.tile-preview {
|
||||
background-color: rgba(74, 144, 217, 0.35);
|
||||
border: 1px solid #4a90d9; /* Adwaita selected bg color */
|
||||
}
|
||||
|
||||
.tile-preview-left.on-primary {
|
||||
/* keep in sync with -panel-corner-radius */
|
||||
border-radius: 6px 0 0 0;
|
||||
}
|
||||
|
||||
.tile-preview-right.on-primary {
|
||||
/* keep in sync with -panel-corner-radius */
|
||||
border-radius: 0 6px 0 0;
|
||||
}
|
||||
|
||||
.tile-preview-left.tile-preview-right.on-primary {
|
||||
/* keep in sync with -panel-corner-radius */
|
||||
border-radius: 6px 6px 0 0;
|
||||
}
|
||||
|
||||
/* Modal Dialogs */
|
||||
|
||||
/* Dialog Subject Text Style */
|
||||
|
Reference in New Issue
Block a user