Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Menubar Lock and Model Reset #71

Merged
merged 4 commits into from
Nov 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Our program is an extension of the three.js development evironment modified to a

### For Users

If you're interested in trying out Vis yourself, please visit http://vis.ipwnage.com. From there, you'll be able to upload models, add antennas, and modify wireframe status easily.
If you're interested in trying out Vis yourself, please visit our landing page at https://thevindicators.github.io/Vis/ for information regarding our project. You can also head directly over to the application at http://vis.ipwnage.com. From there, you'll be able to upload models, add antennas, and modify wireframe status easily.

### For Developers

Expand Down
150 changes: 110 additions & 40 deletions app/static/css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,46 +109,116 @@ select {
padding: 8px;
}

#menubar .menu .options {
position: fixed;
display: none;
padding: 5px 0;
background: #111;
width: 150px;
max-height: calc(100% - 80px);
overflow: auto;
}

#menubar .menu:hover .options {
display: block;
}

#menubar .menu .options hr {
border-color: #222;
}

#menubar .menu .options .option {
color: #888;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options .option:hover {
color: #fff;
background-color: #08f;
}

#menubar .menu .options .option:active {
background: transparent;
}

#menubar .menu .options .inactive {
color: #444;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}
#menubar .menu .options {
position: absolute;
display: none;
padding: 5px 0;
background: #eee;
width: 150px;
}

#menubar .menu:hover .options {
display: block;
}

#menubar .menu .options hr {
border-color: #ddd;
}

#menubar .menu .options .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options .option:hover {
color: #fff;
background-color: #08f;
}

#menubar .menu .options .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options2 {
position: absolute;
display: block;
padding: 5px 0;
background: #eee;
width: 150px;
}

#menubar .menu:hover .options2 {
display: block;
}

#menubar .menu .options2 hr {
border-color: #ddd;
}

#menubar .menu .options2 .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options2 .option:hover {
color: #fff;
background-color: #08f;
}

#menubar .menu .options2 .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options2 .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options3 {
position: absolute;
display: none;
padding: 5px 0;
background: #eee;
width: 150px;
}

#menubar .menu .options3 hr {
border-color: #ddd;
}

#menubar .menu .options3 .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options3 .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options3 .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#sidebar {
position: absolute;
Expand Down
151 changes: 110 additions & 41 deletions app/static/css/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,47 +105,116 @@ select {
padding: 8px;
}

#menubar .menu .options {
position: fixed;
display: none;
padding: 5px 0;
background: #eee;
width: 150px;
max-height: calc(100% - 80px);
overflow: auto;
}

#menubar .menu:hover .options {
display: block;
}

#menubar .menu .options hr {
border-color: #ddd;
}

#menubar .menu .options .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options .option:hover {
color: #fff;
background-color: #08f;
}

#menubar .menu .options .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}
#menubar .menu .options {
position: absolute;
display: none;
padding: 5px 0;
background: #eee;
width: 150px;
}

#menubar .menu:hover .options {
display: block;
}

#menubar .menu .options hr {
border-color: #ddd;
}

#menubar .menu .options .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options .option:hover {
color: #fff;
background-color: #08f;
}

#menubar .menu .options .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options2 {
position: absolute;
display: block;
padding: 5px 0;
background: #eee;
width: 150px;
}

#menubar .menu:hover .options2 {
display: block;
}

#menubar .menu .options2 hr {
border-color: #ddd;
}

#menubar .menu .options2 .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options2 .option:hover {
color: #fff;
background-color: #08f;
}

#menubar .menu .options2 .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options2 .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options3 {
position: absolute;
display: none;
padding: 5px 0;
background: #eee;
width: 150px;
}

#menubar .menu .options3 hr {
border-color: #ddd;
}

#menubar .menu .options3 .option {
color: #666;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#menubar .menu .options3 .option:active {
color: #666;
background: transparent;
}

#menubar .menu .options3 .inactive {
color: #bbb;
background-color: transparent;
padding: 5px 10px;
margin: 0 !important;
}

#sidebar {
position: absolute;
Expand Down
Loading