Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
SemWeb
libview
Commits
691d1ce23483
Commit
8184ff42
authored
Oct 25, 2018
by
Laurent Wouters
Browse files
[fix] Factorizing data
parent
ad35ffef24ff
Changes
5
Hide whitespace changes
Inline
Side-by-side
extension/src/
options
/index.html
→
extension/src/
common/config
/index.html
View file @
691d1ce2
File moved
extension/src/
options
/main.css
→
extension/src/
common/config
/main.css
View file @
691d1ce2
File moved
extension/src/popup/index.html
deleted
100644 → 0
View file @
ad35ffef
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"description"
content=
""
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<link
rel=
"stylesheet"
href=
"bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"main.css"
>
<title>
Linked Data Browser
</title>
</head>
<body>
<div
id=
"root"
></div>
<script
type=
"text/javascript"
src=
"bootstrap.min.js"
></script>
<script
type=
"text/javascript"
src=
"main.js"
></script></body>
</html>
\ No newline at end of file
extension/src/popup/main.css
deleted
100644 → 0
View file @
ad35ffef
#root
{
width
:
400pt
;
margin
:
10pt
;
font-size
:
12pt
;
}
select
,
option
,
input
{
font-size
:
10pt
;
}
/* The switch - the box around the slider */
.switch
{
position
:
relative
;
display
:
inline-block
;
width
:
30px
;
height
:
17px
;
}
/* Hide default HTML checkbox */
.switch
input
{
display
:
none
;
}
/* The slider */
.slider
{
position
:
absolute
;
cursor
:
pointer
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;
background-color
:
#ccc
;
-webkit-transition
:
0.4s
;
transition
:
0.4s
;
}
.slider
:before
{
position
:
absolute
;
content
:
""
;
height
:
13px
;
width
:
13px
;
left
:
2px
;
bottom
:
2px
;
background-color
:
white
;
-webkit-transition
:
0.4s
;
transition
:
0.4s
;
}
input
:checked
+
.slider
{
background-color
:
#2196f3
;
}
input
:focus
+
.slider
{
box-shadow
:
0
0
1px
#2196f3
;
}
input
:checked
+
.slider
:before
{
-webkit-transform
:
translateX
(
13px
);
-ms-transform
:
translateX
(
13px
);
transform
:
translateX
(
13px
);
}
/* Rounded sliders */
.slider.round
{
border-radius
:
17px
;
}
.slider.round
:before
{
border-radius
:
50%
;
}
extension/webpack.config.js
View file @
691d1ce2
...
...
@@ -154,10 +154,10 @@ module.exports = [
new
CopyWebpackPlugin
(
[
{
from
:
"
src/
popup
/index.html
"
,
from
:
"
src/
common/config
/index.html
"
,
to
:
"
popup/index.html
"
},
{
from
:
"
src/
popup
/main.css
"
,
to
:
"
popup/main.css
"
},
{
from
:
"
src/
common/config
/main.css
"
,
to
:
"
popup/main.css
"
},
{
from
:
"
node_modules/bootstrap/dist/css/bootstrap.min.css
"
,
to
:
"
popup/bootstrap.min.css
"
...
...
@@ -196,10 +196,10 @@ module.exports = [
new
CopyWebpackPlugin
(
[
{
from
:
"
src/
options
/index.html
"
,
from
:
"
src/
common/config
/index.html
"
,
to
:
"
options/index.html
"
},
{
from
:
"
src/
options
/main.css
"
,
to
:
"
options/main.css
"
},
{
from
:
"
src/
common/config
/main.css
"
,
to
:
"
options/main.css
"
},
{
from
:
"
node_modules/bootstrap/dist/css/bootstrap.min.css
"
,
to
:
"
options/bootstrap.min.css
"
...
...
Write
Preview
Supports
Markdown
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