Fix icon sizing.
This commit is contained in:
+17
-5
@@ -225,12 +225,12 @@ dnd.playpen-tab-drag {
|
||||
background-color: @pp_bg;
|
||||
}
|
||||
|
||||
/* A view is the container for one tab's terminals. Even padding now that the
|
||||
sidebar is inset too — the left edge used to be flush against the sidebar's
|
||||
border, so the gutter around the content was open on three sides and closed
|
||||
on the fourth. */
|
||||
/* A view is the container for one tab's terminals. The left side has no
|
||||
padding of its own: the root split's separator is the 6px gutter there, so
|
||||
the content stays evenly inset while that gap doubles as the drag handle
|
||||
that resizes the sidebar. */
|
||||
.playpen-view {
|
||||
padding: 6px;
|
||||
padding: 6px 6px 6px 0;
|
||||
}
|
||||
|
||||
/* Paned itself draws nothing; the panes inside it carry the styling. */
|
||||
@@ -724,6 +724,18 @@ dnd.playpen-tab-drag {
|
||||
box-shadow: inset 0 0 0 1px @pp_accent;
|
||||
}
|
||||
|
||||
/* The divider between the sidebar and the content: the gutter that was always
|
||||
there, made draggable. It paints as the backdrop so nothing looks different
|
||||
until it is hovered, the same way the pane dividers behave. */
|
||||
.playpen-root-split > separator {
|
||||
background-color: @pp_bg;
|
||||
min-width: 6px;
|
||||
}
|
||||
|
||||
.playpen-root-split > separator:hover {
|
||||
background-color: @pp_accent_muted;
|
||||
}
|
||||
|
||||
/* Divider between panes. Wide enough to grab without hunting for it. */
|
||||
.playpen-view paned > separator {
|
||||
background-color: @pp_bg;
|
||||
|
||||
Reference in New Issue
Block a user