Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
B
Backend Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
SpinShare
Backend Server
Commits
9e3fdfa8
Commit
9e3fdfa8
authored
Jun 04, 2020
by
SpinShare
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added input style
parent
6561da64
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
0 deletions
+64
-0
public/assets/css/main.css
public/assets/css/main.css
+32
-0
public/assets/css/main.less
public/assets/css/main.less
+32
-0
No files found.
public/assets/css/main.css
View file @
9e3fdfa8
...
...
@@ -110,6 +110,38 @@ button.button-label:active,
color
:
#222
;
cursor
:
pointer
;
}
input
[
type
=
'range'
]
{
overflow
:
hidden
;
width
:
100%
;
outline
:
none
;
-webkit-appearance
:
none
;
background-color
:
#ddd
;
}
input
[
type
=
'range'
]
::-webkit-slider-runnable-track
{
height
:
10px
;
-webkit-appearance
:
none
;
color
:
#13bba4
;
margin-top
:
-1px
;
}
input
[
type
=
'range'
]
::-webkit-slider-thumb
{
width
:
10px
;
-webkit-appearance
:
none
;
height
:
10px
;
cursor
:
ew-resize
;
background
:
#000
;
box-shadow
:
-800px
0
0
800px
#e22c78
;
}
/** FF*/
input
[
type
=
"range"
]
::-moz-range-progress
{
background-color
:
#e22c78
;
}
input
[
type
=
"range"
]
::-moz-range-track
{
background-color
:
#ddd
;
}
/* IE*/
input
[
type
=
"range"
]
::-ms-fill-lower
{
background-color
:
#e22c78
;
}
.song-row
{
display
:
grid
;
grid-template-rows
:
auto
1
fr
;
...
...
public/assets/css/main.less
View file @
9e3fdfa8
...
...
@@ -112,6 +112,38 @@ button, .button {
}
}
}
input[type='range'] {
overflow: hidden;
width: 100%;
outline: none;
-webkit-appearance: none;
background-color: #ddd;
}
input[type='range']::-webkit-slider-runnable-track {
height: 10px;
-webkit-appearance: none;
color: #13bba4;
margin-top: -1px;
}
input[type='range']::-webkit-slider-thumb {
width: 10px;
-webkit-appearance: none;
height: 10px;
cursor: ew-resize;
background: #000;
box-shadow: -800px 0 0 800px rgb(226, 44, 120);
}
/** FF*/
input[type="range"]::-moz-range-progress {
background-color: rgb(226, 44, 120);
}
input[type="range"]::-moz-range-track {
background-color: #ddd;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
background-color: rgb(226, 44, 120);
}
.song-row {
display: grid;
grid-template-rows: auto 1fr;
...
...
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