wakame-vdc-webui 10.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (281) hide show
  1. data/INSTALL.txt +21 -0
  2. data/LICENSE +202 -0
  3. data/NOTICE +1 -0
  4. data/README +256 -0
  5. data/Rakefile +42 -0
  6. data/app/controllers/accounts_controller.rb +15 -0
  7. data/app/controllers/application_controller.rb +5 -0
  8. data/app/controllers/dialog_controller.rb +80 -0
  9. data/app/controllers/home_controller.rb +5 -0
  10. data/app/controllers/host_pools_controller.rb +26 -0
  11. data/app/controllers/images_controller.rb +28 -0
  12. data/app/controllers/information_controller.rb +10 -0
  13. data/app/controllers/instances_controller.rb +59 -0
  14. data/app/controllers/keypairs_controller.rb +64 -0
  15. data/app/controllers/security_groups_controller.rb +59 -0
  16. data/app/controllers/sessions_controller.rb +25 -0
  17. data/app/controllers/snapshots_controller.rb +48 -0
  18. data/app/controllers/storage_pools_controller.rb +27 -0
  19. data/app/controllers/users_controller.rb +3 -0
  20. data/app/controllers/volumes_controller.rb +86 -0
  21. data/app/helpers/accounts_helper.rb +2 -0
  22. data/app/helpers/application_helper.rb +23 -0
  23. data/app/helpers/dialog_helper.rb +2 -0
  24. data/app/helpers/home_helper.rb +2 -0
  25. data/app/helpers/host_pools_helper.rb +2 -0
  26. data/app/helpers/images_helper.rb +2 -0
  27. data/app/helpers/information_helper.rb +2 -0
  28. data/app/helpers/instances_helper.rb +2 -0
  29. data/app/helpers/keypairs_helper.rb +2 -0
  30. data/app/helpers/security_groups_helper.rb +2 -0
  31. data/app/helpers/sessions_helper.rb +2 -0
  32. data/app/helpers/snapshots_helper.rb +2 -0
  33. data/app/helpers/storage_pools_helper.rb +2 -0
  34. data/app/helpers/users_helper.rb +2 -0
  35. data/app/helpers/volumes_helper.rb +2 -0
  36. data/app/models/account.rb +104 -0
  37. data/app/models/authz.rb +102 -0
  38. data/app/models/base_new.rb +311 -0
  39. data/app/models/dcmgr_resource/account.rb +5 -0
  40. data/app/models/dcmgr_resource/base.rb +51 -0
  41. data/app/models/dcmgr_resource/host_pool.rb +11 -0
  42. data/app/models/dcmgr_resource/image.rb +11 -0
  43. data/app/models/dcmgr_resource/instance.rb +37 -0
  44. data/app/models/dcmgr_resource/mock.rb +15 -0
  45. data/app/models/dcmgr_resource/netfilter_group.rb +29 -0
  46. data/app/models/dcmgr_resource/ssh_key_pair.rb +25 -0
  47. data/app/models/dcmgr_resource/storage_pool.rb +11 -0
  48. data/app/models/dcmgr_resource/volume.rb +48 -0
  49. data/app/models/dcmgr_resource/volume_snapshot.rb +35 -0
  50. data/app/models/information.rb +9 -0
  51. data/app/models/schema.rb +51 -0
  52. data/app/models/tag.rb +121 -0
  53. data/app/models/tag_mapping.rb +25 -0
  54. data/app/models/user.rb +46 -0
  55. data/app/views/accounts/index.html.erb +68 -0
  56. data/app/views/dialog/attach_volume.html.erb +13 -0
  57. data/app/views/dialog/create_and_edit_security_group.html.erb +32 -0
  58. data/app/views/dialog/create_snapshot.html.erb +7 -0
  59. data/app/views/dialog/create_ssh_keypair.html.erb +15 -0
  60. data/app/views/dialog/create_volume.html.erb +18 -0
  61. data/app/views/dialog/create_volume_from_snapshot.html.erb +7 -0
  62. data/app/views/dialog/delete_security_group.html.erb +4 -0
  63. data/app/views/dialog/delete_snapshot.html.erb +7 -0
  64. data/app/views/dialog/delete_ssh_keypair.html.erb +4 -0
  65. data/app/views/dialog/delete_volume.html.erb +7 -0
  66. data/app/views/dialog/detach_volume.html.erb +7 -0
  67. data/app/views/dialog/launch_instance.html.erb +70 -0
  68. data/app/views/dialog/reboot_instances.html.erb +7 -0
  69. data/app/views/dialog/start_instances.html.erb +8 -0
  70. data/app/views/dialog/stop_instances.html.erb +7 -0
  71. data/app/views/dialog/terminate_instances.html.erb +7 -0
  72. data/app/views/home/index.html.erb +55 -0
  73. data/app/views/host_pools/index.html.erb +103 -0
  74. data/app/views/images/index.html.erb +126 -0
  75. data/app/views/information/index.html.erb +25 -0
  76. data/app/views/instances/index.html.erb +134 -0
  77. data/app/views/keypairs/index.html.erb +104 -0
  78. data/app/views/layouts/_footer.html.erb +4 -0
  79. data/app/views/layouts/_header.html.erb +14 -0
  80. data/app/views/layouts/_informationarea.html.erb +18 -0
  81. data/app/views/layouts/_login_header.erb +4 -0
  82. data/app/views/layouts/_service_health.erb +27 -0
  83. data/app/views/layouts/_sidemenu.html.erb +58 -0
  84. data/app/views/layouts/application.html.erb +34 -0
  85. data/app/views/layouts/login.html.erb +25 -0
  86. data/app/views/security_groups/index.html.erb +114 -0
  87. data/app/views/sessions/new.html.erb +27 -0
  88. data/app/views/snapshots/index.html.erb +110 -0
  89. data/app/views/storage_pools/index.html.erb +98 -0
  90. data/app/views/volumes/index.html.erb +117 -0
  91. data/config.ru +4 -0
  92. data/config/application.rb +48 -0
  93. data/config/boot.rb +13 -0
  94. data/config/database.yml +20 -0
  95. data/config/environment.rb +5 -0
  96. data/config/environments/development.rb +28 -0
  97. data/config/environments/production.rb +49 -0
  98. data/config/environments/test.rb +35 -0
  99. data/config/initializers/backtrace_silencers.rb +7 -0
  100. data/config/initializers/dcmgr_gui.rb +14 -0
  101. data/config/initializers/inflections.rb +10 -0
  102. data/config/initializers/mime_types.rb +5 -0
  103. data/config/initializers/secret_token.rb +7 -0
  104. data/config/initializers/session_store.rb +8 -0
  105. data/config/locales/en.yml +5 -0
  106. data/config/routes.rb +109 -0
  107. data/db/seeds.rb +7 -0
  108. data/extras/authentication.rb +94 -0
  109. data/extras/util.rb +5 -0
  110. data/lib/tasks/dcmgr_gui.rake +51 -0
  111. data/public/404.html +26 -0
  112. data/public/422.html +26 -0
  113. data/public/500.html +26 -0
  114. data/public/favicon.ico +0 -0
  115. data/public/images/app_active.gif +0 -0
  116. data/public/images/app_passive.gif +0 -0
  117. data/public/images/body_bg.gif +0 -0
  118. data/public/images/btn_change.gif +0 -0
  119. data/public/images/btn_create_security_group.gif +0 -0
  120. data/public/images/btn_create_snapshot.gif +0 -0
  121. data/public/images/btn_create_volume.gif +0 -0
  122. data/public/images/btn_createkey.gif +0 -0
  123. data/public/images/btn_de_register.gif +0 -0
  124. data/public/images/btn_delete_security_group.gif +0 -0
  125. data/public/images/btn_delete_snapshot.gif +0 -0
  126. data/public/images/btn_delete_volume.gif +0 -0
  127. data/public/images/btn_deletekey.gif +0 -0
  128. data/public/images/btn_healthdetail.gif +0 -0
  129. data/public/images/btn_hide.gif +0 -0
  130. data/public/images/btn_launch.gif +0 -0
  131. data/public/images/btn_next.gif +0 -0
  132. data/public/images/btn_prev.gif +0 -0
  133. data/public/images/btn_refresh.gif +0 -0
  134. data/public/images/btn_register_new_ami.gif +0 -0
  135. data/public/images/btn_savechange.gif +0 -0
  136. data/public/images/btn_show.gif +0 -0
  137. data/public/images/btn_show_accesskey.png +0 -0
  138. data/public/images/bup_btn_healthdetail.gif +0 -0
  139. data/public/images/bup_btn_refresh.gif +0 -0
  140. data/public/images/clear.gif +0 -0
  141. data/public/images/content_bg.png +0 -0
  142. data/public/images/content_foot_bg.gif +0 -0
  143. data/public/images/content_head_bg.gif +0 -0
  144. data/public/images/footer_bg.gif +0 -0
  145. data/public/images/head_gradation_bg.gif +0 -0
  146. data/public/images/header_logo.gif +0 -0
  147. data/public/images/icon_blockstore.gif +0 -0
  148. data/public/images/icon_caution.gif +0 -0
  149. data/public/images/icon_health.gif +0 -0
  150. data/public/images/icon_images.gif +0 -0
  151. data/public/images/icon_information.gif +0 -0
  152. data/public/images/icon_instances.gif +0 -0
  153. data/public/images/icon_resource.gif +0 -0
  154. data/public/images/icon_resource01.gif +0 -0
  155. data/public/images/icon_resource02.gif +0 -0
  156. data/public/images/icon_resource03.gif +0 -0
  157. data/public/images/icon_resource04.gif +0 -0
  158. data/public/images/icon_rss.gif +0 -0
  159. data/public/images/icon_security.gif +0 -0
  160. data/public/images/icon_service.gif +0 -0
  161. data/public/images/icon_service_stat.gif +0 -0
  162. data/public/images/icon_stop.gif +0 -0
  163. data/public/images/icon_summary.gif +0 -0
  164. data/public/images/icon_ttl_accskey.gif +0 -0
  165. data/public/images/icon_ttl_detail.gif +0 -0
  166. data/public/images/icon_ttl_instance.gif +0 -0
  167. data/public/images/icon_ttl_personal_inf.gif +0 -0
  168. data/public/images/infra_active.gif +0 -0
  169. data/public/images/infra_passive.gif +0 -0
  170. data/public/images/lastelement_bg.gif +0 -0
  171. data/public/images/lastelement_bg.png +0 -0
  172. data/public/images/listicon_useast.gif +0 -0
  173. data/public/images/loader_ball.gif +0 -0
  174. data/public/images/loader_boxes.gif +0 -0
  175. data/public/images/loading.gif +0 -0
  176. data/public/images/mainarea_bottom_bg.gif +0 -0
  177. data/public/images/mainarea_content_bg.gif +0 -0
  178. data/public/images/mainarea_h3_bg.gif +0 -0
  179. data/public/images/mainarea_wide_bottom_bg.gif +0 -0
  180. data/public/images/mainarea_wide_content_bg.gif +0 -0
  181. data/public/images/mainarea_wide_h3_bg.gif +0 -0
  182. data/public/images/menu_list_header.gif +0 -0
  183. data/public/images/menu_list_header_current.gif +0 -0
  184. data/public/images/plat_active.gif +0 -0
  185. data/public/images/plat_passive.gif +0 -0
  186. data/public/images/regionselect_bg.gif +0 -0
  187. data/public/images/select_bg_126.gif +0 -0
  188. data/public/images/select_bg_139.gif +0 -0
  189. data/public/images/sidemenu_bg.gif +0 -0
  190. data/public/images/sidemenu_bottom.gif +0 -0
  191. data/public/images/sidemenu_top.gif +0 -0
  192. data/public/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  193. data/public/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  194. data/public/images/ui-bg_flat_10_000000_40x100.png +0 -0
  195. data/public/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  196. data/public/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  197. data/public/images/ui-bg_glass_55_fcf0ba_1x400.png +0 -0
  198. data/public/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  199. data/public/images/ui-bg_gloss-wave_100_ece8da_500x100.png +0 -0
  200. data/public/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  201. data/public/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png +0 -0
  202. data/public/images/ui-bg_highlight-hard_100_fafaf4_1x100.png +0 -0
  203. data/public/images/ui-bg_highlight-hard_15_459e00_1x100.png +0 -0
  204. data/public/images/ui-bg_highlight-hard_95_cccccc_1x100.png +0 -0
  205. data/public/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  206. data/public/images/ui-bg_highlight-soft_25_67b021_1x100.png +0 -0
  207. data/public/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  208. data/public/images/ui-bg_highlight-soft_95_ffedad_1x100.png +0 -0
  209. data/public/images/ui-bg_inset-soft_15_2b2922_1x100.png +0 -0
  210. data/public/images/ui-icons_222222_256x240.png +0 -0
  211. data/public/images/ui-icons_228ef1_256x240.png +0 -0
  212. data/public/images/ui-icons_808080_256x240.png +0 -0
  213. data/public/images/ui-icons_847e71_256x240.png +0 -0
  214. data/public/images/ui-icons_8dc262_256x240.png +0 -0
  215. data/public/images/ui-icons_cd0a0a_256x240.png +0 -0
  216. data/public/images/ui-icons_eeeeee_256x240.png +0 -0
  217. data/public/images/ui-icons_ef8c08_256x240.png +0 -0
  218. data/public/images/ui-icons_ffd27a_256x240.png +0 -0
  219. data/public/images/ui-icons_ffffff_256x240.png +0 -0
  220. data/public/images/vtip_arrow.png +0 -0
  221. data/public/javascripts/controls.js +965 -0
  222. data/public/javascripts/dcmgr_gui/application.js +91 -0
  223. data/public/javascripts/dcmgr_gui/core.js +539 -0
  224. data/public/javascripts/dcmgr_gui/dashboard_panel.js +34 -0
  225. data/public/javascripts/dcmgr_gui/host_pool_panel.js +83 -0
  226. data/public/javascripts/dcmgr_gui/image_panel.js +242 -0
  227. data/public/javascripts/dcmgr_gui/instance_panel.js +197 -0
  228. data/public/javascripts/dcmgr_gui/security_group_panel.js +196 -0
  229. data/public/javascripts/dcmgr_gui/snapshot_panel.js +168 -0
  230. data/public/javascripts/dcmgr_gui/sshkeypair_panel.js +161 -0
  231. data/public/javascripts/dcmgr_gui/storage_pool_panel.js +99 -0
  232. data/public/javascripts/dcmgr_gui/volume_panel.js +311 -0
  233. data/public/javascripts/dragdrop.js +974 -0
  234. data/public/javascripts/effects.js +1123 -0
  235. data/public/javascripts/jquery-1.4.2.min.js +154 -0
  236. data/public/javascripts/jquery-ui-1.8.4.custom.min.js +763 -0
  237. data/public/javascripts/jquery.loadmask.min.js +10 -0
  238. data/public/javascripts/jquery.tmpl.js +486 -0
  239. data/public/javascripts/jsdeferred.jquery.js +385 -0
  240. data/public/javascripts/prototype.js +6001 -0
  241. data/public/javascripts/rails.js +175 -0
  242. data/public/robots.txt +5 -0
  243. data/public/stylesheets/common.css +1236 -0
  244. data/public/stylesheets/dialog.css +67 -0
  245. data/public/stylesheets/jquery-ui-1.8.4.custom.css +572 -0
  246. data/public/stylesheets/jquery.loadmask.css +40 -0
  247. data/public/stylesheets/reset.css +71 -0
  248. data/public/stylesheets/style.css +7 -0
  249. data/public/stylesheets/vtip.css +28 -0
  250. data/script/rails +6 -0
  251. data/test/functional/accounts_controller_test.rb +8 -0
  252. data/test/functional/dialog_controller_test.rb +8 -0
  253. data/test/functional/home_controller_test.rb +8 -0
  254. data/test/functional/host_pools_controller_test.rb +8 -0
  255. data/test/functional/images_controller_test.rb +8 -0
  256. data/test/functional/information_controller_test.rb +8 -0
  257. data/test/functional/instances_controller_test.rb +8 -0
  258. data/test/functional/keypairs_controller_test.rb +8 -0
  259. data/test/functional/security_groups_controller_test.rb +8 -0
  260. data/test/functional/sessions_controller_test.rb +8 -0
  261. data/test/functional/snapshots_controller_test.rb +8 -0
  262. data/test/functional/storage_pools_controller_test.rb +8 -0
  263. data/test/functional/users_controller_test.rb +8 -0
  264. data/test/functional/volumes_controller_test.rb +8 -0
  265. data/test/performance/browsing_test.rb +9 -0
  266. data/test/test_helper.rb +13 -0
  267. data/test/unit/helpers/accounts_helper_test.rb +4 -0
  268. data/test/unit/helpers/dialog_helper_test.rb +4 -0
  269. data/test/unit/helpers/home_helper_test.rb +4 -0
  270. data/test/unit/helpers/host_pools_helper_test.rb +4 -0
  271. data/test/unit/helpers/images_helper_test.rb +4 -0
  272. data/test/unit/helpers/information_helper_test.rb +4 -0
  273. data/test/unit/helpers/instances_helper_test.rb +4 -0
  274. data/test/unit/helpers/keypairs_helper_test.rb +4 -0
  275. data/test/unit/helpers/security_groups_helper_test.rb +4 -0
  276. data/test/unit/helpers/sessions_helper_test.rb +4 -0
  277. data/test/unit/helpers/snapshots_helper_test.rb +4 -0
  278. data/test/unit/helpers/storage_pools_helper_test.rb +4 -0
  279. data/test/unit/helpers/users_helper_test.rb +4 -0
  280. data/test/unit/helpers/volumes_helper_test.rb +4 -0
  281. metadata +399 -0
