Marthee commited on
Commit
8b454b3
·
1 Parent(s): 3e47d76

Upload 16 files

Browse files
static/LegendPageStyle.css ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*Narbar on top of the page of the legend*/
2
+ .graynavbarLegend{
3
+ background-color: #b2b2b2;
4
+ height: 35px;
5
+ position: relative;
6
+ }
7
+
8
+ .graynavbarLegend label{
9
+ float: left;
10
+ display: block;
11
+ color: black;
12
+ text-align: center;
13
+ /* padding: 7px 16px; */
14
+ text-decoration: none;
15
+ font-family: "acumin-pro", sans-serif;
16
+ font-weight: 400;
17
+ font-style: normal;
18
+ font-size: 16px;
19
+ margin-left: 7px;
20
+
21
+ }
22
+
23
+ .graynavbarLegend .label2{
24
+ color: blue;
25
+ }
26
+
27
+ /*Sorting buttons*/
28
+
29
+ .sortbutton{
30
+ background-color: transparent;
31
+ border: transparent;
32
+ }
33
+
34
+ /******************************/
35
+ #createdTimeDiv{
36
+ vertical-align: top;
37
+ display: inline-block;
38
+ }
39
+
40
+ #prjname, #prjpart, #prjsec{
41
+ font-size: 15px;
42
+ font-family: "acumin-pro", sans-serif;
43
+ margin-bottom: 10px;
44
+ margin-left: 5px;
45
+ cursor: pointer;
46
+ font-weight: bold;
47
+
48
+
49
+ }
50
+ .legendtime{
51
+ margin-left: 54%;
52
+
53
+ }
54
+ .legendtime .EditTime{
55
+ margin-left: 90px;
56
+ }
57
+ #legendtimediv{
58
+ margin-left: 17%;
59
+ display: inline-block;
60
+ /* float: right; */
61
+ /* position: absolute; */
62
+
63
+ }
64
+
65
+ #legendtimediv:before {
66
+ content: '';
67
+ width: 10%;
68
+ min-width: 100px;
69
+ max-width: 200px;
70
+ display: inline-block;
71
+ }
72
+ #legendmodtime{
73
+ margin-left: 50px;
74
+ }
75
+ #legendmodtime:hover , #legendtime:hover , #legend:hover{
76
+ cursor: pointer;
77
+ }
78
+ #legendlbldivwhole:hover{
79
+ background-color: lightblue;
80
+ cursor: pointer;
81
+ font-family: "acumin-pro", sans-serif;
82
+
83
+ }
84
+ #legendlbldivwhole{
85
+ font-family: "acumin-pro", sans-serif;
86
+ }
87
+ .legendclass{
88
+ color: blue;
89
+ text-decoration-line: underline;
90
+ max-width: 40ch;
91
+ width:40ch;
92
+ word-wrap: break-word;
93
+ }
94
+ .infotip{
95
+ justify-content: center;
96
+ font-family: "acumin-pro", sans-serif;
97
+ color:red;
98
+ }
99
+ #CreatesortDesc , #EditsortDesc , #CreatesortAsc, #EditsortAsc{
100
+ margin-top: 5px;
101
+ }
102
+ #CreatesortDesc:hover , #EditsortDesc:hover , #CreatesortAsc:hover, #EditsortAsc:hover{
103
+ color:gray;
104
+ cursor: pointer;
105
+ }
static/LoadingCss.css ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
2
+ * {
3
+ padding: 0;
4
+ margin: 0;
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ body {
9
+ /* background-color: #151719; */
10
+ /* display: flex; */
11
+ justify-content: center;
12
+ align-items: center;
13
+ /* min-height: 100vh; */
14
+ }
15
+ .waviy {
16
+
17
+ position: relative;
18
+ margin-top: 25%;
19
+ margin-left: 35%;
20
+ -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
21
+ font-size: 60px;
22
+ }
23
+ .waviy span {
24
+ font-family: 'Alfa Slab One', cursive;
25
+ position: relative;
26
+ display: inline-block;
27
+ color: #fff;
28
+ text-transform: uppercase;
29
+ animation: waviy 1s infinite;
30
+ animation-delay: calc(.1s * var(--i));
31
+
32
+ }
33
+ @keyframes waviy {
34
+ 0%,40%,100% {
35
+ transform: translateY(0)
36
+ }
37
+ 20% {
38
+ transform: translateY(-20px)
39
+ }
40
+ }
static/MenuStyle.css ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ /********************************************************************/
3
+ /* Style the tab */
4
+ .tab {
5
+ overflow: hidden;
6
+ /* border: 1px solid black; */
7
+ background-color:black;
8
+ font-family: "acumin-pro", sans-serif;
9
+ }
10
+ .tab .dropbtn{
11
+ float:right
12
+ }
13
+ .tablinks{
14
+ color:white;
15
+ font-size: 18px;
16
+ }
17
+ /* Style the buttons that are used to open the tab content */
18
+ .tab button {
19
+ background-color: inherit;
20
+ float: left;
21
+ border: none;
22
+ outline: none;
23
+ cursor: pointer;
24
+ padding: 14px 16px;
25
+ transition: 0.3s;
26
+ }
27
+
28
+ /* Change background color of buttons on hover */
29
+ .tab button:hover {
30
+ background-color: rgb(0, 60, 255);
31
+ }
32
+
33
+ /* Create an active/current tablink class */
34
+ .tab button.active {
35
+ background-color: rgb(0, 60, 255);
36
+ }
37
+
38
+ /* Style the tab content */
39
+ .tabcontent {
40
+ display: none;
41
+ /* padding: 6px 12px; */
42
+ /* border: 1px solid #ccc; */
43
+ border-top: none;
44
+
45
+ }
46
+ /*********************************************************************/
47
+
48
+ .container {
49
+ /* display: inline-block; */
50
+ cursor: pointer;
51
+ margin-top: 5px;
52
+ display: block;
53
+ float: left;
54
+ margin-right: 5px;
55
+
56
+ }
57
+
58
+ .bar1, .bar2, .bar3 {
59
+ width: 30px;
60
+ height: 5px;
61
+ background-color: #fcfcfc;
62
+ margin: 5px 0;
63
+ transition: 0.4s;
64
+ margin-left: 5px;
65
+
66
+ }
67
+
68
+ .change .bar1 {
69
+ transform: translate(0, 10px) rotate(-45deg);
70
+ }
71
+
72
+ .change .bar2 {opacity: 0;}
73
+
74
+ .change .bar3 {
75
+ transform: translate(0, -10px) rotate(45deg);
76
+ }
77
+ /*Dashed Lines on the left - Menu icon */
78
+ #slider {
79
+ position: absolute;
80
+ width:400px;
81
+ height:900px;
82
+ background:rgb(179, 179, 179);
83
+ transform: translateX(-100%);
84
+ -webkit-transform: translateX(-100%);
85
+ z-index: 2;
86
+ }
87
+
88
+ .slide-in {
89
+ animation: slide-in 0.9s forwards;
90
+ -webkit-animation: slide-in 0.9s forwards;
91
+ }
92
+
93
+ .slide-out {
94
+ animation: slide-out 0.9s forwards;
95
+ -webkit-animation: slide-out 0.9s forwards;
96
+ }
97
+
98
+ @keyframes slide-in {
99
+ 100% { transform: translateX(0%); }
100
+ }
101
+
102
+ @-webkit-keyframes slide-in {
103
+ 100% { -webkit-transform: translateX(0%); }
104
+ }
105
+
106
+ @keyframes slide-out {
107
+ 0% { transform: translateX(0%); }
108
+ 100% { transform: translateX(-100%); }
109
+ }
110
+
111
+ @-webkit-keyframes slide-out {
112
+ 0% { -webkit-transform: translateX(0%); }
113
+ 100% { -webkit-transform: translateX(-100%); }
114
+ }
115
+ /*Menu options*/
116
+ #menuOptions{
117
+ margin-left: 5px;
118
+ font-size: 30px;
119
+ margin-top: 8px;
120
+ color: white;
121
+ font-family: "acumin-pro", sans-serif;
122
+ font-weight: 400;
123
+ font-style: normal;
124
+ }
125
+ #menuOptions li{
126
+ margin-bottom: 6px;
127
+
128
+ }
129
+ #menuOptions li:hover{
130
+ color: black;
131
+ cursor: pointer;
132
+
133
+ }
134
+ /* User Guide Content(hidden by default) */
135
+ .dropdown-content {
136
+ display: none;
137
+ /* position: -webkit-sticky; Safari */
138
+ position: absolute;
139
+ right: 0;
140
+ top: 0;
141
+ margin-top: 57px;
142
+ background-color: #f9f9f9;
143
+ min-width: 160px;
144
+ max-width: 36%;
145
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
146
+ z-index: 999;
147
+ font-family: "acumin-pro", sans-serif;
148
+ font-weight: 400;
149
+ font-style: normal;
150
+ font-size: 13px;
151
+ float: right;
152
+ border: none;
153
+ outline: none;
154
+ }
155
+
156
+ #userguidetext{
157
+ margin-left: 20px;
158
+ margin-right: 20px;
159
+ }
160
+
161
+
162
+ #secondpage{
163
+ float: right;
164
+ margin-right: 10px;
165
+ cursor: pointer;
166
+ }
167
+ #firstpage{
168
+ cursor: pointer;
169
+ }
170
+
171
+
172
+ #userguideheadings{
173
+ font-size: 14px;
174
+ font-weight: bold;
175
+
176
+ }
177
+ #underlinedLables{
178
+ text-decoration: underline;
179
+ }
180
+
181
+ /* i info button*/
182
+ #infoImg{
183
+ width:30px;
184
+ margin-top: -5px;
185
+ margin-bottom: -10px;
186
+
187
+ /* margin-left: -200px; */
188
+ }
static/images/TSAlogo.png ADDED
static/images/logo16x16.png ADDED
static/images/logo180x180.png ADDED
static/images/logo32x32.png ADDED
static/popups.css ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .mpopup {
2
+ display: none;
3
+ position: fixed;
4
+ z-index: 1;
5
+ padding-top: 100px;
6
+ left: 0;
7
+ top: 0;
8
+ width: 100%;
9
+ height: 100%;
10
+ overflow: auto;
11
+ background-color: rgb(0,0,0);
12
+ background-color: rgba(0,0,0,0.4);
13
+ }
14
+ .modal-content {
15
+ position: relative;
16
+ background-color: #fff;
17
+ margin: auto;
18
+ padding: 0;
19
+ width: 450px;
20
+ box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
21
+ -webkit-animation-name: animatetop;
22
+ -webkit-animation-duration: 0.4s;
23
+ animation-name: animatetop;
24
+ animation-duration: 0.4s;
25
+ border-radius: 0.3rem;
26
+ }
27
+ .modal-header {
28
+ padding: 2px 12px;
29
+ background-color: #ffffff;
30
+ color: #333;
31
+ border-bottom: 1px solid #e9ecef;
32
+ border-top-left-radius: 0.3rem;
33
+ border-top-right-radius: 0.3rem;
34
+ }
35
+ .modal-header h2{
36
+ font-size: 1.25rem;
37
+ margin-top: 14px;
38
+ margin-bottom: 14px;
39
+ color: maroon;
40
+ }
41
+ .modal-body {
42
+ padding: 2px 12px;
43
+ height: auto;
44
+ }
45
+ #modal-bodyText{
46
+ font-family: "acumin-pro", sans-serif;
47
+ font-weight: 400;
48
+ font-style: normal;
49
+ font-size: 16px;
50
+ }
51
+
52
+ .close {
53
+ color: #888;
54
+ float: right;
55
+ font-size: 28px;
56
+ font-weight: bold;
57
+ }
58
+ .close:hover, .close:focus {
59
+ color: maroon;
60
+ text-decoration: none;
61
+ cursor: pointer;
62
+ }
63
+
64
+ /* add animation effects */
65
+ @-webkit-keyframes animatetop {
66
+ from {top:-300px; opacity:0}
67
+ to {top:0; opacity:1}
68
+ }
69
+
70
+ @keyframes animatetop {
71
+ from {top:-300px; opacity:0}
72
+ to {top:0; opacity:1}
73
+ }
static/searchButton.css ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: sans-serif;
3
+ background-color: #111;
4
+ }
5
+
6
+ .button {
7
+ display: inline-block;
8
+ margin: 4px 2px;
9
+ background-color: #444;
10
+ font-size: 14px;
11
+ padding-left: 32px;
12
+ padding-right: 32px;
13
+ height: 50px;
14
+ line-height: 50px;
15
+ text-align: center;
16
+ color: white;
17
+ text-decoration: none;
18
+ cursor: pointer;
19
+ -moz-user-select: none;
20
+ -khtml-user-select: none;
21
+ -webkit-user-select: none;
22
+ -ms-user-select: none;
23
+ user-select: none;
24
+ }
25
+
26
+ .button:hover {
27
+ transition-duration: 0.4s;
28
+ -moz-transition-duration: 0.4s;
29
+ -webkit-transition-duration: 0.4s;
30
+ -o-transition-duration: 0.4s;
31
+ background-color: white;
32
+ color: black;
33
+ }
34
+
35
+ .search-container {
36
+ position: relative;
37
+ display: inline-block;
38
+ margin: 4px 2px;
39
+ height: 50px;
40
+ width: 50px;
41
+ vertical-align: bottom;
42
+ }
43
+
44
+ .mglass {
45
+ display: inline-block;
46
+ pointer-events: none;
47
+ -webkit-transform: rotate(-45deg);
48
+ -moz-transform: rotate(-45deg);
49
+ -o-transform: rotate(-45deg);
50
+ -ms-transform: rotate(-45deg);
51
+ }
52
+
53
+ .searchbutton {
54
+ position: absolute;
55
+ font-size: 22px;
56
+ width: 100%;
57
+ margin: 0;
58
+ padding: 0;
59
+ }
60
+
61
+ .search:focus + .searchbutton {
62
+ transition-duration: 0.4s;
63
+ -moz-transition-duration: 0.4s;
64
+ -webkit-transition-duration: 0.4s;
65
+ -o-transition-duration: 0.4s;
66
+ background-color: white;
67
+ color: black;
68
+ }
69
+
70
+ .search {
71
+ position: absolute;
72
+ left: 49px; /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
73
+ background-color: white;
74
+ outline: none;
75
+ border: none;
76
+ padding: 0;
77
+ width: 0;
78
+ height: 100%;
79
+ z-index: 10;
80
+ transition-duration: 0.4s;
81
+ -moz-transition-duration: 0.4s;
82
+ -webkit-transition-duration: 0.4s;
83
+ -o-transition-duration: 0.4s;
84
+ }
85
+
86
+ .search:focus {
87
+ width: 363px; /* Bar width+1px */
88
+ padding: 0 16px 0 0;
89
+ }
90
+
91
+ .expandright {
92
+ left: auto;
93
+ right: 49px; /* Button width-1px */
94
+ }
95
+
96
+ .expandright:focus {
97
+ padding: 0 0 0 16px;
98
+ }
static/select2.css ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .select2-container{
2
+ box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle
3
+ }
4
+ .select2-container .select2-selection--single{
5
+ box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none
6
+ }
7
+ .select2-container .select2-selection--single {
8
+ display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap
9
+ }
10
+ .select2-container .select2-selection--single .select2-selection__clear{
11
+ position:relative
12
+ }
13
+ .select2-container[dir="rtl"] .select2-selection--single {
14
+ padding-right:8px;padding-left:20px
15
+ }
16
+ .select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple {display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single {color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple
17
+ /* .select2-selection__rendered{
18
+ box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%} */
19
+ .select2-container--default .select2-selection--multiple {list-style:none}
20
+ .select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple {list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
static/style.css CHANGED
@@ -50,59 +50,37 @@
50
  position: fixed;
51
  z-index:999
52
  }
53
- #measureselectid,#relvselectid{
54
- border-radius: 5px;
55
  width: 51ch;
56
  font-size: 13px;
57
  margin-top: 5px;
58
-
 
 
 
59
  }
 
60
  #measureselectid :hover,#relvselectid :hover{
61
  background-color: gray;
62
  color: white;
63
  }
