Last change
on this file since 9573 was
8384,
checked in by fschoepp, 12 years ago
|
#1888:
- Created a project which contains the back-end controller for the Optimization WebSite
- Added a WCF-back-end-controller which generates all available optimization problems (currently in-memory solution: PlaceholderControllerService.cs)
- Created a WebRole using ASP.NET MVC 3 for the Optimization Web Site
- WebSite authenticates users with the HeuristicLab.Authentication membership provider and database
- WebSite crawls and displays all available optimization scenarios by using the WCF-back-end controller (test with: http://localhost:.../optimization)
|
File size:
1.7 KB
|
Line | |
---|
1 | /* |
---|
2 | * Note: While Microsoft is not the author of this file, Microsoft is |
---|
3 | * offering you a license subject to the terms of the Microsoft Software |
---|
4 | * License Terms for Microsoft ASP.NET Model View Controller 3. |
---|
5 | * Microsoft reserves all other rights. The notices below are provided |
---|
6 | * for informational purposes only and are not the license terms under |
---|
7 | * which Microsoft distributed this file. |
---|
8 | * |
---|
9 | * jQuery UI Autocomplete 1.8.11 |
---|
10 | * |
---|
11 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
---|
12 | * http://docs.jquery.com/UI/Autocomplete#theming |
---|
13 | */ |
---|
14 | .ui-autocomplete { position: absolute; cursor: default; } |
---|
15 | |
---|
16 | /* workarounds */ |
---|
17 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ |
---|
18 | |
---|
19 | /* |
---|
20 | * Note: While Microsoft is not the author of this file, Microsoft is |
---|
21 | * offering you a license subject to the terms of the Microsoft Software |
---|
22 | * License Terms for Microsoft ASP.NET Model View Controller 3. |
---|
23 | * Microsoft reserves all other rights. The notices below are provided |
---|
24 | * for informational purposes only and are not the license terms under |
---|
25 | * which Microsoft distributed this file. |
---|
26 | * |
---|
27 | * jQuery UI Menu 1.8.11 |
---|
28 | * |
---|
29 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
---|
30 | * |
---|
31 | * http://docs.jquery.com/UI/Menu#theming |
---|
32 | */ |
---|
33 | .ui-menu { |
---|
34 | list-style:none; |
---|
35 | padding: 2px; |
---|
36 | margin: 0; |
---|
37 | display:block; |
---|
38 | float: left; |
---|
39 | } |
---|
40 | .ui-menu .ui-menu { |
---|
41 | margin-top: -3px; |
---|
42 | } |
---|
43 | .ui-menu .ui-menu-item { |
---|
44 | margin:0; |
---|
45 | padding: 0; |
---|
46 | zoom: 1; |
---|
47 | float: left; |
---|
48 | clear: left; |
---|
49 | width: 100%; |
---|
50 | } |
---|
51 | .ui-menu .ui-menu-item a { |
---|
52 | text-decoration:none; |
---|
53 | display:block; |
---|
54 | padding:.2em .4em; |
---|
55 | line-height:1.5; |
---|
56 | zoom:1; |
---|
57 | } |
---|
58 | .ui-menu .ui-menu-item a.ui-state-hover, |
---|
59 | .ui-menu .ui-menu-item a.ui-state-active { |
---|
60 | font-weight: normal; |
---|
61 | margin: -1px; |
---|
62 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.