diff options
author | Alex Legler <alex@a3li.li> | 2011-08-20 14:09:08 +0200 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2011-08-20 14:09:08 +0200 |
commit | a81d5fbb8368a0a2c84242798d63a76d554cac16 (patch) | |
tree | 8d03cc7e9c1addcdf31976bb1a402fa66aef23a4 /app/assets | |
parent | ToolsController: file_req_ajax_info is now bugs_ajax_info; Remove old methods (diff) | |
download | glsamaker-a81d5fbb8368a0a2c84242798d63a76d554cac16.tar.gz glsamaker-a81d5fbb8368a0a2c84242798d63a76d554cac16.tar.bz2 glsamaker-a81d5fbb8368a0a2c84242798d63a76d554cac16.zip |
Migrate CVEController to rails3
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/javascripts/jsui.js | 7 | ||||
-rw-r--r-- | app/assets/stylesheets/cve.css | 23 |
2 files changed, 29 insertions, 1 deletions
diff --git a/app/assets/javascripts/jsui.js b/app/assets/javascripts/jsui.js index cc3b8f4..039f727 100644 --- a/app/assets/javascripts/jsui.js +++ b/app/assets/javascripts/jsui.js @@ -1,3 +1,8 @@ +//= require prototype +//= require prototype_ujs +//= require effects //= require uki //= require uki-more -//= require searchable
\ No newline at end of file +//= require searchable +//= require glsamaker +//= require glsamaker_misc
\ No newline at end of file diff --git a/app/assets/stylesheets/cve.css b/app/assets/stylesheets/cve.css new file mode 100644 index 0000000..bebb317 --- /dev/null +++ b/app/assets/stylesheets/cve.css @@ -0,0 +1,23 @@ +.cvename { + font-weight: bold; +} + +.cve-new { + color: #A40000; +} + +.cve-assigned { + color: #4E9A06; +} + +.cve-nfu { + color: #204A87; +} + +.cve-later { + color: #5C3566; +} + +.cve-invalid { + color: #CCC; +}
\ No newline at end of file |