64
 
65
- .selectionsProj, .selectionsProjp , .selectionsProjs{
66
- margin-top: 8px ;
67
- /* width: 49%; */
68
- height: 30px;
69
- margin-left: 5px ;
70
- font-family: "acumin-pro", sans-serif;
71
- font-weight: 400;
72
- font-style: normal;
73
- font-size: 13px;
74
- border-radius: 5px;
75
- cursor: pointer;
76
- box-shadow: 2px 2px 2px gray;
77
- color: black;
78
- font-weight: 400;
79
-
80
- width: 51ch;
81
-
82
- }
83
-
84
  #measurementselectionsid{
85
- /* margin-top: 1px ; */
86
- width: 15ch;
87
  height: 30px;
88
  margin-left: 5px ;
89
  font-family: "acumin-pro", sans-serif;
90
  font-weight: 400;
91
  font-style: normal;
92
  font-size: 13px;
93
- border-radius: 5px;
94
  cursor: pointer;
95
  box-shadow: 2px 2px 2px gray;
96
-
97
  }
98
  #measurementselectionsid:hover{
99
  box-shadow: 4px 4px 4px gray;
100
  }
101
- .selectionsProj:hover, .selectionsProjp:hover , .selectionsProjs:hover{
102
- background-color: lightgrey;
103
- box-shadow: 4px 4px 4px gray;
104
- }
105
-
106
 