@@ -0,0 +1,175 @@
1
+ (function() {
2
+ // Technique from Juriy Zaytsev
3
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
4
+ function isEventSupported(eventName) {
5
+ var el = document.createElement('div');
6
+ eventName = 'on' + eventName;
7
+ var isSupported = (eventName in el);
8
+ if (!isSupported) {
9
+ el.setAttribute(eventName, 'return;');
10
+ isSupported = typeof el[eventName] == 'function';
11
+ }
12
+ el = null;
13
+ return isSupported;
14
+ }
15
+
16
+ function isForm(element) {
17
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM'
18
+ }
19
+
20
+ function isInput(element) {
21
+ if (Object.isElement(element)) {
22
+ var name = element.nodeName.toUpperCase()
23
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA'
24
+ }
25
+ else return false
26
+ }
27
+
28
+ var submitBubbles = isEventSupported('submit'),
29
+ changeBubbles = isEventSupported('change')
30
+
31
+ if (!submitBubbles || !changeBubbles) {
32
+ // augment the Event.Handler class to observe custom events when needed
33
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
34
+ function(init, element, eventName, selector, callback) {
35
+ init(element, eventName, selector, callback)
36
+ // is the handler being attached to an element that doesn't support this event?
37
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
38
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
39
+ // "submit" => "emulated:submit"
40
+ this.eventName = 'emulated:' + this.eventName
41
+ }
42
+ }
43
+ )
44
+ }
45
+
46
+ if (!submitBubbles) {
47
+ // discover forms on the page by observing focus events which always bubble
48
+ document.on('focusin', 'form', function(focusEvent, form) {
49
+ // special handler for the real "submit" event (one-time operation)
50
+ if (!form.retrieve('emulated:submit')) {
51
+ form.on('submit', function(submitEvent) {
52
+ var emulated = form.fire('emulated:submit', submitEvent, true)
53
+ // if custom event received preventDefault, cancel the real one too
54
+ if (emulated.returnValue === false) submitEvent.preventDefault()
55
+ })
56
+ form.store('emulated:submit', true)
57
+ }
58
+ })
59
+ }
60
+
61
+ if (!changeBubbles) {
62
+ // discover form inputs on the page
63
+ document.on('focusin', 'input, select, texarea', function(focusEvent, input) {
64
+ // special handler for real "change" events
65
+ if (!input.retrieve('emulated:change')) {
66
+ input.on('change', function(changeEvent) {
67
+ input.fire('emulated:change', changeEvent, true)
68
+ })
69
+ input.store('emulated:change', true)
70
+ }
71
+ })
72
+ }
73
+
74
+ function handleRemote(element) {
75
+ var method, url, params;
76
+
77
+ var event = element.fire("ajax:before");
78
+ if (event.stopped) return false;
79
+
80
+ if (element.tagName.toLowerCase() === 'form') {
81
+ method = element.readAttribute('method') || 'post';
82
+ url = element.readAttribute('action');
83
+ params = element.serialize();
84
+ } else {
85
+ method = element.readAttribute('data-method') || 'get';
86
+ url = element.readAttribute('href');
87
+ params = {};
88
+ }
89
+
90
+ new Ajax.Request(url, {
91
+ method: method,
92
+ parameters: params,
93
+ evalScripts: true,
94
+
95
+ onComplete: function(request) { element.fire("ajax:complete", request); },
96
+ onSuccess: function(request) { element.fire("ajax:success", request); },
97
+ onFailure: function(request) { element.fire("ajax:failure", request); }
98
+ });
99
+
100
+ element.fire("ajax:after");
101
+ }
102
+
103
+ function handleMethod(element) {
104
+ var method = element.readAttribute('data-method'),
105
+ url = element.readAttribute('href'),
106
+ csrf_param = $$('meta[name=csrf-param]')[0],
107
+ csrf_token = $$('meta[name=csrf-token]')[0];
108
+
109
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
110
+ element.parentNode.insert(form);
111
+
112
+ if (method !== 'post') {
113
+ var field = new Element('input', { type: 'hidden', name: '_method', value: method });
114
+ form.insert(field);
115
+ }
116
+
117
+ if (csrf_param) {
118
+ var param = csrf_param.readAttribute('content'),
119
+ token = csrf_token.readAttribute('content'),
120
+ field = new Element('input', { type: 'hidden', name: param, value: token });
121
+ form.insert(field);
122
+ }
123
+
124
+ form.submit();
125
+ }
126
+
127
+
128
+ document.on("click", "*[data-confirm]", function(event, element) {
129
+ var message = element.readAttribute('data-confirm');
130
+ if (!confirm(message)) event.stop();
131
+ });
132
+
133
+ document.on("click", "a[data-remote]", function(event, element) {
134
+ if (event.stopped) return;
135
+ handleRemote(element);
136
+ event.stop();
137
+ });
138
+
139
+ document.on("click", "a[data-method]", function(event, element) {
140
+ if (event.stopped) return;
141
+ handleMethod(element);
142
+ event.stop();
143
+ });
144
+
145
+ document.on("submit", function(event) {
146
+ var element = event.findElement(),
147
+ message = element.readAttribute('data-confirm');
148
+ if (message && !confirm(message)) {
149
+ event.stop();
150
+ return false;
151
+ }
152
+
153
+ var inputs = element.select("input[type=submit][data-disable-with]");
154
+ inputs.each(function(input) {
155
+ input.disabled = true;
156
+ input.writeAttribute('data-original-value', input.value);
157
+ input.value = input.readAttribute('data-disable-with');
158
+ });
159
+
160
+ var element = event.findElement("form[data-remote]");
161
+ if (element) {
162
+ handleRemote(element);
163
+ event.stop();
164
+ }
165
+ });
166
+
167
+ document.on("ajax:after", "form", function(event, element) {
168
+ var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
169
+ inputs.each(function(input) {
170
+ input.value = input.readAttribute('data-original-value');
171
+ input.removeAttribute('data-original-value');
172
+ input.disabled = false;
173
+ });
174
+ });
175
+ })();
data/public/robots.txt ADDED
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,1236 @@
1
+ /* CSS Document */
2
+
3
+ body{
4
+ background-image: url(../images/body_bg.gif);
5
+ background-attachment:fixed;
6
+ background-repeat: repeat-x;
7
+ background-position: bottom;
8
+ }
9
+
10
+ #head_gradation{
11
+ height: 235px;
12
+ background-image: url(../images/head_gradation_bg.gif);
13
+ background-repeat: repeat-x;
14
+ z-index: 0;
15
+ }
16
+
17
+ #content_wrapper{
18
+ margin: -235px auto 0 auto;
19
+ width: 972px;
20
+ }
21
+
22
+
23
+ /*------------------------------header------------------------------*/
24
+
25
+ #header h1{
26
+ margin-top: 10px;
27
+ padding: 0 0 13px 0;
28
+ width: 364px;
29
+ height: 40px;
30
+ background: url(../images/header_logo.gif) no-repeat;
31
+ text-indent: -9999px;
32
+ }
33
+ #header h1 a{
34
+ display: block;
35
+ width: 100%;
36
+ height: 100%;
37
+ }
38
+
39
+
40
+ /********** tab-navigation **********/
41
+
42
+ #header ul{
43
+ float: left;
44
+ width: 364px;
45
+ height: 36px;
46
+ }
47
+ #header ul li{
48
+ float: left;
49
+ height: 36px;
50
+ }
51
+ #header ul li+li{
52
+ margin-left: 3px;
53
+ }
54
+ #header ul li h2{
55
+ width: 100%;
56
+ height: 100%;
57
+ text-indent: -9999px;
58
+ }
59
+ #header ul li a{
60
+ display: block;
61
+ width: 100%;
62
+ height: 100%;
63
+ }
64
+ #header ul li.infra-act{
65
+ width: 134px;
66
+ background: url(../images/infra_active.gif) no-repeat;
67
+ }
68
+ #header ul li.infra-pas{
69
+ width: 134px;
70
+ background: url(../images/infra_passive.gif) no-repeat;
71
+ }
72
+ #header ul li.plat-act{
73
+ width: 104px;
74
+ background: url(../images/plat_active.gif) no-repeat;
75
+ }
76
+ #header ul li.plat-pas{
77
+ width: 104px;
78
+ background: url(../images/plat_passive.gif) no-repeat;
79
+ }
80
+ #header ul li.app-act{
81
+ width: 120px;
82
+ background: url(../images/app_active.gif) no-repeat;
83
+ }
84
+ #header ul li.app-pas{
85
+ width: 120px;
86
+ background: url(../images/app_passive.gif) no-repeat;
87
+ }
88
+
89
+
90
+ /********** greeting **********/
91
+
92
+ #header p{
93
+ float: left;
94
+ margin: 14px 14px 0 0;
95
+ width: 594px;
96
+ text-align: right;
97
+ color: #FFFFFF;
98
+ font-size: 80%;
99
+ }
100
+ #header p .greeting{
101
+ margin-right: 12px;
102
+ color: #FEDFC6;
103
+ }
104
+ #header p .spacer{
105
+ padding: 0 12px;
106
+ }
107
+ #header p a{
108
+ color: #FFFFFF;
109
+ }
110
+ #header p a:hover{
111
+ text-decoration: underline;
112
+ }
113
+
114
+
115
+ /*------------------------------content------------------------------*/
116
+
117
+ #content_header{
118
+ width: 972px;
119
+ height: 20px;
120
+ background: url(../images/content_head_bg.gif) no-repeat;
121
+ clear: both;
122
+ }
123
+
124
+ #content{
125
+ padding: 0 12px 0 10px;
126
+ background: url(../images/content_bg.png) repeat-y;
127
+ }
128
+
129
+ #content #sidemenu{
130
+ float: left;
131
+ margin-right: 10px;
132
+ padding-left: 11px;
133
+ width: 219px;
134
+ }
135
+
136
+ /********** regionselect **********/
137
+
138
+ #content #sidemenu #regionselect{
139
+ margin-left: -1px;
140
+ padding: 9px 0 0 66px;
141
+ width: 145px;
142
+ height: 24px;
143
+ background: url(../images/regionselect_bg.gif) no-repeat;
144
+ color: #034997;
145
+ cursor: pointer;
146
+ }
147
+ #content #sidemenu #regionselect img{
148
+ margin-right: 10px;
149
+ }
150
+
151
+ #content #sidemenu ul#regionmenu{
152
+ margin-left: -1px;
153
+ display: none;
154
+ border-top: 1px solid #cccccc;
155
+ }
156
+ #content #sidemenu ul#regionmenu li{
157
+ width: 209px;
158
+ background: #FDFDFD;
159
+ border-left: 1px solid #cccccc;
160
+ border-right: 1px solid #cccccc;
161
+ border-bottom: 1px solid #cccccc;
162
+ }
163
+ #content #sidemenu ul#regionmenu li:last-child{
164
+ -webkit-border-radius: 0 0 4px 4px; /* SafariÅAGoogle Chrome */
165
+ -moz-border-radius: 0 0 4px 4px; /* Firefox */
166
+ }
167
+ #content #sidemenu ul#regionmenu li a{
168
+ display: block;
169
+ padding: 5px 0;
170
+ padding-left: 64px;
171
+ width: 145px;
172
+ color: #034997;
173
+ }
174
+ #content #sidemenu ul#regionmenu li a:hover{
175
+ background: #9D9D9D;
176
+ }
177
+ #content #sidemenu ul#regionmenu li img{
178
+ margin-right: 10px;
179
+ }
180
+
181
+
182
+ /********** sidemenu **********/
183
+
184
+ #content #sidemenu .sidemenu_top{
185
+ margin-top: 10px;
186
+ width: 209px;
187
+ height: 4px;
188
+ background: url(../images/sidemenu_top.gif) no-repeat;
189
+ }
190
+ #content #sidemenu ul.classify_parent{
191
+ width: 209px;
192
+ background: #FFFFFF;
193
+ font-family: "LucidaGrande", "Myriad Pro";
194
+ }
195
+ #content #sidemenu ul.classify_parent li.parent{
196
+ padding: 10px 0;
197
+ }
198
+ #content #sidemenu ul.classify_parent li.parent img{
199
+ margin: 0 11px;
200
+ vertical-align: middle;
201
+ }
202
+ #content #sidemenu ul.classify_parent li.parent h3{
203
+ margin-bottom: 0px;
204
+ color: #909090;
205
+ }
206
+ #content #sidemenu ul.classify_parent li+li{
207
+ border-top: 1px solid #F0F0F0;
208
+ }
209
+ #content #sidemenu ul.classify_parent li.parent ul li{
210
+ margin-left: 60px;
211
+ font-weight: bold;
212
+ font-size: 90%;
213
+ list-style-image: url(../images/menu_list_header.gif);
214
+ }
215
+ #content #sidemenu ul.classify_parent li.parent ul li.current{
216
+ list-style-image: url(../images/menu_list_header_current.gif);
217
+ }
218
+ #content #sidemenu ul.classify_parent li.parent ul li a{
219
+ color: #034997;
220
+ }
221
+ #content #sidemenu ul.classify_parent li.parent ul li a:hover{
222
+ text-decoration: underline;
223
+ }
224
+ #content #sidemenu ul.classify_parent li.parent ul li.current a{
225
+ color: #E86700;
226
+ }
227
+ #content #sidemenu .sidemenu_bottom{
228
+ width: 209px;
229
+ height: 4px;
230
+ background: url(../images/sidemenu_bottom.gif) no-repeat;
231
+ }
232
+
233
+
234
+ /********** mainarea **********/
235
+
236
+ #content #mainarea{
237
+ float: left;
238
+ margin-right: 10px;
239
+ }
240
+ #content #mainarea h3{
241
+ padding: 0 0 0 18px;
242
+ width: 460px;
243
+ height: 34px;
244
+ background: url(../images/mainarea_h3_bg.gif) no-repeat;
245
+ color: #5E5E5E;
246
+ font-size: 22px;
247
+ line-height: 30px;
248
+ text-shadow:1px 1px 0 rgba(255,255,255,0.7);
249
+ font-family: "LucidaGrande", "Myriad Pro";
250
+ }
251
+ #content #mainarea h3 img{
252
+ margin-top: 0px;
253
+ margin-right: 5px;
254
+ vertical-align: middle;
255
+ }
256
+ #content #mainarea .maincontent{
257
+ padding: 0 20px 0px 20px;
258
+ width: 430px;
259
+ background: url(../images/mainarea_content_bg.gif) repeat-y;
260
+ }
261
+ #content #mainarea .maincontent p.lead{
262
+ float: left;
263
+ margin: 15px 0;
264
+ width: 300px;
265
+ font-size: 90%;
266
+ line-height: 140%;
267
+ }
268
+ #content #mainarea .maincontent a.refresh{
269
+ float: left;
270
+ display: block;
271
+ margin: 15px 0 0 38px;
272
+ width: 89px;
273
+ height: 28px;
274
+ background: url(../images/btn_refresh.gif) no-repeat;
275
+ text-indent: -9999px;
276
+ }
277
+ #content #mainarea .maincontent a.refresh:hover{
278
+ background: url(../images/btn_refresh.gif) 0px -28px;
279
+ }
280
+
281
+
282
+ /********** resource-list **********/
283
+
284
+ #content #mainarea .maincontent ul.resource{
285
+ width: 100%;
286
+ clear: both;
287
+ border-top: 1px dotted #D0D0D0;
288
+ }
289
+ #content #mainarea .maincontent ul.resource+ul.resource{
290
+ border-top: 1px dotted #D0D0D0;
291
+ border-bottom: 1px dotted #D0D0D0;
292
+ }
293
+ #content #mainarea .maincontent ul.resource li{
294
+ float: left;
295
+ margin: 10px 0 0 0;
296
+ padding-bottom: 10px;
297
+ width: 215px;
298
+ font-weight: bold;
299
+ font-family: "LucidaGrande", "Myriad Pro";
300
+ }
301
+ #content #mainarea .maincontent ul.resource li a{
302
+ line-height: 20px;
303
+ color: #034997;
304
+ }
305
+ #content #mainarea .maincontent ul.resource li a:hover{
306
+ text-decoration: underline;
307
+ }
308
+ #content #mainarea .maincontent ul.resource li img{
309
+ margin-right: 10px;
310
+ vertical-align: middle;
311
+ }
312
+
313
+
314
+ /********** health-list **********/
315
+
316
+ #content #mainarea .maincontent ul.health li{
317
+ padding: 15px 0;
318
+ }
319
+
320
+ #content #mainarea .maincontent ul.health li+li{
321
+ border-top: 1px dotted #D0D0D0;
322
+ }
323
+
324
+ #content #mainarea .maincontent ul.health li .eachservice{
325
+ float: left;
326
+ width: 334px;
327
+ font-size: 90%;
328
+ }
329
+ #content #mainarea .maincontent ul.health li .eachservice img{
330
+ margin-right: 10px;
331
+ vertical-align: middle;
332
+ }
333
+
334
+ #content #mainarea .maincontent ul.health li .eachservice p{
335
+ margin: 5px 0 0 29px;
336
+ }
337
+ #content #mainarea .maincontent ul.health li a.health_detail{
338
+ float: left;
339
+ display: block;
340
+ width: 96px;
341
+ height: 22px;
342
+ background: url(../images/btn_healthdetail.gif) no-repeat;
343
+ text-indent: -9999px;
344
+ }
345
+ #content #mainarea .maincontent ul.health li a.health_detail:hover{
346
+ background: url(../images/btn_healthdetail.gif) 0px -22px;
347
+ }
348
+
349
+ #content #mainarea .btm_maincontent{
350
+ width: 470px;
351
+ height: 4px;
352
+ background: url(../images/mainarea_bottom_bg.gif) repeat-y;
353
+ }
354
+
355
+
356
+ /********** information-area **********/
357
+
358
+ #content #informationarea{
359
+ float: left;
360
+ padding-right: 10px;
361
+ margin-bottom: 5px;
362
+ width: 220px;
363
+ }
364
+ #content #informationarea .title{
365
+ margin: 10px 0 0 0;
366
+ padding: 0 0 3px 0;
367
+ border-bottom: 2px solid #F4F4F4;
368
+ }
369
+ #content #informationarea .title h3{
370
+ float: left;
371
+ padding-top: 3px;
372
+ width: 200px;
373
+ color: #01306E;
374
+ font-size: 14px;
375
+ }
376
+ #content #informationarea ul li{
377
+ margin-top: 15px;
378
+ }
379
+ #content #informationarea ul li h4{
380
+ margin-bottom: 5px;
381
+ font-size: 80%;
382
+ color: #999999
383
+ }
384
+ #content #informationarea ul li p{
385
+ font-size: 85%;
386
+ line-height: 120%;
387
+ }
388
+
389
+
390
+ /********** mainarea_wide **********/
391
+
392
+ #content #mainarea_wide{
393
+ float: left;
394
+ width: 700px;
395
+ }
396
+ #content #mainarea_wide h3{
397
+ padding: 2px 0 0 18px;
398
+ width: 690px;
399
+ height: 32px;
400
+ background: url(../images/mainarea_wide_h3_bg.gif) no-repeat;
401
+ color: #5E5E5E;
402
+ font-size: 22px;
403
+ line-height: 30px;
404
+ text-shadow:1px 1px 0 rgba(255,255,255,0.7);
405
+ font-family: "LucidaGrande", "Myriad Pro";
406
+ }
407
+ #content #mainarea_wide h3 img{
408
+ margin-top: -4px;
409
+ /margin-top: -2px;
410
+ margin-right: 5px;
411
+ vertical-align: middle;
412
+ }
413
+ #content #mainarea_wide h3 a.showhide{
414
+ display: block;
415
+ position: relative;
416
+ margin: -26px 0 0 646px;
417
+ width: 25px;
418
+ height: 21px;
419
+ background: url(../images/btn_hide.gif) no-repeat;
420
+ }
421
+
422
+
423
+ #content #mainarea_wide .maincontent{
424
+ padding: 15px 0px 0px 0px;
425
+ width: 700px;
426
+ background: url(../images/mainarea_wide_content_bg.gif) repeat-y;
427
+ }
428
+
429
+
430
+ #content #mainarea_wide .controller{
431
+ margin: -15px 4px 15px 4px;
432
+ padding: 6px 7px;
433
+ width: 678px;
434
+ background: #F7F7F7;
435
+ border-bottom: 1px solid #EEEEEE;
436
+ font-size: 85%;
437
+ }
438
+ #content #mainarea_wide .controller .l_float{
439
+ float: left;
440
+ width: 488px;
441
+ }
442
+ #content #mainarea_wide .controller .r_float{
443
+ float: right;
444
+ width: 190px;
445
+ }
446
+ #content #mainarea_wide .controller a.launch_instance{
447
+ display: block;
448
+ float: left;
449
+ width: 119px;
450
+ height: 26px;
451
+ background: url(../images/btn_launch.gif) no-repeat;
452
+ text-indent: -9999px;
453
+ font-size: 0;
454
+ line-height: 0;
455
+ }
456
+ #content #mainarea_wide .controller #instanceaction{
457
+ float: left;
458
+ margin-left: 7px;
459
+ padding: 7px 0 0 10px;
460
+ width: 116px;
461
+ height: 19px;
462
+ background: url(../images/select_bg_126.gif) no-repeat;
463
+ font-size: 10px;
464
+ font-weight: bold;
465
+ color: #034997;
466
+ cursor: pointer;
467
+ }
468
+
469
+ #content #mainarea_wide ul#actionlist{
470
+ position: fixed;
471
+ margin: 26px 0 0 7px;
472
+ /margin: 32px 0 0 -552px;
473
+ padding: 0;
474
+ border-top: 1px solid #cccccc;
475
+ display: none;
476
+ }
477
+
478
+ #content #mainarea_wide ul#actionlist li{
479
+ width: 124px;
480
+ background: #FDFDFD;
481
+ border-left: 1px solid #cccccc;
482
+ border-right: 1px solid #cccccc;
483
+ border-bottom: 1px solid #cccccc;
484
+ font-size: 10px;
485
+ }
486
+
487
+ #content #mainarea_wide ul#actionlist ul#instanceaction{
488
+ background: none;
489
+ margin: -7px 0 0 -10px;
490
+ }
491
+
492
+ #content #mainarea_wide ul#actionlist ul#instanceaction li{
493
+ font-size: 10px;
494
+ }
495
+
496
+ #content #mainarea_wide ul#actionlist li:last-child{
497
+ -webkit-border-radius: 0 0 4px 4px; /* SafariÅAGoogle Chrome */
498
+ -moz-border-radius: 0 0 4px 4px; /* Firefox */
499
+ }
500
+
501
+ #content #mainarea_wide ul#actionlist li{
502
+ font-size :10px;
503
+ width: 124px;
504
+ color: #034997;
505
+ }
506
+
507
+ #content #mainarea_wide ul#actionlist li#actionparent{
508
+ font-size :11px;
509
+ width: 118px;
510
+ padding :3px;
511
+ color: #034997;
512
+ }
513
+
514
+
515
+ #content #mainarea_wide ul#actionlist li a{
516
+ display: block;
517
+ padding: 5px 0 5px 7px;
518
+ width: 117px;
519
+ color: #034997;
520
+ font-size:9px;
521
+ }
522
+
523
+ #content #mainarea_wide ul#actionlist li a:hover{
524
+ background: #9D9D9D;
525
+ }
526
+
527
+
528
+ #content #mainarea_wide .controller #reservedinstance{
529
+ float: left;
530
+ margin-left: 7px;
531
+ margin-right: 191px;
532
+ padding: 7px 0 0 10px;
533
+ width: 129px;
534
+ height: 19px;
535
+ background: url(../images/select_bg_139.gif) no-repeat;
536
+ font-size: 10px;
537
+ font-weight: bold;
538
+ color: #034997;
539
+ cursor: pointer;
540
+ }
541
+
542
+ #content #mainarea_wide ul#rsvinstancelist{
543
+ position: fixed;
544
+ margin: 26px 0 0 140px;
545
+ /margin: 32px 0 0 -419px;
546
+ padding: 0;
547
+ border-top: 1px solid #cccccc;
548
+ display: none;
549
+ }
550
+
551
+ #content #mainarea_wide ul#rsvinstancelist li{
552
+ width: 137px;
553
+ background: #FDFDFD;
554
+ border-left: 1px solid #cccccc;
555
+ border-right: 1px solid #cccccc;
556
+ border-bottom: 1px solid #cccccc;
557
+ font-size: 10px;
558
+ }
559
+ #content #mainarea_wide ul#rsvinstancelist li:last-child{
560
+ -webkit-border-radius: 0 0 4px 4px; /* SafariÅAGoogle Chrome */
561
+ -moz-border-radius: 0 0 4px 4px; /* Firefox */
562
+ }
563
+ #content #mainarea_wide ul#rsvinstancelist li a{
564
+ display: block;
565
+ padding: 5px 0 5px 7px;
566
+ width: 130px;
567
+ color: #034997;
568
+ }
569
+ #content #mainarea_wide ul#rsvinstancelist li a:hover{
570
+ background: #9D9D9D;
571
+ }
572
+
573
+
574
+ #content #mainarea_wide .controller a.create_ssh_keypair{
575
+ display: block;
576
+ float: left;
577
+ width: 115px;
578
+ height: 26px;
579
+ background: url(../images/btn_createkey.gif) no-repeat;
580
+ text-indent: -9999px;
581
+ font-size: 0;
582
+ line-height: 0;
583
+ }
584
+ #content #mainarea_wide .controller a.delete_ssh_keypair{
585
+ display: block;
586
+ float: left;
587
+ margin-left: 7px;
588
+ margin-right: 401px;
589
+ width: 66px;
590
+ height: 26px;
591
+ background: url(../images/btn_deletekey.gif) no-repeat;
592
+ text-indent: -9999px;
593
+ font-size: 0;
594
+ line-height: 0;
595
+ }
596
+
597
+ #content #mainarea_wide .controller a.create_security_group{
598
+ display: block;
599
+ float: left;
600
+ width: 140px;
601
+ height: 26px;
602
+ background: url(../images/btn_create_security_group.gif) no-repeat;
603
+ text-indent: -9999px;
604
+ font-size: 0;
605
+ line-height: 0;
606
+ }
607
+
608
+ #content #mainarea_wide .controller a.delete_security_group{
609
+ display: block;
610
+ float: left;
611
+ width: 140px;
612
+ height: 26px;
613
+ background: url(../images/btn_delete_security_group.gif) no-repeat;
614
+ text-indent: -9999px;
615
+ font-size: 0;
616
+ line-height: 0;
617
+ margin-left: 7px;
618
+ }
619
+
620
+ #content #mainarea_wide .controller a.update_security_group{
621
+ display: block;
622
+ float: left;
623
+ width: 119px;
624
+ height: 26px;
625
+ background: url(../images/btn_update_security_group.gif) no-repeat;
626
+ text-indent: -9999px;
627
+ font-size: 0;
628
+ line-height: 0;
629
+ }
630
+
631
+ #content #mainarea_wide .controller a.refresh{
632
+ display: block;
633
+ float: left;
634
+ width: 89px;
635
+ height: 28px;
636
+ background: url(../images/btn_refresh.gif) no-repeat;
637
+ text-indent: -9999px;
638
+ font-size: 0;
639
+ line-height: 0;
640
+ }
641
+ #content #mainarea_wide .controller a.refresh:hover{
642
+ background: url(../images/btn_refresh.gif) 0 -28px;
643
+ }
644
+ #content #mainarea_wide .controller .text{
645
+ display: block;
646
+ float: left;
647
+ margin: 3px 5px 0 0;
648
+ width: 50px;
649
+ font-weight: bold;
650
+ }
651
+ #content #mainarea_wide .controller .select{
652
+ float: left;
653
+ margin-right: 5px;
654
+ width: 100px;
655
+ height: 20px;
656
+ font-size: 90%;
657
+ }
658
+ #content #mainarea_wide .controller .type{
659
+ float: left;
660
+ margin-right: 5px;
661
+ width: 130px;
662
+ height: 20px;
663
+ font-size: 95%;
664
+ }
665
+ #content #mainarea_wide .controller .search{
666
+ float: left;
667
+ width: 100px;
668
+ height: 14px;
669
+ }
670
+ #content #mainarea_wide .controller .prev{
671
+ display: block;
672
+ float: left;
673
+ width: 25px;
674
+ height: 24px;
675
+ background: url(../images/btn_prev.gif) no-repeat;
676
+ }
677
+ #content #mainarea_wide .controller p{
678
+ float: left;
679
+ height: 22px;
680
+ width: 140px;
681
+ background: #FFFFFF;
682
+ line-height: 22px;
683
+ text-align: center;
684
+ border-top: 1px solid #C9C9C9;
685
+ border-bottom: 1px solid #C9C9C9;
686
+ }
687
+ #content #mainarea_wide .controller .next{
688
+ display: block;
689
+ float: left;
690
+ width: 25px;
691
+ height: 24px;
692
+ background: url(../images/btn_next.gif) no-repeat;
693
+ }
694
+
695
+ #content #mainarea_wide a.savechange{
696
+ display: block;
697
+ margin: 0 0 0 569px;
698
+ width: 111px;
699
+ height: 30px;
700
+ background: url(../images/btn_savechange.gif) no-repeat;
701
+ }
702
+ #content #mainarea_wide a.savechange:hover{
703
+ background-position: 0 -30px;
704
+ }
705
+
706
+
707
+
708
+
709
+ #content #mainarea_wide .display_area{
710
+ padding-bottom: 15px;
711
+ width: 660px;
712
+ }
713
+
714
+ #content #mainarea_wide .display_area h4.ptn01{
715
+ margin: 0 0 5px 20px;
716
+ padding: 0;
717
+ font-size: 120%;
718
+ color: #034997;
719
+ }
720
+
721
+ #content #mainarea_wide .display_area h4.ptn01 img{
722
+ margin-right: 5px;
723
+ vertical-align: middle;
724
+ }
725
+
726
+ #content #mainarea_wide .display_area h4.ptn01 .instansid{
727
+ margin-left: 3px;
728
+ font-weight: normal;
729
+ color: #5399E7;
730
+ }
731
+
732
+
733
+
734
+ #content #mainarea_wide #btm_maincontent_wide{
735
+ margin-bottom: 10px;
736
+ width: 700px;
737
+ height: 4px;
738
+ background: url(../images/mainarea_wide_bottom_bg.gif) repeat-y;
739
+ }
740
+
741
+ #content #mainarea_wide #btm_maincontent_wide_last{
742
+ width: 700px;
743
+ height: 4px;
744
+ background: url(../images/mainarea_wide_bottom_bg.gif) repeat-y;
745
+ }
746
+
747
+ #content #mainarea_wide table tr .listcheckbox {
748
+ width:30px;
749
+ height:25px;
750
+ }
751
+ #content #mainarea_wide table tr .listradiobutton {
752
+ width:20px;
753
+ height:25px;
754
+ }
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+ /********** table **********/
763
+
764
+ /* ptn01 */
765
+ #content #mainarea_wide table.ptn01{
766
+ margin-left: 20px;
767
+ width: 660px;
768
+ border-collapse: collapse;
769
+ }
770
+ #content #mainarea_wide table.ptn01 tr:nth-child(odd){
771
+ background: #daf2f7;
772
+ }
773
+ #content #mainarea_wide table.ptn01 tr:nth-child(even){
774
+ background: #FFFFFF;
775
+ }
776
+ #content #mainarea_wide table.ptn01 tr th{
777
+ padding: 5px;
778
+ text-align: center;
779
+ background: #F5F5EB;
780
+ border: 1px solid #cccccc;
781
+ font-weight: bold;
782
+ }
783
+ #content #mainarea_wide table.ptn01 tr td{
784
+ padding: 5px;
785
+ border: 1px solid #cccccc;
786
+ }
787
+ #content #mainarea_wide table.ptn01 tr td.center{
788
+ text-align: center;
789
+ }
790
+
791
+ /* ptn02 */
792
+ #content #mainarea_wide table.a{
793
+ margin-left: 20px;
794
+ width: 660px;
795
+ border-collapse: collapse;
796
+ border-top: 1px solid #cccccc;
797
+ border-bottom: 1px solid #cccccc;
798
+ }
799
+ #content #mainarea_wide table.ptn02 tr td{
800
+ padding: 5px;
801
+ width: 204px;
802
+ border-bottom: 1px solid #cccccc;
803
+ }
804
+ #content #mainarea_wide table.ptn02 tr td.title{
805
+ width: 120px;
806
+ font-weight: bold;
807
+ }
808
+ #content #mainarea_wide table.ptn02 tr td.padcell{
809
+ width: 6px;
810
+ border: none;
811
+ }
812
+
813
+ /* ptn03 */
814
+ #content #mainarea_wide table.ptn03{
815
+ margin-left: 20px;
816
+ width: 660px;
817
+ border-collapse: collapse;
818
+ }
819
+ #content #mainarea_wide table.ptn03 tr th{
820
+ padding: 5px;
821
+ text-align: center;
822
+ background: #F5F5EB;
823
+ border-top: 1px solid #cccccc;
824
+ border-bottom: 1px solid #cccccc;
825
+ font-weight: bold;
826
+ }
827
+ #content #mainarea_wide table.ptn03 tr th.rss{
828
+ text-align: left;
829
+ }
830
+ #content #mainarea_wide table.ptn03 tr td{
831
+ padding: 5px;
832
+ width: 270px;
833
+ border-bottom: 1px solid #cccccc;
834
+ text-align: center;
835
+ vertical-align: middle;
836
+ }
837
+ #content #mainarea_wide table.ptn03 tr td.status{
838
+ width: 275px;
839
+ text-align: left;
840
+ }
841
+ #content #mainarea_wide table.ptn03 tr td.icon{
842
+ width: 20px;
843
+ padding-right: 0px;
844
+ padding-left: 20px;
845
+ }
846
+ #content #mainarea_wide table.ptn03 tr td.rss{
847
+ width: 20px;
848
+ padding-right: 20px;
849
+ }
850
+
851
+ /* ptn04 */
852
+ #content #mainarea_wide table.ptn04{
853
+ margin-left: 20px;
854
+ width: 660px;
855
+ border-collapse: collapse;
856
+ }
857
+ #content #mainarea_wide table.ptn04 tr:nth-child(odd){
858
+ background: #daf2f7;
859
+ }
860
+ #content #mainarea_wide table.ptn04 tr:nth-child(even){
861
+ background: #FFFFFF;
862
+ }
863
+ #content #mainarea_wide table.ptn04 tr th{
864
+ padding: 5px;
865
+ width: 474px;
866
+ background: #F5F5EB;
867
+ border: 1px solid #cccccc;
868
+ font-weight: bold;
869
+ text-align: center;
870
+ }
871
+ #content #mainarea_wide table.ptn04 tr th.icon{
872
+ width: 20px;
873
+ }
874
+ #content #mainarea_wide table.ptn04 tr th.show_key{
875
+ width: 136px;
876
+ text-align: center;
877
+ }
878
+ #content #mainarea_wide table.ptn04 tr td{
879
+ padding: 5px;
880
+ border: 1px solid #cccccc;
881
+ vertical-align: middle;
882
+ }
883
+ #content #mainarea_wide table.ptn04 tr td a.show_key{
884
+ display: block;
885
+ width: 146px;
886
+ height: 22px;
887
+ text-indent: -9999px;
888
+ font-size: 0;
889
+ line-height: 0;
890
+ background: url(../images/btn_show_accesskey.png) no-repeat;
891
+ }
892
+ #content #mainarea_wide table.ptn04 tr td a.show_key:hover{
893
+ background-position: 0 -22px;
894
+ }
895
+
896
+ /* ptn05 */
897
+ #content #mainarea_wide table.ptn05{
898
+ margin-left: 20px;
899
+ width: 660px;
900
+ border-collapse: collapse;
901
+ }
902
+ #content #mainarea_wide table.ptn05 tr td{
903
+ padding: 5px;
904
+ vertical-align: center;
905
+ border-top: 1px solid #CCCCCC;
906
+ border-bottom: 1px solid #CCCCCC;
907
+ }
908
+ #content #mainarea_wide table.ptn05 tr td .textblock{
909
+ display: block;
910
+ float: left;
911
+ line-height: 23px;
912
+ }
913
+ #content #mainarea_wide table.ptn05 tr td a.change{
914
+ display: block;
915
+ float: left;
916
+ margin-left: 10px;
917
+ width: 64px;
918
+ height: 23px;
919
+ background: url(../images/btn_change.gif) no-repeat;
920
+ }
921
+ #content #mainarea_wide table.ptn05 tr td a.change:hover{
922
+ background-position: 0 -23px;
923
+ }
924
+ #content #mainarea_wide table.ptn05 tr td.color1{
925
+ width: 178px;
926
+ background: #F5F5EB;
927
+ text-align: right;
928
+ vertical-align: middle;
929
+ }
930
+ #content #mainarea_wide table.ptn05 tr td.color2{
931
+ width: 178px;
932
+ background: #F3F3F3;
933
+ text-align: right;
934
+ }
935
+ #content #mainarea_wide table.ptn05 tr td .small{
936
+ font-size: 80%;
937
+ line-height: 160%;
938
+ }
939
+ #content #mainarea_wide table.ptn05 tr td input.type01{
940
+ width: 270px;
941
+ }
942
+ #content #mainarea_wide table.ptn05 tr td input.type02{
943
+ width: 150px;
944
+ }
945
+ #content #mainarea_wide table.ptn05 tr td select{
946
+ width: 290px;
947
+ }
948
+
949
+ /* ptn07 */
950
+ #content #mainarea_wide table.a{
951
+ margin-left: 20px;
952
+ width: 660px;
953
+ border-collapse: collapse;
954
+ border-top: 1px solid #cccccc;
955
+ border-bottom: 1px solid #cccccc;
956
+ }
957
+ #content #mainarea_wide table.ptn07 tr td{
958
+ padding: 5px;
959
+ width: 549;
960
+ border-bottom: 1px solid #cccccc;
961
+ }
962
+ #content #mainarea_wide table.ptn07 tr td.title{
963
+ width: 74px;
964
+ font-weight: bold;
965
+ }
966
+ #content #mainarea_wide table.ptn07 tr td.padcell{
967
+ width: 6px;
968
+ border: none;
969
+ }
970
+
971
+ /* ptn08 */
972
+ #content #mainarea_wide table.ptn08{
973
+ margin-left: 20px;
974
+ width: 660px;
975
+ border-collapse: collapse;
976
+ }
977
+ #content #mainarea_wide table.ptn08 tr td{
978
+ padding: 5px;
979
+ vertical-align: center;
980
+ border-top: 1px solid #CCCCCC;
981
+ border-bottom: 1px solid #CCCCCC;
982
+ }
983
+ #content #mainarea_wide table.ptn08 tr td .textblock{
984
+ display: block;
985
+ float: left;
986
+ line-height: 23px;
987
+ }
988
+ #content #mainarea_wide table.ptn08 tr td a.change{
989
+ display: block;
990
+ float: left;
991
+ margin-left: 10px;
992
+ width: 64px;
993
+ height: 23px;
994
+ background: url(../images/btn_change.gif) no-repeat;
995
+ }
996
+ #content #mainarea_wide table.ptn08 tr td a.change:hover{
997
+ background-position: 0 -23px;
998
+ }
999
+ #content #mainarea_wide table.ptn08 tr td.color1{
1000
+ width: 178px;
1001
+ background: #F5F5EB;
1002
+ text-align: right;
1003
+ vertical-align: middle;
1004
+ }
1005
+ #content #mainarea_wide table.ptn08 tr td.color2{
1006
+ width: 178px;
1007
+ background: #F3F3F3;
1008
+ text-align: right;
1009
+ }
1010
+ #content #mainarea_wide table.ptn08 tr td .small{
1011
+ font-size: 80%;
1012
+ line-height: 160%;
1013
+ }
1014
+ #content #mainarea_wide table.ptn08 tr td input.type01{
1015
+ width: 270px;
1016
+ }
1017
+ #content #mainarea_wide table.ptn08 tr td input.type02{
1018
+ width: 150px;
1019
+ }
1020
+ #content #mainarea_wide table.ptn08 tr td select{
1021
+ width: 290px;
1022
+ }
1023
+ /*------------------------------Add CSS ------------------------------*/
1024
+
1025
+ #content #mainarea_wide .controller a.register_new_ami{
1026
+ display: block;
1027
+ float: left;
1028
+ width: 119px;
1029
+ height: 26px;
1030
+ background: url(../images/btn_register_new_ami.gif) no-repeat;
1031
+ text-indent: -9999px;
1032
+ font-size: 0;
1033
+ line-height: 0;
1034
+ margin-left:7px;
1035
+ }
1036
+ #content #mainarea_wide .controller a.de_register{
1037
+ display: block;
1038
+ float: left;
1039
+ width: 119px;
1040
+ height: 26px;
1041
+ background: url(../images/btn_de_register.gif) no-repeat;
1042
+ text-indent: -9999px;
1043
+ font-size: 0;
1044
+ line-height: 0;
1045
+ margin-left:7px;
1046
+ }
1047
+
1048
+ #content #mainarea_wide .controller a.create_volume{
1049
+ display: block;
1050
+ float: left;
1051
+ width: 119px;
1052
+ height: 26px;
1053
+ background: url(../images/btn_create_volume.gif) no-repeat;
1054
+ text-indent: -9999px;
1055
+ font-size: 0;
1056
+ line-height: 0;
1057
+ }
1058
+
1059
+ #content #mainarea_wide .controller a.delete_volume{
1060
+ display: block;
1061
+ float: left;
1062
+ width: 119px;
1063
+ height: 26px;
1064
+ background: url(../images/btn_delete_volume.gif) no-repeat;
1065
+ text-indent: -9999px;
1066
+ font-size: 0;
1067
+ line-height: 0;
1068
+ margin-left:7px;
1069
+ }
1070
+
1071
+ #content #mainarea_wide .controller a.delete_snapshot{
1072
+ display: block;
1073
+ float: left;
1074
+ width: 119px;
1075
+ height: 26px;
1076
+ background: url(../images/btn_delete_snapshot.gif) no-repeat;
1077
+ text-indent: -9999px;
1078
+ font-size: 0;
1079
+ line-height: 0;
1080
+ margin-left:7px;
1081
+ }
1082
+
1083
+ #content #mainarea_wide .controller a.create_snapshot{
1084
+ display: block;
1085
+ float: left;
1086
+ width: 119px;
1087
+ height: 26px;
1088
+ background: url(../images/btn_create_snapshot.gif) no-repeat;
1089
+ text-indent: -9999px;
1090
+ font-size: 0;
1091
+ line-height: 0;
1092
+ margin-left:7px;
1093
+ }
1094
+
1095
+ #content #mainarea_wide .controller #volumeaction{
1096
+ float: left;
1097
+ margin-left: 7px;
1098
+ padding: 7px 0 0 10px;
1099
+ width: 116px;
1100
+ height: 19px;
1101
+ background: url(../images/select_bg_126.gif) no-repeat;
1102
+ font-size: 10px;
1103
+ font-weight: bold;
1104
+ color: #034997;
1105
+ cursor: pointer;
1106
+ }
1107
+
1108
+ #content #mainarea_wide ul#volumelist{
1109
+ position: fixed;
1110
+ margin: 26px 0 0 126px;
1111
+ /margin: 32px 0 0 -552px;
1112
+ padding: 0;
1113
+ border-top: 1px solid #cccccc;
1114
+ display: none;
1115
+ }
1116
+
1117
+ #content #mainarea_wide ul#volumelist li{
1118
+ width: 124px;
1119
+ background: #FDFDFD;
1120
+ border-left: 1px solid #cccccc;
1121
+ border-right: 1px solid #cccccc;
1122
+ border-bottom: 1px solid #cccccc;
1123
+ font-size: 10px;
1124
+ }
1125
+ #content #mainarea_wide ul#volumelist li:last-child{
1126
+ -webkit-border-radius: 0 0 4px 4px; /* Safari、Google Chrome */
1127
+ -moz-border-radius: 0 0 4px 4px; /* Firefox */
1128
+ }
1129
+ #content #mainarea_wide ul#volumelist li a{
1130
+ display: block;
1131
+ padding: 5px 0 5px 7px;
1132
+ width: 117px;
1133
+ color: #034997;
1134
+ }
1135
+ #content #mainarea_wide ul#volumelist li a:hover{
1136
+ background: #9D9D9D;
1137
+ }
1138
+
1139
+ /* ptn06 */
1140
+ #content #mainarea_wide table.ptn06{
1141
+ margin-left: 20px;
1142
+ width: 660px;
1143
+ border-collapse: collapse;
1144
+ border-top: 1px solid #cccccc;
1145
+ border-bottom: 1px solid #cccccc;
1146
+ }
1147
+ #content #mainarea_wide table.ptn06 tr td{
1148
+ padding: 5px;
1149
+ width: 204px;
1150
+ border-bottom: 1px solid #cccccc;
1151
+ }
1152
+ #content #mainarea_wide table.ptn06 tr td.title{
1153
+ width: 220px;
1154
+ font-weight: bold;
1155
+ }
1156
+ #content #mainarea_wide table.ptn06 tr td.padcell{
1157
+ width: 6px;
1158
+ border: none;
1159
+ }
1160
+
1161
+
1162
+ /*------------------------------footer------------------------------*/
1163
+
1164
+ #content_footer{
1165
+ width: 972px;
1166
+ height: 14px;
1167
+ background: url(../images/content_foot_bg.gif) no-repeat;
1168
+ clear: both;
1169
+ }
1170
+ #footer{
1171
+ padding: 10px 0 0 12px;
1172
+ width: 960px;
1173
+ height: 27px;
1174
+ background: url(../images/footer_bg.gif) no-repeat;
1175
+ }
1176
+ #footer p.copyright{
1177
+ color: #FFFFFF;
1178
+ font-size: 12px;
1179
+ }
1180
+ #footer p.copyright a{
1181
+ color: #FFFFFF;
1182
+ }
1183
+ #footer p.copyright a:hover{
1184
+ text-decoration: underline;
1185
+ }
1186
+
1187
+ /*------------------------------information------------------------------*/
1188
+ #informationarea h2 {
1189
+ font-size: 13px;
1190
+ }
1191
+
1192
+ /*------------------------------special------------------------------*/
1193
+
1194
+ #content .text_orange{
1195
+ color: #E86700;
1196
+ }
1197
+
1198
+ #content .text_red{
1199
+ color: #C14444;
1200
+ }
1201
+
1202
+ .grid2{
1203
+ width: 470px;
1204
+ }
1205
+ .spacer20{
1206
+ height: 20px;
1207
+ }
1208
+ .spacer10{
1209
+ height: 10px;
1210
+ }
1211
+ .mbt10{
1212
+ margin-bottom: 10px;
1213
+ }
1214
+ .mbt0{
1215
+ margin-bottom: 0;
1216
+ }
1217
+
1218
+ /*----clearfix----*/
1219
+
1220
+ .clearfix:after {
1221
+ content: "."; /* êVǵǢóvëfÇçÏÇÈ */
1222
+ display: block; /* ÉuÉçÉbÉNÉåÉxÉãóvëfÇ… */
1223
+ clear: both;
1224
+ height: 0;
1225
+ visibility: hidden;
1226
+ }
1227
+ .clearfix {
1228
+ min-height: 1px;
1229
+ }
1230
+ * html .clearfix {
1231
+ height: 1px;
1232
+ /*\*//*/
1233
+ height: auto;
1234
+ overflow: hidden;
1235
+ /**/
1236
+ }