Browse Source

UI-942: Changed the font color inside the input for the max duration in ring group & find-me-follow-me feature, and auto select the content of the input on focus

4.3
Maxime Roux 11 years ago
parent
commit
316d50f5bb
4 changed files with 15 additions and 11 deletions
  1. +5
    -4
      submodules/groups/groups.css
  2. +3
    -2
      submodules/groups/groups.js
  3. +4
    -3
      submodules/users/users.css
  4. +3
    -2
      submodules/users/users.js

+ 5
- 4
submodules/groups/groups.css View File

@ -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;


+ 3
- 2
submodules/groups/groups.js View File

@ -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();
});


+ 4
- 3
submodules/users/users.css View File

@ -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;


+ 3
- 2
submodules/users/users.js View File

@ -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();
});


Loading…
Cancel
Save