107
  #measureLabel, #relvDocLabel{
108
  font-family: "acumin-pro", sans-serif;
@@ -134,9 +112,9 @@
134
  #measureADRbutton{
135
  background-color: #16c72e;
136
  border: none;
137
- padding: 10px 102px;
138
  cursor: pointer;
139
- border-radius: 7px;
140
  margin-left: 2px;
141
  font-family: "acumin-pro", sans-serif;
142
  font-weight: bold;
@@ -149,7 +127,7 @@
149
  border: none;
150
  padding: 10px 121px;
151
  cursor: pointer;
152
- border-radius: 7px;
153
  margin-left: 2px;
154
  font-family: "acumin-pro", sans-serif;
155
  font-weight: bold;
@@ -172,33 +150,30 @@
172
  cursor: pointer;
173
  display:inline-block;
174
  background-color:#ff5900;
175
- border-radius: 7px;
 
176
 
177
  }
178
  #donebutton{
179
  width:50px;
180
  }
181
 
182
- #measureitemsid{
183
- margin-top: 10px ;
184
- width: 12ch;
185
- height: 30px;
186
- /* margin-left: 5px ; */
187
- font-size: 13px;
188
- border-radius: 5px;
189
- cursor: pointer;
190
- box-shadow: 2px 2px 2px gray;
191
- font-family: "acumin-pro", sans-serif;
192
- font-weight: 400;
193
- font-style: normal;
194
- }
195
- #measureitemsid:hover{
196
- box-shadow: 4px 4px 4px gray;
197
- }
198
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  #selectionsid{
200
  margin-top: 10px ;
