diff --git a/submodules/groups/groups.css b/submodules/groups/groups.css index a947f83..14ba3ab 100644 --- a/submodules/groups/groups.css +++ b/submodules/groups/groups.css @@ -275,18 +275,19 @@ #groups_container .detail-group .grid-time .group-row.title .scale-max { border: solid 1px #22ccff; border-radius: 4px; - padding: 0px 2px; + padding: 0px 4px; cursor: pointer; + top: -21px; } #groups_container .detail-group .grid-time .group-row.title .scale-max-input { display: none; position: absolute; - top: -20px; + top: -21px; right: -24px; - color: #999; + color: #333; font-size: 12px; - width: 42px; + width: 35px; height: 12px; text-align: center; margin: 0; diff --git a/submodules/groups/groups.js b/submodules/groups/groups.js index 0967c58..b01ef0a 100644 --- a/submodules/groups/groups.js +++ b/submodules/groups/groups.js @@ -1127,8 +1127,9 @@ define(function(require){ var $this = $(this), input = $this.siblings('.scale-max-input'); - input.show(); - input.focus(); + input.show() + .focus() + .select(); $this.hide(); }); diff --git a/submodules/users/users.css b/submodules/users/users.css index c3f8623..8e6f99d 100644 --- a/submodules/users/users.css +++ b/submodules/users/users.css @@ -799,16 +799,17 @@ #find_me_follow_me_form .grid-time .device-row.title .scale-max { border: solid 1px #22ccff; border-radius: 4px; - padding: 0px 2px; + padding: 0px 4px; cursor: pointer; + top: -21px; } #find_me_follow_me_form .grid-time .device-row.title .scale-max-input { display: none; position: absolute; - top: -20px; + top: -21px; right: -24px; - color: #999; + color: #333; font-size: 12px; width: 35px; height: 12px; diff --git a/submodules/users/users.js b/submodules/users/users.js index 9e529dd..8bdeeb8 100644 --- a/submodules/users/users.js +++ b/submodules/users/users.js @@ -2036,8 +2036,9 @@ define(function(require){ var $this = $(this), input = $this.siblings('.scale-max-input'); - input.show(); - input.focus(); + input.show() + .focus() + .select(); $this.hide(); });