File tree Expand file tree Collapse file tree
frontend/packages/volto-keywordmanager/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,10 +55,11 @@ const DeleteModal = ({
5555 </ p >
5656 </ div >
5757 < div className = "modal-actions" >
58- < Button onPress = { close } >
58+ < Button className = "cancel-action" onPress = { close } >
5959 < FormattedMessage id = "Cancel" defaultMessage = "Cancel" />
6060 </ Button >
6161 < Button
62+ className = "confirm-action"
6263 onPress = { ( ) => {
6364 onConfirm (
6465 selectedKeys === 'all'
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ const KeywordManager = (props) => {
219219 />
220220 </ p >
221221 { keywordIndexes ?. items ?. length > 1 && (
222- < div >
222+ < div className = "options" >
223223 < p >
224224 < FormattedMessage
225225 id = "keyword-field"
Original file line number Diff line number Diff line change @@ -147,9 +147,8 @@ const KeywordView = (props) => {
147147 title : (
148148 < >
149149 < UniversalLink href = { obj [ '@id' ] || '/' } > { obj . title } </ UniversalLink >
150- < br />
151150 < span hidden > Path: </ span >
152- < span > { flattenToAppURL ( obj [ '@id' ] ) || '/' } </ span >
151+ < span className = "path" > { flattenToAppURL ( obj [ '@id' ] ) || '/' } </ span >
153152 < KeywordList
154153 keywords = { obj [ keywordIndex ] }
155154 currentId = { id }
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ const RenameModal = ({
108108 </ div >
109109 < div className = "modal-actions" >
110110 < Button
111+ className = "cancel-action"
111112 onPress = { ( ) => {
112113 setName ( null ) ;
113114 close ( ) ;
@@ -116,6 +117,7 @@ const RenameModal = ({
116117 < FormattedMessage id = "Cancel" defaultMessage = "Cancel" />
117118 </ Button >
118119 < Button
120+ className = "confirm-action"
119121 isDisabled = { name === null }
120122 onPress = { ( ) => {
121123 onConfirm (
You can’t perform that action at this time.
0 commit comments