201
- width: 23ch;
202
  height: 30px;
203
  font-size: 13px;
204
  border-radius: 5px;
@@ -208,12 +183,12 @@
208
  font-weight: 400;
209
  font-style: normal;
210
  }
211
- #selectionsid:hover{
212
  box-shadow: 4px 4px 4px gray;
213
- }
214
  #repeatforloop{
215
  margin-left: 5px ;
216
- margin-top: 10px;
217
 
218
  }
219
 
@@ -229,8 +204,8 @@
229
  #text0,#text1,#text2{
230
  font-size: 13px;
231
  /* width: 31.5%; */
232
- height: 25px;
233
- border-radius: 5px;
234
  margin-bottom: 7px;
235
  margin-right: 0.2%;
236
  font-family: "acumin-pro", sans-serif;
@@ -267,6 +242,7 @@
267
  width:130px;
268
  height:40px;
269
  left: 3px;
 
270
  cursor: pointer;
271
  position: relative;
272
  background-color: #ff5900;
@@ -314,8 +290,8 @@ cursor: pointer;
314
  #lvlinput{
315
  font-size: 13px;
316
  width: 13ch;
317
- height: 25px;
318
- border-radius: 5px;
319
  margin-top: 4px;
320
  margin-left: 9px;
321
  font-family: "acumin-pro", sans-serif;
