Skip to content
This repository was archived by the owner on Nov 22, 2019. It is now read-only.

Commit 3b7fd92

Browse files
author
mfe
committed
Merge branch 'release/0.6'
2 parents eb18743 + 022abeb commit 3b7fd92

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

plotThatLut/css/style.css

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ body {
22
margin: 0;
33
font-family: Verdana;
44
font-size: 14px;
5-
color: #666;
6-
background-color: #fff;
5+
color: #999;
6+
background-color: #222;
77
}
88

99
a:link {color: #666;} /* unvisited link */
@@ -12,12 +12,13 @@ a:hover {color: #666;} /* mouse over link */
1212
a:active {color: #666;} /* selected link */
1313

1414
#header{
15-
background-color: #ccc;
16-
color: #fff;
15+
background-color: #555;
16+
color: #999;
1717
font-family: Arial;
1818
padding-left: 10px;
1919
padding-top: 5px;
2020
padding-bottom: 5px;
21+
border-radius: 10px;
2122
}
2223

2324
#text{
@@ -40,12 +41,15 @@ a:active {color: #666;} /* selected link */
4041
}
4142

4243
#advanced {
43-
background-color: #eee;
44-
padding-left: 10px;
44+
background-color: #333;
45+
padding-left: 5px;
4546
padding-top: 5px;
4647
padding-bottom: 5px;
48+
border-style: dashed;
49+
border-width: 1px;
50+
border-radius: 10px;
4751
}
4852

4953
input[type="file"] {
5054
width: 80%
51-
}
55+
}

plotThatLut/icons/favicon.ico

2.26 KB
Binary file not shown.

plotThatLut/plot_that_lut_web.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,11 @@ def upload(self, lutfile, lut_type, count, custom_count, inverse=False,
208208
'/uploads': {'tools.staticdir.on': True,
209209
'tools.staticdir.dir': path.join(currdir, 'uploads'
210210
)
211-
}
211+
},
212+
'/favicon.ico': {'tools.staticfile.on': True,
213+
'tools.staticfile.filename':
214+
path.join(currdir, 'icons', 'favicon.ico')
215+
}
212216
}
213217

214218
sys.path.append(currdir)

0 commit comments

Comments
 (0)