-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* UI tweaks. * Provide support for adding row backgrounds based on the selected ship type. Requires the addition of a `backgrounds.css` file and an `images` directory; since it's likely to contain copyrighted images this will not be checked in.
- Loading branch information
Geordan Rosario
committed
Dec 3, 2012
1 parent
8d17471
commit 96ebdb5
Showing
7 changed files
with
192 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
*.swp | ||
_vimrc_local.vim | ||
.sass-cache | ||
|
||
images | ||
backgrounds.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
body { | ||
background-color: black; } | ||
|
||
dl.tabs { | ||
background-color: black; } | ||
|
||
dl.tabs dd.active a { | ||
background-color: lightgrey; } | ||
|
||
dl.tabs a { | ||
color: white; } | ||
|
||
select.pilot { | ||
width: 20em; } | ||
|
||
select.upgrade { | ||
width: 20em; } | ||
|
||
abbr { | ||
cursor: pointer; } | ||
|
||
a.remove.button { | ||
font-size: 1.25em; } | ||
|
||
.chzn-container { | ||
padding: 3px; } | ||
|
||
.row.pilot { | ||
z-index: 0; | ||
padding: 10px 0px; } | ||
|
||
div.total-points { | ||
color: lightgrey; | ||
font-size: 2em; } | ||
|
||
div.info-tooltip { | ||
width: 300px; | ||
float: right; | ||
clear: both; | ||
position: absolute; | ||
display: none; | ||
z-index: 9999; | ||
background-color: lightgrey; | ||
border: thin solid black; | ||
padding: 5px; } | ||
|
||
div.info-tooltip table { | ||
width: 100%; } | ||
|
||
div.info-tooltip table tr th, div.info-tooltip table tr td { | ||
color: lightgrey; } | ||
|
||
div.info-tooltip table tbody tr { | ||
background-color: black; } | ||
|
||
div.info-tooltip table tbody tr.attack th, div.info-tooltip table tbody tr.attack td { | ||
color: #ef232b; } | ||
|
||
div.info-tooltip table tbody tr.agility th, div.info-tooltip table tbody tr.agility td { | ||
color: #6bbe44; } | ||
|
||
div.info-tooltip table tbody tr.hull th, div.info-tooltip table tbody tr.hull td { | ||
color: #f0ec1e; } | ||
|
||
div.info-tooltip table tbody tr.shields th, div.info-tooltip table tbody tr.shields td { | ||
color: #7ed3e5; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
body | ||
background-color: black | ||
|
||
dl.tabs | ||
background-color: black | ||
|
||
dl.tabs dd.active a | ||
background-color: lightgrey | ||
|
||
dl.tabs a | ||
color: white | ||
|
||
select.pilot | ||
width: 20em | ||
|
||
select.upgrade | ||
width: 20em | ||
|
||
abbr | ||
cursor: pointer | ||
|
||
a.remove.button | ||
font-size: 1.25em | ||
|
||
.chzn-container | ||
padding: 3px | ||
|
||
.row.pilot | ||
z-index: 0 | ||
padding: 10px 0px | ||
|
||
div.total-points | ||
color: lightgrey | ||
font-size: 2em | ||
|
||
div.info-tooltip | ||
width: 300px | ||
float: right | ||
clear: both | ||
position: absolute | ||
display: none | ||
z-index: 9999 | ||
background-color: lightgray | ||
border: thin solid black | ||
padding: 5px | ||
|
||
div.info-tooltip table | ||
width: 100% | ||
|
||
div.info-tooltip table tr th, div.info-tooltip table tr td | ||
color: lightgray | ||
|
||
div.info-tooltip table tbody tr | ||
background-color: black | ||
|
||
div.info-tooltip table tbody tr.attack th, div.info-tooltip table tbody tr.attack td | ||
color: #EF232B | ||
|
||
div.info-tooltip table tbody tr.agility th, div.info-tooltip table tbody tr.agility td | ||
color: #6BBE44 | ||
|
||
div.info-tooltip table tbody tr.hull th, div.info-tooltip table tbody tr.hull td | ||
color: #F0EC1E | ||
|
||
div.info-tooltip table tbody tr.shields th, div.info-tooltip table tbody tr.shields td | ||
color: #7ED3E5 |