@@ -338,7 +314,7 @@ cursor: pointer;
338
  font-weight: 400;
339
  font-style: normal;
340
  font-size: 13px;
341
- border-radius: 5px;
342
  cursor: pointer;
343
  color: black;
344
  }
@@ -483,296 +459,171 @@ cursor: pointer;
483
  100% { transform: rotate(360deg); }
484
  }
485
 
486
- /********************************************************************/
487
- /* Style the tab */
488
- .tab {
489
- overflow: hidden;
490
- /* border: 1px solid black; */
491
- background-color:black;
492
- font-family: "acumin-pro", sans-serif;
493
- }
494
- .tab .dropbtn{
495
- float:right
496
- }
497
- .tablinks{
498
- color:white;
499
- font-size: 18px;
500
- }
501
- /* Style the buttons that are used to open the tab content */
502
- .tab button {
503
- background-color: inherit;
504
- float: left;
505
- border: none;
506
- outline: none;
507
- cursor: pointer;
508
- padding: 14px 16px;
509
- transition: 0.3s;
510
- }
511
 
512
- /* Change background color of buttons on hover */
513
- .tab button:hover {
514
- background-color: rgb(0, 60, 255);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  }
516
-
517
- /* Create an active/current tablink class */
518
- .tab button.active {
519
- background-color: rgb(0, 60, 255);
 
520
  }
521
-
522
- /* Style the tab content */
523
- .tabcontent {
524
  display: none;
525
- /* padding: 6px 12px; */
526
- /* border: 1px solid #ccc; */
527
- border-top: none;
528
-
529
  }
530
- /*********************************************************************/
 
 
 
531
 
532
- .container {
533
- /* display: inline-block; */
 
 
 
 
 
 
 
534
  cursor: pointer;
535
- margin-top: 5px;
536
- display: block;
537
- float: left;
538
- margin-right: 5px;
539
-
540
  }
541
 
542
- .bar1, .bar2, .bar3 {
543
- width: 30px;
544
- height: 5px;
545
- background-color: #fcfcfc;
546
- margin: 5px 0;
547
- transition: 0.4s;
548
- margin-left: 5px;
549
-
550
  }
551
 
552
- .change .bar1 {
553
- transform: translate(0, 10px) rotate(-45deg);
554
- }
555
 
556
- .change .bar2 {opacity: 0;}
557
 
558
- .change .bar3 {
559
- transform: translate(0, -10px) rotate(45deg);
560
- }
561
- /*Dashed Lines on the left - Menu icon */
562
- #slider {
563
- position: absolute;
564
- width:400px;
565
- height:900px;
566
- background:rgb(179, 179, 179);
567
- transform: translateX(-100%);
568
- -webkit-transform: translateX(-100%);
569
- z-index: 2;
 
570
  }
571
-
572
- .slide-in {
573
- animation: slide-in 0.9s forwards;
574
- -webkit-animation: slide-in 0.9s forwards;
 
 
 
 
575
  }
576
 
577
- .slide-out {
578
- animation: slide-out 0.9s forwards;
579
- -webkit-animation: slide-out 0.9s forwards;
580
- }
581
-
582
- @keyframes slide-in {
583
- 100% { transform: translateX(0%); }
584
  }
585
 
586
- @-webkit-keyframes slide-in {
587
- 100% { -webkit-transform: translateX(0%); }
588
- }
589
-
590
- @keyframes slide-out {
591
- 0% { transform: translateX(0%); }
592
- 100% { transform: translateX(-100%); }
593
  }
594
 
595
- @-webkit-keyframes slide-out {
596
- 0% { -webkit-transform: translateX(0%); }
597
- 100% { -webkit-transform: translateX(-100%); }
598
- }
599
- /*Menu options*/
600
- #menuOptions{
601
- margin-left: 5px;
602
- font-size: 30px;
603
- margin-top: 8px;
604
- color: white;
605
- font-family: "acumin-pro", sans-serif;
606
- font-weight: 400;
607
- font-style: normal;
608
  }
