Skip to content

Commit dee855d

Browse files
author
uicontent
committed
Automatic update of widgets, themes and modules
1 parent d22ac0f commit dee855d

3 files changed

Lines changed: 75 additions & 27 deletions

File tree

StarterApp_NativeMobile.mpr

-12 KB
Binary file not shown.

theme-cache/web/theme.compiled.css

Lines changed: 74 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -11633,14 +11633,8 @@ input[type=checkbox] {
1163311633
padding-right: 15px;
1163411634
}
1163511635

11636-
.mx-radiobuttons.inline .radio {
11637-
display: inline-block;
11638-
margin-right: 20px;
11639-
}
11640-
1164111636
.mx-radiobuttons .radio input[type=radio] {
1164211637
/* Reset bootstrap rules */
11643-
position: static;
1164411638
margin-right: 8px;
1164511639
margin-left: 0;
1164611640
}
@@ -17576,14 +17570,15 @@ ul.popupmenu-menu {
1757617570
}
1757717571

1757817572
.radio {
17579-
display: flex !important;
17573+
display: flex;
1758017574
align-items: center;
1758117575
margin-top: 0;
1758217576
}
1758317577

1758417578
input[type=radio] {
1758517579
position: relative !important;
1758617580
width: 16px;
17581+
flex: 0 0 16px;
1758717582
height: 16px;
1758817583
margin: 0;
1758917584
cursor: pointer;
@@ -19844,6 +19839,35 @@ h6,
1984419839
transform: translate3d(200%, 0, 0);
1984519840
}
1984619841
}
19842+
/* ==========================================================================
19843+
Combobox
19844+
19845+
Combobox input field inside form-group with hide-bg class
19846+
========================================================================== */
19847+
.hide-bg.form-group .widget-combobox .widget-combobox-input-container {
19848+
background-color: transparent;
19849+
border: unset;
19850+
outline: transparent;
19851+
}
19852+
.hide-bg.form-group .widget-combobox .widget-combobox-input-container input {
19853+
background-color: transparent;
19854+
}
19855+
.hide-bg.form-group .widget-combobox .form-control:hover:not(:focus):not([disabled]) {
19856+
border-color: transparent;
19857+
background-color: transparent;
19858+
}
19859+
.hide-bg.form-group .widget-combobox .widget-combobox-icon-container svg {
19860+
fill: var(--cb-text-color);
19861+
}
19862+
19863+
.language-selector {
19864+
--font-color-contrast: #fff;
19865+
margin-bottom: 0;
19866+
}
19867+
.language-selector .widget-combobox .widget-combobox-input-container:not(.widget-combobox-input-container-active) .widget-combobox-input {
19868+
width: inherit;
19869+
}
19870+
1984719871
/* ==========================================================================
1984819872
Progress bar
1984919873

@@ -23066,6 +23090,7 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw
2306623090
}
2306723091
.table .td > .td-custom-content {
2306823092
flex-grow: 1;
23093+
min-width: 0;
2306923094
}
2307023095
.table .td > .empty-placeholder {
2307123096
width: 100%;
@@ -23177,18 +23202,15 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw
2317723202
min-width: fit-content;
2317823203
margin-bottom: 0;
2317923204
}
23205+
.widget-datagrid-grid.table.infinite-loading {
23206+
min-width: 0;
23207+
}
2318023208
.widget-datagrid-top-bar {
2318123209
container: widget-datagrid-header/inline-size;
2318223210
}
2318323211
.widget-datagrid-content {
2318423212
overflow-x: auto;
2318523213
}
23186-
.widget-datagrid-grid-head {
23187-
display: contents;
23188-
}
23189-
.widget-datagrid-grid-body {
23190-
display: contents;
23191-
}
2319223214
.widget-datagrid-footer {
2319323215
container: widget-datagrid-footer/inline-size;
2319423216
}
@@ -23292,15 +23314,41 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw
2329223314
margin: var(--spacing-small, 8px) 0;
2329323315
}
2329423316

23295-
.infinite-loading.widget-datagrid-grid-body {
23317+
.infinite-loading .widget-datagrid-grid-head {
23318+
width: calc(var(--widgets-grid-width) - var(--widgets-grid-scrollbar-size));
23319+
overflow-x: hidden;
23320+
}
23321+
.infinite-loading .widget-datagrid-grid-head[data-scrolled-y=true] {
23322+
box-shadow: 0 5px 5px -5px gray;
23323+
}
23324+
.infinite-loading .widget-datagrid-grid-body {
23325+
width: var(--widgets-grid-width);
2329623326
overflow-y: auto;
23327+
max-height: var(--widgets-grid-body-height);
23328+
}
23329+
.infinite-loading .widget-datagrid-grid-head[data-scrolled-x=true]:after {
23330+
content: "";
23331+
position: absolute;
23332+
left: 0;
23333+
width: 10px;
23334+
box-shadow: inset 5px 0 5px -5px gray;
23335+
top: 0;
23336+
bottom: 0;
23337+
}
23338+
23339+
.widget-datagrid-grid-head {
23340+
display: grid;
23341+
min-width: 0;
23342+
grid-template-columns: var(--widgets-grid-template-columns-head, var(--widgets-grid-template-columns));
2329723343
}
2329823344

23299-
.widget-datagrid-grid-head,
2330023345
.widget-datagrid-grid-body {
2330123346
display: grid;
23302-
grid-template-columns: subgrid;
23303-
grid-column: 1/-1;
23347+
grid-template-columns: var(--widgets-grid-template-columns);
23348+
}
23349+
23350+
.grid-mock-header {
23351+
display: contents;
2330423352
}
2330523353

2330623354
:where(.widget-datagrid-paging-bottom, .widget-datagrid-padding-top) {
@@ -23447,7 +23495,7 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw
2344723495
.react-datepicker__day--in-range:hover {
2344823496
border-radius: 50%;
2344923497
color: var(--brand-primary, #264ae5);
23450-
background-color: var(--gray-ligter, #f8f8f8);
23498+
background-color: var(--gray-lighter, #f8f8f8);
2345123499
}
2345223500

2345323501
.react-datepicker__day-name {
@@ -23462,7 +23510,7 @@ html div.dj_ios .widget-switch.auto .widget-switch-btn-wrapper.checked.widget-sw
2346223510
.react-datepicker__day--today:not(.react-datepicker__day--in-range),
2346323511
.react-datepicker__day--keyboard-selected {
2346423512
color: var(--brand-primary, #264ae5);
23465-
background-color: var(--gray-ligter, #f8f8f8);
23513+
background-color: var(--gray-lighter, #f8f8f8);
2346623514
}
2346723515

2346823516
.react-datepicker__month-select:focus-visible,
@@ -23556,11 +23604,11 @@ Space between the fields and the popup
2355623604
position: relative;
2355723605
}
2355823606
.filter-container .filter-input {
23559-
border-top-left-radius: 0;
23560-
border-bottom-left-radius: 0;
23607+
border-start-start-radius: 0;
23608+
border-end-start-radius: 0;
2356123609
}
2356223610
.filter-container .btn-calendar {
23563-
margin-left: 5px;
23611+
margin-inline-start: 5px;
2356423612
}
2356523613
.filter-container .btn-calendar .button-icon {
2356623614
width: 18px;
@@ -23577,16 +23625,16 @@ Space between the fields and the popup
2357723625
}
2357823626
.filter-selector .filter-selector-content .filter-selector-button {
2357923627
padding: 8px;
23580-
border-top-right-radius: 0;
23581-
border-bottom-right-radius: 0;
23582-
border-right: none;
23628+
border-start-end-radius: 0;
23629+
border-end-end-radius: 0;
23630+
border-inline-end: none;
2358323631
height: 100%;
2358423632
}
2358523633
.filter-selector .filter-selector-content .filter-selector-button:before {
2358623634
justify-content: center;
2358723635
width: 20px;
2358823636
height: 20px;
23589-
padding-left: 4px;
23637+
padding-inline-start: 4px;
2359023638
/* The font has spaces in the right side, so to align in the middle we need this */
2359123639
}
2359223640

theme-cache/web/theme.compiled.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)