-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d11418f
commit c546a7f
Showing
16 changed files
with
246 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.26.0 | ||
2.28.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
$brand-primary: #264ae5 !default; | ||
|
||
.widget-datagrid-export-alert { | ||
background-color: rgba(255, 255, 255, 1); | ||
border-radius: 4px; | ||
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); | ||
display: flex; | ||
flex-direction: column; | ||
padding: 54px; | ||
min-width: 200px; | ||
max-width: 378px; | ||
width: 100%; | ||
position: relative; | ||
|
||
&-cancel { | ||
position: absolute; | ||
top: 10px; | ||
right: 10px; | ||
|
||
// TODO: Hover styles | ||
&.btn { | ||
display: flex; | ||
padding: 4px; | ||
&:focus-visible { | ||
outline: 1px solid $brand-primary; | ||
} | ||
} | ||
} | ||
|
||
&-message { | ||
color: rgba(38, 74, 229, 1); | ||
font-size: 18px; | ||
font-weight: 700; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
&-failed { | ||
.widget-datagrid-export-progress-indicator { | ||
background-color: rgba(227, 63, 78, 1); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
.widget-datagrid-export-progress { | ||
align-items: center; | ||
background-color: rgba(240, 241, 242, 1); | ||
border-radius: 4px; | ||
display: flex; | ||
height: 18px; | ||
overflow: hidden; | ||
position: relative; | ||
transform: translateZ(0); | ||
width: 100%; | ||
|
||
&-indicator { | ||
background-color: rgba(38, 74, 229, 1); | ||
border-radius: 4px; | ||
height: 17px; | ||
transition: transform 100ms cubic-bezier(0.65, 0, 0.35, 1); | ||
width: 100%; | ||
} | ||
|
||
&-indicator-indeterminate { | ||
animation: indeterminateAnimation 1s infinite linear; | ||
transform-origin: 0% 50%; | ||
transition: none; | ||
} | ||
} | ||
|
||
@keyframes indeterminateAnimation { | ||
0% { | ||
transform: translateX(0) scaleX(0); | ||
} | ||
40% { | ||
transform: translateX(0) scaleX(0.4); | ||
} | ||
100% { | ||
transform: translateX(100%) scaleX(0.5); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.widget-datagrid-modal { | ||
&-overlay { | ||
animation: fade-in 300ms cubic-bezier(0.16, 1, 0.3, 1); | ||
background-color: rgba(128, 128, 128, 0.5); | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
z-index: 50; | ||
} | ||
|
||
&-main { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
height: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
z-index: 55; | ||
} | ||
} | ||
|
||
@keyframes fade-in { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} |
Binary file not shown.
Binary file modified
BIN
+17.7 KB
(100%)
Source/widgets/com.mendix.widget.web.DatagridDateFilter.mpk
Binary file not shown.
Binary file modified
BIN
+17.8 KB
(120%)
Source/widgets/com.mendix.widget.web.DatagridDropdownFilter.mpk
Binary file not shown.
Binary file modified
BIN
+210 Bytes
(100%)
Source/widgets/com.mendix.widget.web.DatagridNumberFilter.mpk
Binary file not shown.
Binary file modified
BIN
+194 Bytes
(100%)
Source/widgets/com.mendix.widget.web.DatagridTextFilter.mpk
Binary file not shown.
Binary file not shown.
Binary file not shown.