609
- #menuOptions li{
610
- margin-bottom: 6px;
611
-
612
- }
613
- #menuOptions li:hover{
614
- color: black;
615
- cursor: pointer;
616
-
617
  }
618
- /* User Guide Content(hidden by default) */
619
- .dropdown-content {
620
- display: none;
621
- /* position: -webkit-sticky; Safari */
622
- position: absolute;
623
- right: 0;
624
- top: 0;
625
- margin-top: 57px;
626
- background-color: #f9f9f9;
627
- min-width: 160px;
628
- max-width: 36%;
629
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
630
- z-index: 999;
631
  font-family: "acumin-pro", sans-serif;
632
  font-weight: 400;
633
  font-style: normal;
634
- font-size: 13px;
635
- float: right;
636
- border: none;
637
- outline: none;
638
- }
639
-
640
- #userguidetext{
641
- margin-left: 20px;
642
- margin-right: 20px;
643
- }
644
-
645
-
646
- #secondpage{
647
- float: right;
648
- margin-right: 10px;
649
- cursor: pointer;
650
- }
651
- #firstpage{
652
- cursor: pointer;
653
- }
654
-
655
-
656
- #userguideheadings{
657
- font-size: 14px;
658
- font-weight: bold;
659
-
660
- }
661
- #underlinedLables{
662
- text-decoration: underline;
663
- }
664
 
665
- /* i info button*/
666
- #infoImg{
667
- width:30px;
668
- margin-top: -5px;
669
- margin-bottom: -10px;
670
-
671
- /* margin-left: -200px; */
672
  }
673
-
674
- /*Narbar on top of the page of the legend*/
675
- .graynavbarLegend{
676
- background-color: #b2b2b2;
677
- height: 35px;
678
- position: relative;
679
  }
680
-
681
- .graynavbarLegend label{
682
- float: left;
683
- display: block;
684
- color: black;
685
- text-align: center;
686
- /* padding: 7px 16px; */
687
- text-decoration: none;
688
  font-family: "acumin-pro", sans-serif;
689
  font-weight: 400;
690
  font-style: normal;
691
- font-size: 16px;
692
- margin-left: 7px;
693
-
694
- }
695
-
696
- .graynavbarLegend .label2{
697
- color: blue;
698
- }
699
-
700
- /*Sorting buttons*/
701
-
702
- .sortbutton{
703
- background-color: transparent;
704
- border: transparent;
705
- }
706
-
707
- /******************************/
708
- #createdTimeDiv{
709
- vertical-align: top;
710
- display: inline-block;
711
- }
712
-
713
- #prjname, #prjpart, #prjsec{
714
- font-size: 15px;
715
- font-family: "acumin-pro", sans-serif;
716
- margin-bottom: 10px;
717
- margin-left: 5px;
718
- cursor: pointer;
719
- font-weight: bold;
720
-
721
-
722
- }
723
- .legendtime{
724
- margin-left: 54%;
725
-
726
- }
727
- .legendtime .EditTime{
728
- margin-left: 90px;
729
- }
730
- #legendtimediv{
731
- margin-left: 17%;
732
- display: inline-block;
733
- /* float: right; */
734
- /* position: absolute; */
735
-
736
- }
737
-
738
- #legendtimediv:before {
739
- content: '';
740
- width: 10%;
741
- min-width: 100px;
742
- max-width: 200px;
743
- display: inline-block;
744
- }
745
- #legendmodtime{
746
- margin-left: 50px;
747
- }
748
- #legendmodtime:hover , #legendtime:hover , #legend:hover{
749
  cursor: pointer;
 
 
 
 
 
750
  }
751
- #legendlbldivwhole:hover{
752
- background-color: lightblue;
753
- cursor: pointer;
754
- font-family: "acumin-pro", sans-serif;
755
 
756
- }
757
- #legendlbldivwhole{
758
- font-family: "acumin-pro", sans-serif;
759
- }
760
- .legendclass{
761
- color: blue;
762
- text-decoration-line: underline;
763
- max-width: 40ch;
764
- width:40ch;
765
- word-wrap: break-word;
766
- }
767
- .infotip{
768
- justify-content: center;
769
- font-family: "acumin-pro", sans-serif;
770
- color:red;
771
- }
772
- #CreatesortDesc , #EditsortDesc , #CreatesortAsc, #EditsortAsc{
773
- margin-top: 5px;
774
- }
775
- #CreatesortDesc:hover , #EditsortDesc:hover , #CreatesortAsc:hover, #EditsortAsc:hover{
776
- color:gray;
777
- cursor: pointer;
778
- }
 
50
  position: fixed;
51
  z-index:999
52
  }
53
+ #measureselectid,#relvselectid {
54
+
55
  width: 51ch;
56
  font-size: 13px;
57
  margin-top: 5px;
58
+ resize: auto;
59
+ background-color: #fff;
60
+ border-radius: 0 0 3px 3px;
61
+ border: 2px solid #6e6e6e;
62
  }
