Ignore:
Timestamp:
2016-02-24T10:19:49+13:00 (8 years ago)
Author:
Georgiy Litvinov
Message:

Added hierarchy menu with suggestions to metadata editor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/web/interfaces/default/style/core.css

    r30326 r30382  
    11441144}
    11451145*/
     1146
     1147.metaDataHierarchyMenu{
     1148        position: absolute;
     1149    margin-left: -1px;
     1150    z-index:1;
     1151
     1152}
     1153.metaDataHierarchyMenu ul{
     1154        margin: 0;
     1155        padding: 0;
     1156        display: block;
     1157        position: absolute;
     1158
     1159}
     1160.metaDataHierarchyMenu ul li {
     1161        margin: 0;
     1162        padding: 0;
     1163        display: block;
     1164        position: relative;
     1165        width: 200px;
     1166}
     1167.metaDataHierarchyMenu ul li button{
     1168        display: block;
     1169        padding:10px 10px 10px 10px;
     1170        width: 180px;
     1171    margin: 0;
     1172        color: #000000;
     1173        text-decoration: none;
     1174        font-size: 90%;
     1175        border:1px dotted #999;
     1176        text-align: left;
     1177    white-space: normal;
     1178    overflow: auto;
     1179}
     1180.metaDataHierarchyMenu ul li button:HOVER{
     1181        color: #0000CC;
     1182}
     1183.metaDataHierarchyMenu li ul {
     1184    position: absolute;
     1185        left: 180px;
     1186        top: 0;
     1187        display: none;
     1188}
     1189
     1190.metaDataHierarchyMenu button:focus {
     1191        outline: none;
     1192}
     1193
     1194.active {
     1195        background-color:#eee;
     1196}
     1197
Note: See TracChangeset for help on using the changeset viewer.