This website works better with JavaScript.
Home
Explore
Help
Sign In
ruhnet
/
monster-ui-voip
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
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
864c54c0c4
commit
316d50f5bb
4 changed files
with
15 additions
and
11 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-4
submodules/groups/groups.css
+3
-2
submodules/groups/groups.js
+4
-3
submodules/users/users.css
+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
2
px
;
padding
:
0px
4
px
;
cursor
:
pointer
;
top
:
-21px
;
}
#
groups_container
.
detail-group
.
grid-time
.
group-row
.
title
.
scale-max-input
{
display
:
none
;
position
:
absolute
;
top
:
-2
0
px
;
top
:
-2
1
px
;
right
:
-24px
;
color
:
#
999
;
color
:
#
333
;
font-size
:
12px
;
width
:
42
px
;
width
:
35
px
;
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
2
px
;
padding
:
0px
4
px
;
cursor
:
pointer
;
top
:
-21px
;
}
#
find_me_follow_me_form
.
grid-time
.
device-row
.
title
.
scale-max-input
{
display
:
none
;
position
:
absolute
;
top
:
-2
0
px
;
top
:
-2
1
px
;
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
(
)
;
}
)
;
Write
Preview
Loading…
Cancel
Save