63
+
64
  #measureselectid :hover,#relvselectid :hover{
65
  background-color: gray;
66
  color: white;
67
  }
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  #measurementselectionsid{
70
+ width: 15ch !important;
 
71
  height: 30px;
72
  margin-left: 5px ;
73
  font-family: "acumin-pro", sans-serif;
74
  font-weight: 400;
75
  font-style: normal;
76
  font-size: 13px;
77
+ border-radius: 3px;
78
  cursor: pointer;
79
  box-shadow: 2px 2px 2px gray;
 
80
  }
81
  #measurementselectionsid:hover{
82
  box-shadow: 4px 4px 4px gray;
83
  }
 
 
 
 
 
84
 
85
  #measureLabel, #relvDocLabel{
86
  font-family: "acumin-pro", sans-serif;
 
112
  #measureADRbutton{
113
  background-color: #16c72e;
114
  border: none;
115
+ padding: 10px 122px; /*102*/
116
  cursor: pointer;
117
+ border-radius: 5px;
118
  margin-left: 2px;
119
  font-family: "acumin-pro", sans-serif;
120
  font-weight: bold;
 
127
  border: none;
128
  padding: 10px 121px;
129
  cursor: pointer;
130
+ border-radius: 5px;
131
  margin-left: 2px;
132
  font-family: "acumin-pro", sans-serif;
133
  font-weight: bold;
 
150
  cursor: pointer;
151
  display:inline-block;
152
  background-color:#ff5900;
153
+ border-radius: 5px;
154
+
155
 
156
  }
157
  #donebutton{
158
  width:50px;
159
  }
160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #selectionsM-M2{
163
+ width:9ch;
164
+ margin-top: 10px ;
165
+ height: 30px;
166
+ font-size: 13px;
167
+ border-radius: 5px;
168
+ cursor: pointer;
169
+ box-shadow: 2px 2px 2px gray;
170
+ font-family: "acumin-pro", sans-serif;
171
+ font-weight: 400;
172
+ font-style: normal;
173
+ }
174
  #selectionsid{
175
  margin-top: 10px ;
176
+ width: 23ch !important;
177
  height: 30px;
178
  font-size: 13px;
179
  border-radius: 5px;
 
183
  font-weight: 400;
184
  font-style: normal;
185
  }
186
+ /* #selectionsid:hover{
187
  box-shadow: 4px 4px 4px gray;
188
+ } */
189
  #repeatforloop{
190
  margin-left: 5px ;
191
+ margin-top: 8px;
192
 
193
  }
194
 
 
204
  #text0,#text1,#text2{
205
  font-size: 13px;
206
  /* width: 31.5%; */
207
+ height: 33px;
208
+ border-radius: 2px;
209
  margin-bottom: 7px;
210
  margin-right: 0.2%;
211
  font-family: "acumin-pro", sans-serif;
 
242
  width:130px;
243
  height:40px;
244
  left: 3px;
245
+ margin-bottom: 200px;
246
  cursor: pointer;
247
  position: relative;
248
  background-color: #ff5900;
 
290
  #lvlinput{
291
  font-size: 13px;
292
  width: 13ch;
293
+ height: 30px;
294
+ border-radius: 3px;
295
  margin-top: 4px;
296
  margin-left: 9px;
297
  font-family: "acumin-pro", sans-serif;
 
314
  font-weight: 400;
315
  font-style: normal;
316
  font-size: 13px;
317
+ border-radius: 3px;
318
  cursor: pointer;
319
  color: black;
320
  }
 
459
  100% { transform: rotate(360deg); }
460
  }
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
 
463
+ .select2-container--default ,.select2-container--single {
464
+ margin-top: 5px ;
465
+ height: 33px;
466
+ /* margin-right: 5px ; */
467
+ margin-left: 2px;
468
+ font-family: "acumin-pro", sans-serif;
469
+ font-weight: 400;
470
+ font-style: normal;
471
+ font-size: 13px;
472
+ border-radius: 3px;
473
+ cursor: pointer;
474
+ color: black;
475
+ font-weight: 400;
476
+ /* position: relative; */
477
+ border: 2px solid #6e6e6e;
478
+ }
479
+ /* .select2-dropdown.select2-dropdown--below{
480
+ margin-top: -50px;
481
+ } */
482
+ .select2-search--dropdown{
483
+ margin-left: -8px;
484
+ margin-top: -9px;
485
+ border-radius: 0 0 3px 3px;
486
+ border: none;
487
+ position: static;
488
+ /* top:0; */
489
+ }
490
+ .select2-dropdown.select2-dropdown--above{
491
+ margin-top: -10px;
492
+ }
493
+ .select2-results__options{
494
+ /* list-style-type: none; */
495
+ background-color: #fff;
496
+ border-radius: 0 0 3px 3px;
497
+ border: 2px solid #6e6e6e;
498
+ height: auto;
499
+ position: static;
500
+ overflow: scroll;
501
+ margin-left: -4px;
502
+ /* margin-bottom: 20px; */
503
+ width: 370px;
504
+ margin-top: -3px;
505
+ /* display: inline-block; */
506
  }
