mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
[SM-73] fix defects (#4572)
* [SM-431] fix project name overflow * [SM-432] sort project list alphabetically * [SM-458] add delete button * [SM-430] misc UI fixes * override tw-break-words in table cell * update copy * remove unused copy
This commit is contained in:
@@ -5674,6 +5674,9 @@
|
||||
"selectPlaceholder": {
|
||||
"message": "-- Select --"
|
||||
},
|
||||
"selectPlaceholder": {
|
||||
"message": "-- Select --"
|
||||
},
|
||||
"multiSelectPlaceholder": {
|
||||
"message": "-- Type to filter --"
|
||||
},
|
||||
@@ -5724,11 +5727,8 @@
|
||||
"secretProjectAssociationDescription" :{
|
||||
"message": "Select projects that the secret will be associated with. Only organization users with access to these projects will be able to see the secret."
|
||||
},
|
||||
"typeOrSelectProjects" :{
|
||||
"message": "Type or select Projects"
|
||||
},
|
||||
"typeOrSelectProject" :{
|
||||
"message": "Type or select Project"
|
||||
"selectProjects": {
|
||||
"message": "Select projects"
|
||||
},
|
||||
"project":{
|
||||
"message": "Project"
|
||||
|
||||
@@ -3,3 +3,11 @@
|
||||
@tailwind utilities;
|
||||
|
||||
@import "../../../../libs/components/src/tw-theme.css";
|
||||
|
||||
/**
|
||||
* tw-break-words does not work with table cells:
|
||||
* https://github.com/tailwindlabs/tailwindcss/issues/835
|
||||
*/
|
||||
td.tw-break-words {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user