-
Notifications
You must be signed in to change notification settings - Fork 398
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-4654-migrate-plugin-authentication-to-cs…
…s-modules
- Loading branch information
Showing
13 changed files
with
268 additions
and
215 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
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
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; | ||
} |
Oops, something went wrong.