Skip to content

Commit

Permalink
Finalization of v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
menno committed May 26, 2018
1 parent f40deae commit 84125ab
Show file tree
Hide file tree
Showing 13 changed files with 3,459 additions and 904 deletions.
35 changes: 35 additions & 0 deletions apexplugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name" : "Modal LOV",
"version" : "1.0",
"description" : "A modal LOV item plug-in for Oracle APEX",
"keywords" : ["item", "LOV", "modal"],
"homepage" : "https://github.com/mennooo/orclapex-modal-lov",
"bugs" : {
"url" : "https://github.com/mennooo/orclapex-modal-lov/issues",
"email" : "me@menn.ooo"
},
"license" : "MIT",
"author" : {
"name" : "Menno Hoogendijk",
"email" : "me@menn.ooo",
"url" : "http://menn.ooo/",
"twitter" : "mennooo",
"donationUrl" : "https://www.paypal.me/mennooo"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/mennooo/orclapex-modal-lov.git"
},
"oracle" : {
"versions" : ["11.2.0.1", "12.1.0.1", "12.2.0.0"],
"apex" : {
"versions" : ["5.1.0", "18.1.0"],
"plugin" : {
"internalName" : "MHO.MODAL_LOV",
"type" : "item",
"demo" : "https://apex.oracle.com/pls/apex/f?p=115922:16",
"previewImage" : "https://raw.githubusercontent.com/mennooo/orclapex-modal-lov/master/preview.gif"
}
}
}
}
24 changes: 16 additions & 8 deletions dist/modal-lov.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,42 @@
}
.ui-dialog.modal-xs,
.ui-dialog.modal-sm {
width: 30vw !important;
width: 480px !important;
}
.ui-dialog.modal-l,
.ui-dialog.modal-md {
width: 60vw !important;
width: 600px !important;
}
.ui-dialog.modal-xl,
.ui-dialog.modal-lg {
width: 80vw !important;
width: 720px !important;
}
.t-Form-inputContainer input.modal-lov-item {
.modal-lov .u-Processing.u-Processing--inline {
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.modal-lov .t-Form-inputContainer input.modal-lov-item {
margin: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
padding-right: 35px !important;
}
.modal-lov-button {
.modal-lov .modal-lov-button {
-webkit-order: 3;
-ms-flex-order: 3;
order: 3;
}
.modal-lov-table .t-Report-cell {
.modal-lov .modal-lov-table .t-Report-cell {
cursor: pointer;
}
.modal-lov-table .hover .t-Report-cell {
.modal-lov .modal-lov-table .hover .t-Report-cell {
background-color: inherit!important;
}
.modal-lov-table .mark .t-Report-cell {
.modal-lov .modal-lov-table .mark .t-Report-cell {
background-color: inherit!important;
}
.a-GV-columnItem .apex-item-group {
Expand Down
Loading

0 comments on commit 84125ab

Please sign in to comment.