-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix Issues in Checkbox Inputs, Range Slider and Gallery Widgets
* Fix Range Input Bugs with Values * Add Context Menu in the Elements Navigator * Add Query Sync Feature to Page Datasource, Text Input, Range Slider Checkbox and Radio Button Widgets
- Loading branch information
Showing
69 changed files
with
1,751 additions
and
2,051 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,3 +84,5 @@ dhparam.pem | |
/test.js | ||
/test.css | ||
/test.scss | ||
/test.html | ||
/test.log |
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
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
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
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 @@ | ||
|
||
.altrp-gallery-overlay { | ||
left: 0; | ||
top: 0; | ||
align-items: flex-start; | ||
justify-content: flex-start; | ||
} | ||
|
||
.altrp-gallery-overlay-bg { | ||
mix-blend-mode: none; | ||
} | ||
|
||
.altrp-gallery-grid { | ||
display: grid; | ||
position: relative; | ||
grid-template-columns: repeat(3, 1fr); | ||
} | ||
|
||
.altrp-gallery-img { | ||
background-size: cover; | ||
background-position: center center; | ||
width: 100%; | ||
transform-origin: center top; | ||
padding-bottom:100%; | ||
} | ||
|
||
.altrp-gallery-img-container { | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.altrp-gallery-icon { | ||
height: 35px; | ||
width: 35px; | ||
opacity: 0.5; | ||
} | ||
|
||
.altrp-gallery-empty-container { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 20px; | ||
background-color: #C4C4C4; | ||
} | ||
|
Oops, something went wrong.