507
+ /* .select2-dropdown .select2-results__option {
508
+ position: absolute;
509
+ } */
510
+ .select2-selection.select2-selection--single{
511
+ border: none;
512
  }
513
+ .select2-selection__arrow{
 
 
514
  display: none;
 
 
 
 
515
  }
516
+ /* .select2-dropdown.select2-dropdown--above{
517
+ margin-top: 130px;
518
+ margin-left: -5px;
519
+ } */
520
 
521
+ .projnamedp input , .projectpart input , .projectsection input {
522
+ margin-top: 8px ;
523
+ height: 33px;
524
+ margin-left: 5px ;
525
+ font-family: "acumin-pro", sans-serif;
526
+ font-weight: 400;
527
+ font-style: normal;
528
+ font-size: 13px;
529
+ border-radius: 3px;
530
  cursor: pointer;
531
+ box-shadow: 2px 2px 2px gray;
532
+ color: black;
533
+ font-weight: 400;
534
+ width: 51ch;
 
535
  }
536
 
537
+ .projnamedp input:hover, .projectpart input:hover , .projectsection input:hover {
538
+ background-color: lightgrey;
539
+ box-shadow: 4px 4px 4px gray;
 
 
 
 
 
540
  }
541
 
 
 
 
542
 
 
543
 
544
+ .projnamedp ul , .projectpart ul , .projectsection ul , .measurementscripts ul , .measurementsMC ul {
545
+ display: none;
546
+ list-style-type: none;
547
+ background-color: #fff;
548
+ border-radius: 0 0 3px 3px;
549
+ border: 2px solid #6e6e6e;
550
+ height: 250px;
551
+ margin: 0;
552
+ overflow-y: scroll;
553
+ overflow-x: hidden;
554
+ padding: 0;
555
+ width: 450px;
556
+ margin-left: 5px;
557
  }
558
+ /* .measurementscripts ul, .measurementsMC ul {
559
+ margin-top: 41px;
560
+ } */
561
+ .projnamedp ul li , .projectpart ul li , .projectsection ul li , .measurementscripts ul li , .measurementsMC ul li {
562
+ padding: 7px 9px;
563
+ border-bottom: 1px solid #e1e1e1;
564
+ cursor: pointer;
565
+ color: #6e6e6e;
566
  }
567
 
568
+ .projnamedp ul li:hover , .projectpart ul li:hover , .projectsection ul li:hover , .measurementscripts ul li:hover , .measurementsMC ul li:hover {
569
+ padding: 7px 9px;
570
+ border-bottom: 1px solid #a9a9a9;
571
+ cursor: pointer;
572
+ color:black;
573
+ background-color: #afacac;
 
574
  }
575
 
576
+ .projnamedp ul li.selected , .projectpart ul li.selected , .projectsection ul li.selected , .measurementscripts ul li.selected , .measurementsMC ul li.selected {
577
+ background-color: #e8e8e8;
578
+ color: #333;
 
 
 
 
579
  }
580
 
581
+ .measurementscripts input {
582
+ margin-left: 5px ;
583
+ width: 15ch;
 
 
 
 
 
 
 
 
 
 
584
  }
585
+ .measurementsMC input{
586
+ margin-left: 120px ;
587
+ width: 23ch;
 
 
 
 
 
588
  }
589
+ /* #measureitemsid{
590
+ margin-top: 10px ;
591
+ width: 11ch;
592
+ height: 30px;
593
+ margin-left:290px ;
594
+ font-size: 13px;
595
+ border-radius: 5px;
596
+ cursor: pointer;
597
+ box-shadow: 2px 2px 2px gray;
 
 
 
 
598
  font-family: "acumin-pro", sans-serif;
599
  font-weight: 400;
600
  font-style: normal;
601
+ } */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
 
603
+ #measureitemsid{
604
+ /* margin-left:294px ; */
605
+ width: 11ch !important;
606
+ border: 2px solid #6e6e6e;
 
 
 
607
  }
608
+ #measureitemsid:hover{
609
+ box-shadow: 4px 4px 4px gray;
 
 
 
 
610
  }
611
+ .measurementscripts input , .measurementsMC input , #measureitemsid{
612
+ margin-top: 8px ;
613
+ height: 33px;
 
 
 
 
 
614
  font-family: "acumin-pro", sans-serif;
615
  font-weight: 400;
616
  font-style: normal;
617
+ font-size: 13px;
618
+ border-radius: 3px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
619
  cursor: pointer;
620
+ box-shadow: 2px 2px 2px gray;
621
+ color: black;
622
+ font-weight: 400;
623
+ display:inline-block;
624
+ position: absolute;
625
  }
626
+ .measurementscripts input:hover , .measurementsMC input:hover{
627
+ box-shadow: 4px 4px 4px gray;
628
+ }
 
629