-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* theme and button styling * toggle button * OverflowContainer styling and fixed in vertical mode * tabstrip styling * tabstrip theme variants * fix type issues * fix paths to test fixtures * fix bugs in tests
- Loading branch information
Showing
100 changed files
with
2,357 additions
and
341 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
This is Apache Ignite working directory that contains information that | ||
Ignite nodes need in order to function normally. | ||
Don't delete it unless you're sure you know what you're doing. | ||
|
||
You can change the location of working directory with | ||
igniteConfiguration.setWorkDirectory(location) or | ||
<property name="workDirectory" value="location"/> in IgniteConfiguration <bean>. |
1 change: 1 addition & 0 deletions
1
plugin/ignite-plugin/ignite/work/db/marshaller/2144474804.classname0
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 @@ | ||
org.finos.vuu.feature.ignite.TestOrderEntity |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,67 @@ | ||
.vuu-theme { | ||
|
||
.vuuTab { | ||
--vuuTab-padding: 0 var(--salt-spacing-400); | ||
} | ||
|
||
.vuuTabstrip-primary { | ||
|
||
--vuuOverflowContainer-borderColor: var(--vuu-color-gray-30); | ||
--vuuTab-background: var(--vuu-color-gray-28); | ||
--vuuTab-borderRadius: 6px 6px 0 0; | ||
--vuuTab-borderColor: var(--vuu-color-gray-30); | ||
--vuuTab-borderStyle: solid; | ||
--vuuTab-borderWidth: 1px; | ||
|
||
|
||
&.vuuOrientation-horizontal { | ||
--vuuOverflowContainer-borderStyle: none; | ||
--vuuOverflowContainer-contentHeight: calc(var(--salt-size-base) + var(--salt-spacing-100)); | ||
--vuuOverflowContainer-height: calc(var(--vuuOverflowContainer-contentHeight) + 7px); | ||
padding-bottom: 7px; | ||
} | ||
|
||
.vuuTab { | ||
height: calc(var(--tab-height) + 1px); | ||
} | ||
|
||
.vuuTab-selected { | ||
--vuuTab-background: var(--vuu-color-white); | ||
border-bottom-color: white; | ||
z-index: 1; | ||
} | ||
|
||
.vuuTab-selected:before{ | ||
height: 100%; | ||
left:0; | ||
top:0; | ||
border-radius: 6px 0 0 0; | ||
width: 6px; | ||
} | ||
|
||
.vuuTab:hover:before{ | ||
background-color: #F37880; | ||
height: 100%; | ||
left:0; | ||
top:0; | ||
border-radius: 6px 0 0 0; | ||
width: 6px; | ||
} | ||
|
||
&.vuuTabstrip:before { | ||
background-color: transparent; | ||
border-radius: 0 6px 0 0; | ||
border-left: solid 1px var(--vuu-color-gray-30); | ||
border-right: solid 1px var(--vuu-color-gray-30); | ||
border-top: solid 1px var(--vuu-color-gray-30); | ||
content: ''; | ||
position: absolute; | ||
bottom: 0; | ||
left:0; | ||
right:0; | ||
height: 8px; | ||
z-index: 1; | ||
} | ||
} | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...s/vuu-ui-controls/src/__tests__/__component__/overflow-container/OverflowContainer.cy.tsx
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
Oops, something went wrong.