Skip to content

Commit 6854c9e

Browse files
authored
Merge branch 'master' into remove-python_2_unicode_compatible
2 parents 35bb9e9 + 73639d4 commit 6854c9e

File tree

6 files changed

+817
-497
lines changed

6 files changed

+817
-497
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ debug.log
7878

7979
# Node modules & bower components
8080
junction/static/node_modules/
81-
junction/static/bower_components/
81+
junction/static/bower_components
8282
_docs_html/
8383

8484
# generated by unit tests

junction/static/bower.json

-16
This file was deleted.

junction/static/css/app.css

+6-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap v3.3.6 (http://getbootstrap.com)
3-
* Copyright 2011-2015 Twitter, Inc.
2+
* Bootstrap v3.3.7 (http://getbootstrap.com)
3+
* Copyright 2011-2016 Twitter, Inc.
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
55
*/
66
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@@ -1095,7 +1095,6 @@ a:focus {
10951095
text-decoration: underline;
10961096
}
10971097
a:focus {
1098-
outline: thin dotted;
10991098
outline: 5px auto -webkit-focus-ring-color;
11001099
outline-offset: -2px;
11011100
}
@@ -2524,7 +2523,6 @@ select[size] {
25242523
input[type="file"]:focus,
25252524
input[type="radio"]:focus,
25262525
input[type="checkbox"]:focus {
2527-
outline: thin dotted;
25282526
outline: 5px auto -webkit-focus-ring-color;
25292527
outline-offset: -2px;
25302528
}
@@ -2623,17 +2621,10 @@ input[type="search"] {
26232621
.radio,
26242622
.checkbox {
26252623
position: relative;
2626-
display: inline;
2624+
display: block;
26272625
margin-top: 10px;
26282626
margin-bottom: 10px;
26292627
}
2630-
form#reviewer-vote .radio {
2631-
position: inherit;
2632-
display: block;
2633-
}
2634-
form#reviewer-vote label.control-label{
2635-
text-align: left;
2636-
}
26372628
.radio label,
26382629
.checkbox label {
26392630
min-height: 20px;
@@ -3022,7 +3013,6 @@ select[multiple].input-lg {
30223013
.btn.focus,
30233014
.btn:active.focus,
30243015
.btn.active.focus {
3025-
outline: thin dotted;
30263016
outline: 5px auto -webkit-focus-ring-color;
30273017
outline-offset: -2px;
30283018
}
@@ -8490,6 +8480,9 @@ input#id_remember {
84908480
.green {
84918481
color: green;
84928482
}
8483+
.spam {
8484+
background-color: #b3a6a6;
8485+
}
84938486
.align-bottom {
84948487
vertical-align: bottom;
84958488
}
@@ -9000,6 +8993,3 @@ textarea.review-form select {
90008993
.dropdown {
90018994
margin-left: 10px;
90028995
}
9003-
.spam{
9004-
background-color: #b3a6a6;
9005-
}

junction/static/less/ui.less

+4
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,7 @@ input#id_remember {
6868
.green {
6969
color: green;
7070
}
71+
72+
.spam{
73+
background-color: #b3a6a6;
74+
}

junction/static/package.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
{
22
"engines": {
3-
"node": ">= 0.10.0"
3+
"node": ">= 0.10.0",
4+
"yarn": ">= 1.0.0"
45
},
56
"devDependencies": {
67
"grunt": "^0.4.5",
78
"grunt-contrib-jshint": "~0.10.0",
89
"grunt-contrib-less": "^1.0.0",
910
"grunt-contrib-nodeunit": "~0.4.1",
1011
"grunt-contrib-watch": "~0.6.1"
11-
}
12+
},
13+
"dependencies": {
14+
"@bower_components/bootstrap": "twbs/bootstrap#~3.3.2",
15+
"@bower_components/font-awesome": "FortAwesome/Font-Awesome#~4.2.0",
16+
"@bower_components/jquery": "jquery/jquery-dist#1.9.1 - 3"
17+
},
18+
"scripts": {
19+
"postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'bower_components', 'junction') } catch (e) { }\""
20+
},
21+
"license": "MIT"
1222
}

0 commit comments

Comments
 (0)