Skip to content

Commit

Permalink
Revert "Configuration through APIs and Vue components"
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuelsmann committed Jul 4, 2022
1 parent 1b006da commit 2f12ce4
Show file tree
Hide file tree
Showing 35 changed files with 233 additions and 1,785 deletions.
1 change: 0 additions & 1 deletion Changelog
Expand Up @@ -58,7 +58,6 @@ Dependency updates
* Workflow 1.59 (upadted from 1.56)
* YAML::PP (new)
* YAML (dropped)
* JSONSchema::Validator (new)


Changelog for 1.9 Series
Expand Down
31 changes: 31 additions & 0 deletions UI/am-warehouse-form.html
@@ -0,0 +1,31 @@
[% PROCESS elements.html %]
<body class="lsmb [% dojo_theme %]">
<form data-dojo-type="lsmb/Form" method="post" action="[% form.script %]">
<table width="100%">
<tr><th class="listtop">[% form.title %]</th></tr>
<tr><td> </td></tr>
<tr>
<td>
<table>
<tr>
<th align="right">[% text('Description') %]</th>
[% IF row_count > 1 %]
<td>[% PROCESS textarea element_data={name => 'description', cols => 60, rows => row_count, text => form.description} %]</td>
[% ELSE %]
<td>[% PROCESS input element_data={name => 'description', size => 60, value => form.description} %]</td>
[% END %]
</tr>
</table>
</td>
</tr>
<tr><td colspan="2"><hr size="3" noshade="noshade" /></td></tr>
</table>
[% FOREACH hidden IN hiddens.keys;
PROCESS input element_data={
type => 'hidden',
name => hidden,
value => hiddens.item(hidden)
}; END %]
[% FOREACH button IN buttons; PROCESS button element_data=button; END %]
</form>
</body>
49 changes: 0 additions & 49 deletions UI/css/ledgersmb-common.css
Expand Up @@ -597,52 +597,3 @@ span.indicator {
margin-bottom: 2em;
margin-top: 2em;
}

.toast.error {
background-image:
var(
--toast-error-bg,
linear-gradient(to right bottom, #d88, #eaa)
);
}

.toast.info {
background-image:
var(
--toast-info-bg,
linear-gradient(to right bottom, #bcd8f4, white)
);
}

.toast.success {
background-image:
var(
--toast-success-bg,
linear-gradient(to right bottom, #8d8, white)
);
}

.toast .title {
font-weight: bold;
}

td.data-entry {
padding: 0.1em 0.5ex;
vertical-align: middle;
}

td.data-entry .input-box {
box-sizing: border-box;
padding: 0.1em 0.3ex;
width: 100%;
}

td.data-entry .neutral {
background-color: transparent;
border-color: transparent;
}

td.data-entry .editing {
background-color: white;
border-color: black;
}
3 changes: 0 additions & 3 deletions UI/css/ledgersmb.css
Expand Up @@ -54,9 +54,6 @@
--td-cleared-future-bg: white;
--td-cleared-past-bg: yellow;
--textarea-bg-clr: initial;
--toast-error-bg: linear-gradient(to right bottom, #d88, #eaa);
--toast-info-bg: linear-gradient(to right bottom, #bcd8f4, white);
--toast-success-bg: linear-gradient(to right bottom, #8d8, white);
--top_menu-bg: none;
--tr-active-bg-clr: #ddd;
--tr-record-bg-clr: pink;
Expand Down
24 changes: 0 additions & 24 deletions UI/css/system/global.css
Expand Up @@ -716,27 +716,3 @@ h2 {
.six-column-grid label {
text-align: left;
}

.toast {
box-shadow: 6px 6px 6px gray;
box-sizing: border-box;
margin: 10px 0;
overflow: hidden;
overflow-wrap: normal;
position: relative;
text-align: center;
width: 100%;
}

.toaster {
box-sizing: border-box;
max-width: 60%;
position: absolute;
right: 5%;
top: 20px;
width: 50em;
}

.toaster.hidden {
display: none;
}
1 change: 0 additions & 1 deletion UI/main.html
Expand Up @@ -46,7 +46,6 @@
style="display:none;min-width:40ex"
data-dojo-type="dijit/Dialog"></div>
</div>
<Toaster />
</div>
</body>
[% end_html %]
167 changes: 0 additions & 167 deletions UI/src/components/ConfigTable.machines.js

This file was deleted.

71 changes: 0 additions & 71 deletions UI/src/components/ConfigTable.vue

This file was deleted.

0 comments on commit 2f12ce4

Please sign in to comment.