Changeset 3362
- Timestamp:
- Jul 10, 2009, 4:52:43 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/api/core/src/org/proteios/core/Application.java
r3361 r3362 83 83 * characters are recommended. 84 84 */ 85 private static final String VERSION_MARKER = " dev";85 private static final String VERSION_MARKER = ""; 86 86 /** 87 87 * The build number will be replaced during compilation. See the compile -
trunk/client/servlet/www/static/css/menuh.css
r3361 r3362 3 3 #menuh-container { float: left } 4 4 5 /* Not directly visible */6 5 #menuh 7 6 { … … 14 13 15 14 16 /* Not directly visible */17 15 #menuh a 18 16 { … … 30 28 31 29 32 /* 0a. Top menu items in menu bar, both when mouse pointer over item (except disabled items) and not, if properties not over-ridden (2a., 3.) */33 /* Setting background color will affect the menu item background */34 30 #menuh a.top_parent { border-width: 1px; } 35 31 36 /* Not directly visible */37 32 #menuh ul ul li a 38 33 { … … 40 35 } 41 36 42 /* 1a. First item in a menu, when mouse pointer not over it */43 /* Setting background color will affect the menu item background */44 37 #menuh ul ul a.first 45 38 { … … 47 40 } 48 41 49 /* 1b. Last item in a menu, both when mouse pointer over item and not, if properties not over-ridden (1a., 2a.) */50 /* Setting background color will affect the menu item background */51 42 #menuh a.last 52 43 { … … 55 46 56 47 57 /* 2a. Non-first menu item, when mouse pointer not over it */58 /* Setting background color will affect the menu item background */59 48 #menuh a:link, #menuh a:visited, #menuh a:active /* menu at rest */ 60 49 { … … 63 52 } 64 53 65 /* 2b. Non-first menu item, when mouse pointer over it */66 /* Setting background color will affect the menu item background */67 54 #menuh a:hover /* menu at mouse-over */ 68 55 { … … 70 57 } 71 58 72 /* 3. Top menu items in menu bar, both when mouse pointer over item and not */73 /* Setting background color will affect the menu item background */74 59 #menuh a.top_parent, #menuh a.top_parent:hover /* attaches down-arrow to all top-parents */ 75 60 { … … 79 64 } 80 65 81 /* 4. Hierachical menu item, both when mouse pointer over item and not, if properties not over-ridden (1a.) */82 /* Setting background color will affect the menu item background */83 66 #menuh a.parent, #menuh a.parent:hover /* attaches side-arrow to all parents */ 84 67 { … … 89 72 90 73 91 /* 5. Sub-menu box, both for drop-down menu and hierarchical menu, if properties not over-ridden (6., 7., 8., 9.) */92 /* Setting background color will affect the menu box border */93 74 #menuh ul 94 75 { … … 100 81 } 101 82 102 /* Not directly visible */103 83 #menuh li 104 84 { … … 109 89 } 110 90 111 /* 6. Sub-menu box, both for drop-down menu and hierarchical menu, if properties not over-ridden (7., 8., 9.) */112 /* Setting background color will affect the menu box border */113 91 #menuh ul ul 114 92 { … … 121 99 } 122 100 123 /* 7. Hierarchical sub-menu box, if properties not over-ridden by hierarchical sub-menu box settings (8., 9.) */124 /* Setting background color will affect the menu box border */125 101 #menuh ul ul ul 126 102 { … … 129 105 } 130 106 131 /* Not directly visible */132 107 div#menuh li.hover 133 108 { … … 136 111 } 137 112 138 /* 8. Hierarchical sub-menu box, if properties not over-ridden by sub-menu box settings (9.) */139 /* Setting background color will affect the menu box border */140 113 div#menuh li.hover ul ul, 141 114 div#menuh li li.hover ul ul, … … 144 117 {display:none;} 145 118 146 /* 9. Sub-menu box, both for drop-down menu and hierarchical menu */147 /* Setting background color will affect borders of all menu boxes */148 119 div#menuh li.hover ul, 149 120 div#menuh li li.hover ul,
Note: See TracChangeset
for help on using the changeset viewer.