This commits adds a new arrangement widget, refactoring the existing code and addressing a number of issues: * Forced snapping made laying out more than 2 monitors hard * Random gaps would be shown between monitors * The scaling was fixed and usually tiny https://bugzilla.gnome.org/show_bug.cgi?id=786971
26 lines
489 B
CSS
26 lines
489 B
CSS
|
|
.display-arrangement.monitor {
|
|
border: solid 1px @borders;
|
|
margin: 0px 0px 1px 1px;
|
|
background: @theme_bg_color;
|
|
padding: 0.4em;
|
|
}
|
|
|
|
.display-arrangement.monitor.primary {
|
|
border-top: 0.4em solid #000000;
|
|
}
|
|
|
|
.display-arrangement.monitor:selected {
|
|
background: @theme_selected_bg_color;
|
|
}
|
|
|
|
.display-arrangement.monitor-label {
|
|
font-size: larger;
|
|
font-weight: bold;
|
|
border-radius: 0.3em;
|
|
padding-right: 0.2em;
|
|
padding-left: 0.2em;
|
|
color: #fff;
|
|
background: #000;
|
|
}
|
|
|