Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
792638dd
Commit
792638dd
authored
Mar 16, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reimplement [14768] with a CSS. Patch by Laurent Mutricy.
parent
6829def4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
14 deletions
+20
-14
share/http/js/functions.js
share/http/js/functions.js
+12
-14
share/http/style.css
share/http/style.css
+8
-0
No files found.
share/http/js/functions.js
View file @
792638dd
...
@@ -434,19 +434,17 @@ function parse_status()
...
@@ -434,19 +434,17 @@ function parse_status()
}
}
if
(
status
.
getElementsByTagName
(
'
random
'
)[
0
].
firstChild
.
data
==
"
1
"
)
if
(
status
.
getElementsByTagName
(
'
random
'
)[
0
].
firstChild
.
data
==
"
1
"
)
document
.
getElementById
(
'
btn_shuffle
'
).
style
.
background
=
'
rgb( 170, 170, 170 )
'
;
document
.
getElementById
(
'
btn_shuffle
'
).
setAttribute
(
'
class
'
,
'
on
'
)
;
else
else
document
.
getElementById
(
'
btn_shuffle
'
).
style
.
background
=
''
;
document
.
getElementById
(
'
btn_shuffle
'
).
setAttribute
(
'
class
'
,
'
off
'
);
if
(
status
.
getElementsByTagName
(
'
loop
'
)[
0
].
firstChild
.
data
==
"
1
"
)
if
(
status
.
getElementsByTagName
(
'
loop
'
)[
0
].
firstChild
.
data
==
"
1
"
)
document
.
getElementById
(
'
btn_loop
'
).
style
.
background
=
'
rgb( 170, 170, 170 )
'
;
document
.
getElementById
(
'
btn_loop
'
).
setAttribute
(
'
class
'
,
'
on
'
)
;
else
else
document
.
getElementById
(
'
btn_loop
'
).
style
.
background
=
''
;
document
.
getElementById
(
'
btn_loop
'
).
setAttribute
(
'
class
'
,
'
off
'
);
if
(
status
.
getElementsByTagName
(
'
repeat
'
)[
0
].
firstChild
.
data
==
"
1
"
)
if
(
status
.
getElementsByTagName
(
'
repeat
'
)[
0
].
firstChild
.
data
==
"
1
"
)
document
.
getElementById
(
'
btn_repeat
'
).
style
.
background
=
'
rgb( 170, 170, 170 )
'
;
document
.
getElementById
(
'
btn_repeat
'
).
setAttribute
(
'
class
'
,
'
on
'
)
;
else
else
document
.
getElementById
(
'
btn_repeat
'
).
style
.
background
=
''
;
document
.
getElementById
(
'
btn_repeat
'
).
setAttribute
(
'
class
'
,
'
off
'
)
;
var
tree
=
document
.
createElement
(
"
ul
"
);
var
tree
=
document
.
createElement
(
"
ul
"
);
var
categories
=
status
.
getElementsByTagName
(
'
category
'
);
var
categories
=
status
.
getElementsByTagName
(
'
category
'
);
...
...
share/http/style.css
View file @
792638dd
...
@@ -179,3 +179,11 @@ div.mosaic_row {
...
@@ -179,3 +179,11 @@ div.mosaic_row {
padding
:
0.3em
0.3em
;
padding
:
0.3em
0.3em
;
background-color
:
#dfd
;
background-color
:
#dfd
;
}
}
div
.controls
button
.on
{
background-color
:
#aaa
;
}
div
.controls
button
.off
{
background-color
:
#fff
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment