Skip to content

Commit df4e757

Browse files
committed
refactor
1 parent efb0e7b commit df4e757

38 files changed

+5044
-988
lines changed

NAVPERS 1610-2_RE 11-11.pdf

228 KB
Binary file not shown.

NAVPERS 1616-27 CHIEF.pdf

341 KB
Binary file not shown.

css/buttonBar.css

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
.action-btn {
2+
margin: 15px 5px 15px 5px;
3+
}
4+
5+
#logout-btn {
6+
position: relative;
7+
display: none;
8+
}
9+
10+
#logout-loader-aspect {
11+
position: absolute;
12+
top: 50%;
13+
left: 50%;
14+
transform: translateY(-50%) translateX(-50%);
15+
width: 20px;
16+
height: 20px;
17+
display: none;
18+
}
19+
20+
#login-btn {
21+
position: relative;
22+
display: none;
23+
}
24+
25+
#login-loader-aspect {
26+
position: absolute;
27+
top: 50%;
28+
left: 50%;
29+
transform: translateY(-50%) translateX(-50%);
30+
width: 20px;
31+
height: 20px;
32+
display: none;
33+
34+
/*-ms-transform: translateY(-50%) translateX(-50%);*/
35+
}
36+
37+
#user-btn {
38+
position: relative;
39+
display: none;
40+
}
41+
42+
#user-loader-aspect {
43+
position: absolute;
44+
top: 50%;
45+
left: 50%;
46+
transform: translateY(-50%) translateX(-50%);
47+
width: 20px;
48+
height: 20px;
49+
display: none;
50+
}
51+
52+
#import-btn {
53+
position: relative;
54+
}
55+
56+
#import-loader-aspect {
57+
position: absolute;
58+
top: 50%;
59+
left: 50%;
60+
transform: translateY(-50%) translateX(-50%);
61+
width: 20px;
62+
height: 20px;
63+
display: none;
64+
65+
/*-ms-transform: translateY(-50%) translateX(-50%);*/
66+
}
67+
68+
#new-file-btn {
69+
position: relative;
70+
}
71+
72+
#new-file-loader-aspect {
73+
position: absolute;
74+
top: 50%;
75+
left: 50%;
76+
transform: translateY(-50%) translateX(-50%);
77+
width: 20px;
78+
height: 20px;
79+
display: none;
80+
}

css/file.css

+14
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@
2525
display: none;
2626
}
2727

28+
#navfit-json-btn {
29+
position: relative;
30+
}
31+
32+
#navfit-json-loader-aspect {
33+
position: absolute;
34+
top: 50%;
35+
left: 50%;
36+
transform: translateY(-50%) translateX(-50%);
37+
width: 20px;
38+
height: 20px;
39+
display: none;
40+
}
41+
2842
#export-btn {
2943
position: relative;
3044
}

css/folders.css

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
#folders-container {
1+
#folders-container-area {
22
position: relative;
33
background: #aaa;
4-
overflow-y: scroll;
54
height: 50%;
65
width: 100%;
76
float:left;
7+
}
88

9+
#folders-container {
10+
position: relative;
11+
overflow-y: scroll;
912
}
1013

1114
.folder-row {

css/font-awesome.min.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/generalAlerts.css

+44
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,48 @@
3232
#success-alert {
3333
min-width: 90%;
3434
}
35+
}
36+
37+
#warn-alert {
38+
position: fixed;
39+
top: 10px;
40+
margin:auto;
41+
width: 50%;
42+
min-width: 375px;
43+
z-index: 100;
44+
left: 0;
45+
right: 0;
46+
display: none;
47+
}
48+
49+
#warn-link {
50+
width: 100%;
51+
}
52+
53+
@media screen and (max-width: 480px) {
54+
#warn-alert {
55+
min-width: 90%;
56+
}
57+
}
58+
59+
#textarea-alert {
60+
position: fixed;
61+
top: 10px;
62+
margin:auto;
63+
width: 50%;
64+
min-width: 375px;
65+
z-index: 100;
66+
left: 0;
67+
right: 0;
68+
display: none;
69+
}
70+
71+
#textarea-data {
72+
width: 100%;
73+
}
74+
75+
@media screen and (max-width: 480px) {
76+
#textarea-alert {
77+
min-width: 90%;
78+
}
3579
}

css/generalElements.css

+57-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
i {
2+
text-decoration: none;
3+
}
14
.logo-64 {
25
position: absolute;
36
display: inline-block;
47
width: 64px;
58
height: 64px;
9+
display: none;
610

711
background-image: url('../assets/img/navfit99-64.png');
812
background-repeat: no-repeat;
@@ -13,11 +17,48 @@
1317
width: 100%;
1418
text-align: center;
1519
margin-bottom: 0;
20+
display: none;
21+
}
22+
23+
#main-logo {
24+
position: relative;
25+
margin: auto;
26+
width: 256px;
27+
height: 256px;
28+
29+
background-image: url('../assets/img/navfit99-256.png');
30+
background-repeat: no-repeat;
31+
/*background-size: contain;*/ /* for modern browsers and mobile */
32+
}
33+
34+
#main-title {
35+
position: absolute;
36+
bottom: 0;
37+
width: 100%;
38+
text-align: center;
39+
margin-bottom: 0;
1640
}
1741

18-
.action-btn {
19-
margin: 15px 5px 15px 5px;
42+
#main-title-number {
43+
font-size: small;
2044
}
45+
46+
#main-title-plus {
47+
position: absolute;
48+
right: 5%;
49+
bottom: 5%;
50+
transform: rotate(10deg);
51+
color: #D12B2B;
52+
font-weight: bolder;
53+
font-family: Impact, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Arial Black", "sans serif";
54+
}
55+
56+
#main-tagline {
57+
text-align: center;
58+
margin-top: 0;
59+
}
60+
61+
2162
.button-bar {
2263
display: table;
2364
margin: 0 auto;
@@ -40,4 +81,17 @@
4081
@keyframes spin {
4182
0% { transform: rotate(0deg); }
4283
100% { transform: rotate(360deg); }
43-
}
84+
}
85+
86+
.disclaimer {
87+
position: fixed;
88+
top: 10px;
89+
left: 50%;
90+
margin:auto;
91+
width: 80%;
92+
z-index: 100;
93+
left: 0;
94+
right: 0;
95+
max-height: 100%;
96+
overflow-y: scroll;
97+
}

css/main.css

-41
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
1-
.disclaimer {
2-
position: fixed;
3-
top: 10px;
4-
left: 50%;
5-
margin:auto;
6-
width: 80%;
7-
z-index: 100;
8-
left: 0;
9-
right: 0;
10-
max-height: 100%;
11-
overflow-y: scroll;
12-
}
13-
141
#import-alert {
152
position: fixed;
163
top: 10px;
@@ -23,35 +10,7 @@
2310
display: none;
2411
}
2512

26-
#import-btn {
27-
position: relative;
28-
}
29-
30-
#import-loader-aspect {
31-
position: absolute;
32-
top: 50%;
33-
left: 50%;
34-
transform: translateY(-50%) translateX(-50%);
35-
width: 20px;
36-
height: 20px;
37-
display: none;
38-
39-
/*-ms-transform: translateY(-50%) translateX(-50%);*/
40-
}
4113

42-
#new-file-btn {
43-
position: relative;
44-
}
45-
46-
#new-file-loader-aspect {
47-
position: absolute;
48-
top: 50%;
49-
left: 50%;
50-
transform: translateY(-50%) translateX(-50%);
51-
width: 20px;
52-
height: 20px;
53-
display: none;
54-
}
5514

5615
#edit-alert {
5716
position: fixed;

css/report-detail.css

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
.metadata-row {
2+
display: block;
3+
padding: 10px;
4+
background-color: #FFEEBC;
5+
}
6+
.metadata-row>label {
7+
margin: 0px;
8+
}
9+
110
.fields-row {
211
display: block;
312
}
@@ -16,5 +25,5 @@
1625
}
1726

1827
.field-block>label {
19-
display: block;
28+
display: block; /* keep each radio button and label on separate line */
2029
}

css/reports.css

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
#reports-container {
1+
#reports-container-area {
22
position: relative;
33
background: #888;
4-
overflow-y: scroll;
54
height: 50%;
65
width: 100%;
76
float:left;
87
}
98

9+
#reports-container {
10+
position: relative;
11+
overflow-y: scroll;
12+
}
13+
1014
.report-row {
1115
width: 100%;
1216
background-color: #3656A2;

css/user.css

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#filelist-container {
2+
position: relative;
3+
}
4+
5+
#filelist-loader-aspect {
6+
position: absolute;
7+
top: 50%;
8+
left: 50%;
9+
transform: translateY(-50%) translateX(-50%);
10+
width: 100px;
11+
height: 100px;
12+
display: none;
13+
}
14+
15+
.filelist-btn {
16+
width: 100%;
17+
margin-top: 5px;
18+
margin-bottom: 5px;
19+
}

0 commit comments

Comments
 (0)