Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IDEMPIERE-6157 Ice blue compact theme: html field has no border #2375

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

<!-- this js module doesn't actually exists and it is here for iceblue_c theme version -->
<!-- since loading of js module is on demand, it doesn't cause any error as long as you don't try to load it -->
<javascript-module name="idempiere.theme.iceblue_c" version="202405071330" />
<javascript-module name="idempiere.theme.iceblue_c" version="202405210810" />
</language>
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,14 @@ span.grid-combobox-editor {
.html-field {
cursor: pointer;
overflow: auto;
border: 1px solid #ECECEC;
border-radius: 4px;
}
.html-field:hover {
border-color: #A8A8A8;
}
.html-field:focus {
border-color: #0093F9;
}

<%-- dashboard content editor --%>
Expand Down