-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into CB-4686-migrate-from-scheduled-touch-sessio…
…n-api-call-to-a-websocket-event
- Loading branch information
Showing
10 changed files
with
232 additions
and
212 deletions.
There are no files selected for viewing
108 changes: 108 additions & 0 deletions
108
webapp/packages/core-blocks/src/PropertiesTable/PropertyItem.m.css
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,108 @@ | ||
.container, | ||
.button { | ||
composes: theme-ripple from global; | ||
} | ||
|
||
.container { | ||
box-sizing: border-box; | ||
display: inline-flex; | ||
padding: 0px 1px; | ||
} | ||
|
||
.name, | ||
.value { | ||
composes: theme-typography--caption from global; | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
box-sizing: border-box; | ||
flex: 1; | ||
padding: 4px 0; | ||
|
||
& .shadowInput { | ||
height: 24px; | ||
padding: 0 36px 0 12px; | ||
} | ||
} | ||
|
||
.value, | ||
.name { | ||
margin-left: 24px; | ||
} | ||
|
||
.name { | ||
flex: 0 0 auto; | ||
width: 276px; | ||
} | ||
|
||
.remove { | ||
position: relative; | ||
flex: 0 0 auto; | ||
align-items: center; | ||
display: flex; | ||
opacity: 0; | ||
} | ||
|
||
.select { | ||
flex: 0 0 auto; | ||
align-items: center; | ||
display: flex; | ||
} | ||
|
||
.container:hover .remove { | ||
opacity: 1; | ||
} | ||
|
||
.shadowInput { | ||
composes: theme-background-surface from global; | ||
} | ||
|
||
.name .shadowInput, | ||
.value .shadowInput { | ||
box-sizing: border-box; | ||
font: inherit; | ||
color: inherit; | ||
width: 100%; | ||
outline: none; | ||
|
||
&.edited { | ||
font-weight: 600; | ||
} | ||
|
||
&:global([readonly]), | ||
&:not(:focus):not([data-focus='true']) { | ||
background: transparent !important; | ||
border: solid 2px transparent !important; | ||
} | ||
} | ||
|
||
.icon, | ||
.iconOrImage { | ||
height: 16px; | ||
display: block; | ||
} | ||
|
||
.select .icon, | ||
.select .iconOrImage { | ||
&.focus { | ||
transform: rotate(180deg); | ||
} | ||
} | ||
|
||
.button { | ||
background: transparent; | ||
outline: none; | ||
padding: 4px; | ||
cursor: pointer; | ||
} | ||
|
||
.button, | ||
.propertyValueSelector { | ||
composes: theme-form-element-radius from global; | ||
margin: 2px; | ||
overflow: hidden; | ||
} | ||
|
||
.error { | ||
composes: theme-text-error from global; | ||
} |
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
7 changes: 7 additions & 0 deletions
7
webapp/packages/core-blocks/src/PropertiesTable/PropertyValueSelector.m.css
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 @@ | ||
.menuButton { | ||
composes: theme-ripple from global; | ||
background: transparent; | ||
outline: none; | ||
padding: 4px; | ||
cursor: pointer; | ||
} |
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
7 changes: 7 additions & 0 deletions
7
...pp/packages/plugin-object-viewer/src/ObjectPropertiesPage/ObjectPropertiesPagePanel.m.css
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 @@ | ||
.wrapper { | ||
composes: theme-background-surface from global; | ||
display: flex; | ||
width: 100%; | ||
flex: 1 1 auto; | ||
padding-top: 16px; | ||
} |
Oops, something went wrong.