Misc. style changes to increase density

feature/core
Sven Slootweg 6 years ago
parent 1751fb2f86
commit 000acb7cb6

@ -37,7 +37,7 @@
.windowManager .fixedAreas .sidebar .window {
position: static;
/* FIXME: Below 19px should become 9px, once there's a way to account for the scrollbar that may be visible. */
margin: 0px 19px 12px 9px; }
margin: 4px 19px 0px 9px; }
.window {
position: fixed;
@ -88,6 +88,7 @@
line-height: 1; }
.window .body {
position: relative;
font-size: 14px;
background-color: #F7F7F0;
border: 1px solid gray;
border-top: none; }

@ -90,8 +90,8 @@ let App = createReactClass({
if (action.type === "open") {
this.state.windows.add({
title: "New",
initialWidth: defaultValue(action.options.width, 400),
initialHeight: defaultValue(action.options.height, 300),
initialWidth: defaultValue(action.options.width, 300),
initialHeight: defaultValue(action.options.height, 220),
initialX: defaultValue(action.options.x, 20),
initialY: defaultValue(action.options.y, 100),
resizable: defaultValue(action.options.resizable, true),

@ -63,7 +63,7 @@
.window {
position: static;
/* FIXME: Below 19px should become 9px, once there's a way to account for the scrollbar that may be visible. */
margin: 0px 19px 12px 9px;
margin: 4px 19px 0px 9px;
}
}
}
@ -147,6 +147,7 @@
.body {
position: relative;
font-size: 14px;
background-color: #F7F7F0;
border: 1px solid gray;

Loading…
Cancel
Save