Changeset 6609
- Timestamp:
- Nov 20, 2014, 9:23:17 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/menu/Menu.java
r6201 r6609 160 160 public Menu() 161 161 { 162 super("menu ");162 super("menu bg-filled-100"); 163 163 } 164 164 -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/menu/Menuitem.java
r6576 r6609 303 303 StringBuilder sb = new StringBuilder(); 304 304 sb.append("<div"); 305 addIdAndStyles(sb, isEnabled() ? " enabled" : " disabled", isAutoInitialized ? "auto-init" : null);305 addIdAndStyles(sb, isEnabled() ? "interactable" : " disabled", isAutoInitialized ? "auto-init" : null); 306 306 if (isAutoInitialized) sb.append(" data-auto-init=\"menuitem\""); 307 307 if (isEnabled()) -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/menu/Submenu.java
r6401 r6609 257 257 StringBuilder sb = new StringBuilder(); 258 258 sb.append("<div"); 259 addIdAndStyles(sb, isEnabled() ? " enabled" : "disabled", "auto-init");259 addIdAndStyles(sb, isEnabled() ? "interactable" : "disabled", "auto-init"); 260 260 if (isEnabled()) 261 261 { -
trunk/www/include/styles/menu.css
r6415 r6609 31 31 { 32 32 position: fixed; 33 background: #E8E8E8;34 33 cursor: default; 35 border-bottom : 1px solid #A0A0A0;34 border-bottom-width: 1px; 36 35 } 37 36 … … 43 42 .menu.horizontal > table > tbody > tr > td 44 43 { 45 border-right : 1px solid #A0A0A0;44 border-right-width: 1px; 46 45 } 47 46 .menu.horizontal > table > tbody > tr > td:last-child … … 58 57 .menu.horizontal .menuitem.enabled:hover 59 58 { 60 border : 2px solid #2288AA;59 border-width: 2px; 61 60 padding: 1px 4px 1px 4px; 62 61 border-radius: 3px; … … 73 72 { 74 73 position: fixed; 75 background: #E8E8E8; 76 border: 1px solid #A0A0A0; 77 box-shadow: 3px 3px 5px #cccccc; 74 border-width: 1px; 75 box-shadow: 3px 3px 5px #CCCCCC; 78 76 } 79 77 … … 84 82 } 85 83 86 .menu.vertical .menuitem. enabled:hover84 .menu.vertical .menuitem.interactable:hover 87 85 { 88 border : 2px solid #2288AA;86 border-width: 2px; 89 87 padding: 1px 2px 1px 2px; 90 88 border-radius: 3px; … … 94 92 .menu.vertical .menuseparator 95 93 { 96 background: #A0A0A0; 94 border-top-width: 1px; 95 height: 1px; 97 96 width: 100%; 98 height: 1px;99 97 } 100 98 … … 128 126 .menufill .menuseparator 129 127 { 130 border-right : 1px solid #A0A0A0;128 border-right-width: 1px; 131 129 margin-right: 4px; 132 130 margin-left: 4px;
Note: See TracChangeset
for help on using the changeset viewer.