mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 03:17:02 +02:00
Increase margin at bottom of users.js
This commit is contained in:
parent
773529c799
commit
284b458148
1 changed files with 6 additions and 5 deletions
|
@ -228,7 +228,7 @@ var usersWindow = (function () {
|
||||||
|
|
||||||
var WINDOW_WIDTH = 260,
|
var WINDOW_WIDTH = 260,
|
||||||
WINDOW_MARGIN = 12,
|
WINDOW_MARGIN = 12,
|
||||||
WINDOW_BASE_MARGIN = 6, // A little less is needed in order look correct
|
WINDOW_BASE_MARGIN = 24, // A little less is needed in order look correct
|
||||||
WINDOW_FONT = {
|
WINDOW_FONT = {
|
||||||
size: 12
|
size: 12
|
||||||
},
|
},
|
||||||
|
@ -254,10 +254,11 @@ var usersWindow = (function () {
|
||||||
windowHeading,
|
windowHeading,
|
||||||
|
|
||||||
// Window border is similar to that of edit.js.
|
// Window border is similar to that of edit.js.
|
||||||
WINDOW_BORDER_WIDTH = WINDOW_WIDTH + 2 * WINDOW_BASE_MARGIN,
|
WINDOW_MARGIN_HALF = WINDOW_MARGIN / 2,
|
||||||
WINDOW_BORDER_TOP_MARGIN = 2 * WINDOW_BASE_MARGIN,
|
WINDOW_BORDER_WIDTH = WINDOW_WIDTH + 2 * WINDOW_MARGIN_HALF,
|
||||||
WINDOW_BORDER_BOTTOM_MARGIN = WINDOW_BASE_MARGIN,
|
WINDOW_BORDER_TOP_MARGIN = 2 * WINDOW_MARGIN_HALF,
|
||||||
WINDOW_BORDER_LEFT_MARGIN = WINDOW_BASE_MARGIN,
|
WINDOW_BORDER_BOTTOM_MARGIN = WINDOW_MARGIN_HALF,
|
||||||
|
WINDOW_BORDER_LEFT_MARGIN = WINDOW_MARGIN_HALF,
|
||||||
WINDOW_BORDER_RADIUS = 4,
|
WINDOW_BORDER_RADIUS = 4,
|
||||||
WINDOW_BORDER_COLOR = { red: 255, green: 255, blue: 255 },
|
WINDOW_BORDER_COLOR = { red: 255, green: 255, blue: 255 },
|
||||||
WINDOW_BORDER_ALPHA = 0.5,
|
WINDOW_BORDER_ALPHA = 0.5,
|
||||||
|
|
Loading…
Reference in a new issue