mirror of https://github.com/docker/docs.git
UI tweaks
This commit is contained in:
parent
fd30c0fef6
commit
c6b88acaef
|
|
@ -27,7 +27,7 @@ app.on('open-url', function (event, url) {
|
||||||
app.on('ready', function () {
|
app.on('ready', function () {
|
||||||
var mainWindow = new BrowserWindow({
|
var mainWindow = new BrowserWindow({
|
||||||
width: size.width || 1000,
|
width: size.width || 1000,
|
||||||
height: size.height || 600,
|
height: size.height || 780,
|
||||||
'min-width': 1000,
|
'min-width': 1000,
|
||||||
'min-height': 600,
|
'min-height': 600,
|
||||||
'standard-window': false,
|
'standard-window': false,
|
||||||
|
|
|
||||||
|
|
@ -390,7 +390,7 @@ export default {
|
||||||
// Assign to a column if not done yet
|
// Assign to a column if not done yet
|
||||||
if (!layerProgress[data.id].column) {
|
if (!layerProgress[data.id].column) {
|
||||||
// test if we can still add layers to that column
|
// test if we can still add layers to that column
|
||||||
if (columns.progress[columns.toFill].nbLayers === columns.progress[columns.toFill].maxLayers) {
|
if (columns.progress[columns.toFill].nbLayers === columns.progress[columns.toFill].maxLayers && columns.toFill < columns.amount - 1) {
|
||||||
columns.toFill++;
|
columns.toFill++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -245,7 +245,7 @@
|
||||||
|
|
||||||
.sidebar-buttons {
|
.sidebar-buttons {
|
||||||
border-top: 1px solid #F0F4F8;
|
border-top: 1px solid #F0F4F8;
|
||||||
min-height: 36px;
|
min-height: 48px;
|
||||||
flex: 0 auto;
|
flex: 0 auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
@ -258,7 +258,7 @@
|
||||||
height: 18px;
|
height: 18px;
|
||||||
}
|
}
|
||||||
.btn-sidebar {
|
.btn-sidebar {
|
||||||
font-size: 11px;
|
font-size: 13px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: @brand-primary;
|
color: @brand-primary;
|
||||||
|
|
||||||
|
|
@ -266,7 +266,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
min-width: 44px;
|
min-width: 48px;
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
img, .text {
|
img, .text {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue