Skip to content

Commit fb634a6

Browse files
committed
updated css stuff and removed more gulp things
1 parent 9435402 commit fb634a6

File tree

5 files changed

+9
-43
lines changed

5 files changed

+9
-43
lines changed

build-css.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const { exec } = require('child_process');
2-
const fs = require('fs');
32
const path = require('path');
43

54
// yes I know this is awkward. I want to actually use the node libraries but that gets SUBSTANTIALLY easier when node and all the dependinces are updated
@@ -34,15 +33,6 @@ function compileFile(file) {
3433
})
3534
}
3635

37-
exec("pwd", (error, stdout, stderr) => {
38-
console.log(`stdout: ${stdout}`);
39-
console.error(`stderr: ${stderr}`);
40-
if (error) {
41-
console.error(`exec error: ${error}`);
42-
throw error;
43-
}
44-
})
45-
4636
exec("mkdir -p " + path.resolve("conditional/static/css"))
4737

4838
compileFile("app")

frontend/stylesheets/components/_reveal.scss

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -123,22 +123,6 @@ $yellow: #f1c40f;
123123
font-weight: lighter;
124124
}
125125
}
126-
& .icon {
127-
position: absolute;
128-
top: -40px;
129-
left: calc(50% - 40px);
130-
border-radius: 50%;
131-
background: $red;
132-
width: 80px;
133-
height: 80px;
134-
line-height: 80px;
135-
color: #fff;
136-
font-family: 'Glyphicons Halflings';
137-
font-size: 40px;
138-
&.passed {
139-
background: $green;
140-
}
141-
}
142126
& .more {
143127
padding: 10px;
144128
text-align: left;

frontend/stylesheets/pages/_errors.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.error-page {
22
padding-top: 80px;
33

4-
.glyphicon,
4+
.bi,
55
h1,
66
h2,
77
h3,

frontend/stylesheets/pages/_evals.scss

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@
2525

2626
.eval-user-status {
2727
display: block;
28+
position: relative;
29+
font-weight: 400;
2830
float: right;
2931
margin: -25px 5px;
3032
border-radius: 50%;
3133
padding: 6px;
3234
width: 25px;
3335
height: 25px;
36+
37+
&:before {
38+
vertical-align: .25em;
39+
}
3440
}
3541

3642
.col-sm-2 {
@@ -66,12 +72,12 @@
6672
}
6773

6874
&[aria-expanded="true"] {
69-
span.glyphicon {
75+
i.bi {
7076
transform: rotate(180deg);
7177
}
7278
}
7379

74-
span.glyphicon {
80+
i.bi {
7581
transition: transform ease-in-out 0.2s;
7682
transform: rotate(0deg);
7783
}

frontend/stylesheets/partials/_global.scss

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,6 @@
4040
}
4141
}
4242

43-
.glyphicon {
44-
&.green {
45-
color: #4da74d;
46-
}
47-
48-
&.red {
49-
color: #cb4b4b;
50-
}
51-
52-
&.yellow {
53-
color: #f1c40f;
54-
}
55-
}
56-
5743
.danger {
5844
background-color: #ff262d;
5945
}

0 commit comments

Comments
 (0)