profile-pane 3.2.0 → 3.2.2-test.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (256) hide show
  1. package/README.md +50 -0
  2. package/icons-png/discord.png +0 -0
  3. package/icons-png/dribbble.png +0 -0
  4. package/icons-png/facebook.png +0 -0
  5. package/icons-png/instagram.png +0 -0
  6. package/icons-png/linkedin.png +0 -0
  7. package/icons-png/pinterest.png +0 -0
  8. package/icons-png/sharechat.png +0 -0
  9. package/icons-png/signup.png +0 -0
  10. package/icons-png/snapchat.png +0 -0
  11. package/icons-png/spotify.png +0 -0
  12. package/icons-png/telegram.png +0 -0
  13. package/icons-png/tiktok.png +0 -0
  14. package/icons-png/whatsapp.png +0 -0
  15. package/icons-png/x.png +0 -0
  16. package/icons-png/youtube.png +0 -0
  17. package/lib/303.profile-pane.js +1362 -0
  18. package/lib/303.profile-pane.js.map +1 -0
  19. package/lib/303.profile-pane.min.js +2 -0
  20. package/lib/303.profile-pane.min.js.map +1 -0
  21. package/lib/ProfileView.css +1090 -0
  22. package/lib/ProfileView.d.ts +2 -1
  23. package/lib/ProfileView.d.ts.map +1 -1
  24. package/lib/ProfileView.js +64 -36
  25. package/lib/buttonsHelper.d.ts +1 -1
  26. package/lib/buttonsHelper.d.ts.map +1 -1
  27. package/lib/buttonsHelper.js +2 -1
  28. package/lib/editProfilePane/EditCVCard.js +1 -1
  29. package/lib/editProfilePane/EditCommunitiesCard.js +1 -1
  30. package/lib/editProfilePane/EditFriendsCard.js +1 -1
  31. package/lib/editProfilePane/EditProfileView.d.ts +1 -1
  32. package/lib/editProfilePane/EditProfileView.d.ts.map +1 -1
  33. package/lib/editProfilePane/EditProfileView.js +4 -5
  34. package/lib/editProfilePane/editProfilePresenter.d.ts.map +1 -1
  35. package/lib/editProfilePane/editProfilePresenter.js +5 -4
  36. package/lib/icons-svg/profileIcons.d.ts +1 -1
  37. package/lib/icons-svg/profileIcons.d.ts.map +1 -1
  38. package/lib/icons-svg/profileIcons.js +9 -17
  39. package/lib/index.d.ts +1 -8
  40. package/lib/index.d.ts.map +1 -1
  41. package/lib/index.js +74 -40
  42. package/lib/ontology/otherPreferencesForm.ttl +32 -0
  43. package/lib/ontology/resumeForm.ttl +349 -0
  44. package/lib/ontology/socialMedia.ttl +433 -0
  45. package/lib/profile-pane.js +32266 -13247
  46. package/lib/profile-pane.js.map +1 -1
  47. package/lib/profile-pane.min.js +2315 -935
  48. package/lib/profile-pane.min.js.map +1 -1
  49. package/lib/rdfFormsHelper.d.ts +13 -1
  50. package/lib/rdfFormsHelper.d.ts.map +1 -1
  51. package/lib/rdfFormsHelper.js +13 -1
  52. package/lib/sections/bio/BioEditDialog.d.ts.map +1 -1
  53. package/lib/sections/bio/BioEditDialog.js +7 -7
  54. package/lib/sections/bio/BioSection.css +300 -0
  55. package/lib/sections/bio/BioSection.d.ts +3 -2
  56. package/lib/sections/bio/BioSection.d.ts.map +1 -1
  57. package/lib/sections/bio/BioSection.js +26 -19
  58. package/lib/sections/bio/mutations.d.ts.map +1 -1
  59. package/lib/sections/bio/mutations.js +14 -3
  60. package/lib/sections/contactInfo/ContactInfoEditDialog.css +354 -0
  61. package/lib/sections/contactInfo/ContactInfoEditDialog.d.ts +3 -1
  62. package/lib/sections/contactInfo/ContactInfoEditDialog.d.ts.map +1 -1
  63. package/lib/sections/contactInfo/ContactInfoEditDialog.js +183 -98
  64. package/lib/sections/contactInfo/ContactInfoSection.css +125 -0
  65. package/lib/sections/contactInfo/ContactInfoSection.d.ts +2 -0
  66. package/lib/sections/contactInfo/ContactInfoSection.d.ts.map +1 -1
  67. package/lib/sections/contactInfo/ContactInfoSection.js +64 -41
  68. package/lib/sections/contactInfo/mutations.d.ts.map +1 -1
  69. package/lib/sections/contactInfo/mutations.js +51 -16
  70. package/lib/sections/education/EducationEditDialog.d.ts +3 -1
  71. package/lib/sections/education/EducationEditDialog.d.ts.map +1 -1
  72. package/lib/sections/education/EducationEditDialog.js +170 -92
  73. package/lib/sections/education/EducationSection.css +133 -0
  74. package/lib/sections/education/EducationSection.d.ts +3 -2
  75. package/lib/sections/education/EducationSection.d.ts.map +1 -1
  76. package/lib/sections/education/EducationSection.js +32 -25
  77. package/lib/sections/education/mutations.d.ts.map +1 -1
  78. package/lib/sections/education/mutations.js +14 -3
  79. package/lib/sections/heading/HeadingEditDialog.d.ts +4 -1
  80. package/lib/sections/heading/HeadingEditDialog.d.ts.map +1 -1
  81. package/lib/sections/heading/HeadingEditDialog.js +287 -162
  82. package/lib/sections/heading/HeadingSection.css +862 -0
  83. package/lib/sections/heading/HeadingSection.d.ts +3 -2
  84. package/lib/sections/heading/HeadingSection.d.ts.map +1 -1
  85. package/lib/sections/heading/HeadingSection.js +63 -32
  86. package/lib/sections/heading/imageHelpers.d.ts +1 -0
  87. package/lib/sections/heading/imageHelpers.d.ts.map +1 -1
  88. package/lib/sections/heading/imageHelpers.js +40 -1
  89. package/lib/sections/heading/mutations.d.ts.map +1 -1
  90. package/lib/sections/heading/mutations.js +86 -23
  91. package/lib/sections/heading/selectors.d.ts.map +1 -1
  92. package/lib/sections/heading/selectors.js +14 -3
  93. package/lib/sections/heading/types.d.ts +1 -2
  94. package/lib/sections/heading/types.d.ts.map +1 -1
  95. package/lib/sections/languages/LanguageEditDialog.d.ts +3 -1
  96. package/lib/sections/languages/LanguageEditDialog.d.ts.map +1 -1
  97. package/lib/sections/languages/LanguageEditDialog.js +202 -119
  98. package/lib/sections/languages/LanguageSection.css +53 -0
  99. package/lib/sections/languages/LanguageSection.d.ts +2 -0
  100. package/lib/sections/languages/LanguageSection.d.ts.map +1 -1
  101. package/lib/sections/languages/LanguageSection.js +42 -31
  102. package/lib/sections/languages/mutations.d.ts.map +1 -1
  103. package/lib/sections/languages/mutations.js +60 -161
  104. package/lib/sections/languages/selectors.d.ts.map +1 -1
  105. package/lib/sections/languages/selectors.js +1 -2
  106. package/lib/sections/projects/ProjectEditDialog.d.ts +2 -1
  107. package/lib/sections/projects/ProjectEditDialog.d.ts.map +1 -1
  108. package/lib/sections/projects/ProjectEditDialog.js +13 -24
  109. package/lib/sections/projects/ProjectSection.css +368 -0
  110. package/lib/sections/projects/ProjectSection.d.ts +2 -1
  111. package/lib/sections/projects/ProjectSection.d.ts.map +1 -1
  112. package/lib/sections/projects/ProjectSection.js +116 -34
  113. package/lib/sections/projects/mutations.d.ts.map +1 -1
  114. package/lib/sections/projects/mutations.js +109 -132
  115. package/lib/sections/projects/selectors.d.ts.map +1 -1
  116. package/lib/sections/projects/selectors.js +4 -45
  117. package/lib/{QRCodeCard.d.ts → sections/qrcode/QRCodeCard.d.ts} +2 -1
  118. package/lib/sections/qrcode/QRCodeCard.d.ts.map +1 -0
  119. package/lib/{QRCodeCard.js → sections/qrcode/QRCodeCard.js} +59 -11
  120. package/lib/sections/qrcode/QRCodeSection.css +108 -0
  121. package/lib/sections/qrcode/QRCodeSection.d.ts +4 -0
  122. package/lib/sections/qrcode/QRCodeSection.d.ts.map +1 -0
  123. package/lib/sections/qrcode/QRCodeSection.js +17 -0
  124. package/lib/sections/resume/ResumeEditDialog.d.ts +10 -1
  125. package/lib/sections/resume/ResumeEditDialog.d.ts.map +1 -1
  126. package/lib/sections/resume/ResumeEditDialog.js +531 -149
  127. package/lib/sections/resume/ResumeSection.css +350 -0
  128. package/lib/sections/resume/ResumeSection.d.ts +3 -2
  129. package/lib/sections/resume/ResumeSection.d.ts.map +1 -1
  130. package/lib/sections/resume/ResumeSection.js +78 -49
  131. package/lib/sections/resume/mutations.d.ts.map +1 -1
  132. package/lib/sections/resume/mutations.js +17 -3
  133. package/lib/sections/resume/selectors.d.ts.map +1 -1
  134. package/lib/sections/resume/selectors.js +1 -0
  135. package/lib/sections/resume/types.d.ts +1 -0
  136. package/lib/sections/resume/types.d.ts.map +1 -1
  137. package/lib/sections/shared/collapsibleSection.d.ts.map +1 -1
  138. package/lib/sections/shared/collapsibleSection.js +1 -0
  139. package/lib/sections/shared/phoneCountries.d.ts +1 -1
  140. package/lib/sections/shared/phoneCountries.d.ts.map +1 -1
  141. package/lib/sections/shared/phoneCountries.js +2 -2
  142. package/lib/sections/shared/projectCommunityNodes.d.ts +6 -0
  143. package/lib/sections/shared/projectCommunityNodes.d.ts.map +1 -0
  144. package/lib/sections/shared/projectCommunityNodes.js +56 -0
  145. package/lib/sections/shared/rdfMutationHelpers.d.ts +35 -2
  146. package/lib/sections/shared/rdfMutationHelpers.d.ts.map +1 -1
  147. package/lib/sections/shared/rdfMutationHelpers.js +290 -14
  148. package/lib/sections/shared/sectionCardHelpers.d.ts.map +1 -1
  149. package/lib/sections/shared/sectionCardHelpers.js +80 -11
  150. package/lib/sections/shared/types.d.ts +24 -0
  151. package/lib/sections/shared/types.d.ts.map +1 -1
  152. package/lib/sections/skills/SkillsEditDialog.d.ts +3 -1
  153. package/lib/sections/skills/SkillsEditDialog.d.ts.map +1 -1
  154. package/lib/sections/skills/SkillsEditDialog.js +136 -115
  155. package/lib/sections/skills/SkillsSection.css +173 -0
  156. package/lib/sections/skills/SkillsSection.d.ts +2 -0
  157. package/lib/sections/skills/SkillsSection.d.ts.map +1 -1
  158. package/lib/sections/skills/SkillsSection.js +107 -47
  159. package/lib/sections/skills/mutations.d.ts.map +1 -1
  160. package/lib/sections/skills/mutations.js +25 -21
  161. package/lib/sections/skills/selectors.d.ts.map +1 -1
  162. package/lib/sections/skills/selectors.js +5 -3
  163. package/lib/sections/social/SocialEditDialog.d.ts +3 -1
  164. package/lib/sections/social/SocialEditDialog.d.ts.map +1 -1
  165. package/lib/sections/social/SocialEditDialog.js +170 -62
  166. package/lib/sections/social/SocialSection.css +194 -0
  167. package/lib/sections/social/SocialSection.d.ts +4 -3
  168. package/lib/sections/social/SocialSection.d.ts.map +1 -1
  169. package/lib/sections/social/SocialSection.js +59 -43
  170. package/lib/sections/social/mutations.d.ts.map +1 -1
  171. package/lib/sections/social/mutations.js +23 -132
  172. package/lib/specialButtons/AddMeToYourFriends.css +54 -0
  173. package/lib/specialButtons/addContact/AddMeToYourContacts.css +1118 -0
  174. package/lib/specialButtons/addContact/ContactCreationDialog.d.ts +10 -0
  175. package/lib/specialButtons/addContact/ContactCreationDialog.d.ts.map +1 -0
  176. package/lib/specialButtons/addContact/ContactCreationDialog.js +1123 -0
  177. package/lib/specialButtons/addContact/addMeToYourContacts.d.ts +16 -0
  178. package/lib/specialButtons/addContact/addMeToYourContacts.d.ts.map +1 -0
  179. package/lib/specialButtons/addContact/addMeToYourContacts.js +136 -0
  180. package/lib/specialButtons/addContact/contactsErrors.d.ts +8 -0
  181. package/lib/specialButtons/addContact/contactsErrors.d.ts.map +1 -0
  182. package/lib/specialButtons/addContact/contactsErrors.js +106 -0
  183. package/lib/specialButtons/addContact/contactsTypes.d.ts +43 -0
  184. package/lib/specialButtons/addContact/contactsTypes.d.ts.map +1 -0
  185. package/lib/specialButtons/addContact/contactsTypes.js +5 -0
  186. package/lib/specialButtons/addContact/helpers.d.ts +7 -0
  187. package/lib/specialButtons/addContact/helpers.d.ts.map +1 -0
  188. package/lib/specialButtons/addContact/helpers.js +103 -0
  189. package/lib/specialButtons/addContact/mutations.d.ts +16 -0
  190. package/lib/specialButtons/addContact/mutations.d.ts.map +1 -0
  191. package/lib/specialButtons/addContact/mutations.js +300 -0
  192. package/lib/specialButtons/addContact/selectors.d.ts +10 -0
  193. package/lib/specialButtons/addContact/selectors.d.ts.map +1 -0
  194. package/lib/specialButtons/addContact/selectors.js +163 -0
  195. package/lib/{addMeToYourFriends.d.ts → specialButtons/addMeToYourFriends.d.ts} +6 -4
  196. package/lib/specialButtons/addMeToYourFriends.d.ts.map +1 -0
  197. package/lib/{addMeToYourFriends.js → specialButtons/addMeToYourFriends.js} +46 -11
  198. package/lib/styles/CollapsibleSection.css +519 -0
  199. package/lib/styles/EditDialogs.css +506 -686
  200. package/lib/styles/EditDialogs.responsive.css +989 -0
  201. package/lib/texts/buttonTexts.d.ts +9 -0
  202. package/lib/texts/buttonTexts.d.ts.map +1 -0
  203. package/lib/texts/buttonTexts.js +14 -0
  204. package/lib/texts/dialogTexts.d.ts +14 -0
  205. package/lib/texts/dialogTexts.d.ts.map +1 -0
  206. package/lib/texts/dialogTexts.js +19 -0
  207. package/lib/texts/messageTexts.d.ts +42 -0
  208. package/lib/texts/messageTexts.d.ts.map +1 -0
  209. package/lib/texts/messageTexts.js +47 -0
  210. package/lib/texts/profileTexts.d.ts +14 -0
  211. package/lib/texts/profileTexts.d.ts.map +1 -0
  212. package/lib/texts/profileTexts.js +19 -0
  213. package/lib/texts/qrCodeTexts.d.ts +2 -0
  214. package/lib/texts/qrCodeTexts.d.ts.map +1 -0
  215. package/lib/texts/qrCodeTexts.js +7 -0
  216. package/lib/texts.d.ts +5 -60
  217. package/lib/texts.d.ts.map +1 -1
  218. package/lib/texts.js +55 -70
  219. package/lib/ui/dialog.css +233 -0
  220. package/lib/ui/dialog.d.ts +15 -1
  221. package/lib/ui/dialog.d.ts.map +1 -1
  222. package/lib/ui/dialog.js +245 -45
  223. package/lib/ui/dialog.responsive.css +195 -0
  224. package/lib/ui/errors.d.ts.map +1 -1
  225. package/lib/ui/errors.js +2 -1
  226. package/lib/ui/spinner.d.ts +3 -0
  227. package/lib/ui/spinner.d.ts.map +1 -0
  228. package/lib/ui/spinner.js +13 -0
  229. package/lib/utils/debug.d.ts +5 -0
  230. package/lib/utils/debug.d.ts.map +1 -0
  231. package/lib/utils/debug.js +23 -0
  232. package/lib/utils/errorDisplay.d.ts +2 -0
  233. package/lib/utils/errorDisplay.d.ts.map +1 -0
  234. package/lib/utils/errorDisplay.js +19 -0
  235. package/package.json +34 -26
  236. package/lib/ChatWithMe.d.ts +0 -7
  237. package/lib/ChatWithMe.d.ts.map +0 -1
  238. package/lib/ChatWithMe.js +0 -90
  239. package/lib/QRCodeCard.d.ts.map +0 -1
  240. package/lib/addMeToYourFriends.d.ts.map +0 -1
  241. package/lib/sections/heading/camera.d.ts +0 -19
  242. package/lib/sections/heading/camera.d.ts.map +0 -1
  243. package/lib/sections/heading/camera.js +0 -199
  244. package/lib/styles/BioSection.css +0 -77
  245. package/lib/styles/CVCard.css +0 -142
  246. package/lib/styles/ChatWithMe.css +0 -6
  247. package/lib/styles/ContactInfoEditDialog.css +0 -153
  248. package/lib/styles/EducationCard.css +0 -103
  249. package/lib/styles/HeadingSection.css +0 -309
  250. package/lib/styles/ProfileCard.css +0 -66
  251. package/lib/styles/ProfileView.css +0 -65
  252. package/lib/styles/ProjectsCard.css +0 -206
  253. package/lib/styles/QRCodeCard.css +0 -43
  254. package/lib/styles/SocialCard.css +0 -89
  255. package/lib/styles/dialog.css +0 -209
  256. package/lib/styles/utilities.css +0 -740
@@ -1,11 +1,28 @@
1
- .profile-edit-dialog__section {
1
+ @import './EditDialogs.responsive.css';
2
+
3
+ .profile__edit-form {
4
+ --profile-edit-dialog-row-max-width: 34rem;
5
+ --profile-edit-dialog-action-hover-background: var(--color-surface-accent-subtle, var(--lavender-300, #e6dcff));
6
+ --profile-edit-dialog-muted-text: var(--color-text-secondary, #4A5565);
7
+ --profile-edit-dialog-quiet-text: var(--color-text-primary, var(--gray-700, #364153));
8
+ --profile-edit-dialog-mobile-image-button-font-size: var(--font-size-xxs, 0.75rem);
9
+ --profile-edit-dialog-mobile-image-label-font-size: var(--font-size-sm, 0.875rem);
10
+ --profile-edit-dialog-mobile-image-description-font-size: 0.625rem;
11
+ --profile-edit-dialog-mobile-image-button-padding: 0.4125rem 0.7547rem 0.4375rem 0.8625rem;
12
+ width: 100%;
13
+ }
14
+
15
+ .profile-edit-dialog__section,
16
+ .profile-edit-dialog__section--education {
2
17
  display: flex;
3
18
  flex-direction: column;
4
- gap: var(--spacing-xs);
19
+ gap: var(--spacing-xs, 0.75rem);
5
20
  }
6
21
 
7
- .profile__edit-form {
8
- width: 100%;
22
+ .profile-edit {
23
+ display: flex;
24
+ flex-direction: column;
25
+ gap: var(--spacing-lg, 1.25rem);
9
26
  }
10
27
 
11
28
  .profile-edit-dialog__section h4 {
@@ -21,103 +38,154 @@
21
38
  padding: 0;
22
39
  min-inline-size: 0;
23
40
  }
41
+
24
42
  .profile-edit-dialog__field-description {
25
- color: var(--gray-600, #4A5565);
26
- font-size: var(--font-size-sm, 0.875rem); /* 14px */
43
+ color: var(--profile-edit-dialog-muted-text);
44
+ font-size: var(--font-size-sm, 0.875rem);
27
45
  font-weight: var(--font-weight-normal, normal);
28
- line-height: var(--line-height-base, 1.5); /* 21px */
29
- }
30
-
31
- .profile-edit-dialog__bio-field-container {
32
- display: flex;
33
- width: 100%;
34
- max-width: 34rem;
35
- padding: 0;
36
- flex-direction: column;
37
- align-items: flex-start;
38
- gap: var(--spacing-xs, 0.75rem);
39
- box-sizing: border-box;
40
- margin: 0;
46
+ line-height: var(--line-height-base, 1.5);
41
47
  }
42
48
 
43
49
  .profile-edit-dialog__row {
44
50
  display: flex;
45
51
  align-items: flex-start;
46
52
  gap: var(--spacing-sm);
47
- max-width: 34rem;
53
+ max-width: var(--profile-edit-dialog-row-max-width);
48
54
  }
49
55
 
50
- .profile-edit-dialog__section--resume fieldset {
51
- gap: var(--spacing-xs, 0.75rem);
56
+ .profile-edit-dialog__row--full {
57
+ max-width: 100%;
58
+ width: 100%;
52
59
  }
53
60
 
54
- .profile-edit-dialog__row--language {
55
- margin-left: calc(-1 * var(--spacing-xs, 0.75rem));
61
+ .profile-edit-dialog__field,
62
+ .profile-edit-dialog__field-type {
63
+ display: block;
64
+ margin: 0;
56
65
  }
57
66
 
58
- .profile-edit-dialog__row--social {
59
- margin-left: calc(-1 * var(--spacing-2xs, 0.625rem));
60
- max-width: 100%;
67
+ .profile-edit-dialog__field-type {
61
68
  width: 100%;
62
69
  }
63
70
 
64
- .profile-edit-dialog__field--social-type {
65
- flex: 0 0 7rem;
66
- width: 7rem;
67
- max-width: 7rem;
71
+ .profile-edit-dialog__field {
72
+ min-width: 0;
68
73
  }
69
74
 
70
- .profile-edit-dialog__field--social-url {
71
- flex: 1 1 auto;
72
- min-width: 0;
75
+ .profile-edit-dialog__field--stack {
76
+ display: grid;
73
77
  }
74
78
 
75
- .profile-edit-dialog__row--full {
76
- max-width: 100%;
79
+ .profile-edit-dialog__field--stack > small {
80
+ display: block;
77
81
  width: 100%;
82
+ text-align: right;
83
+ justify-self: end;
78
84
  }
79
85
 
80
- .profile-edit-dialog__row--project {
81
- max-width: 100%;
86
+ .profile-edit-dialog__field--full {
87
+ max-width: 100% !important;
82
88
  width: 100%;
83
89
  }
84
90
 
85
- .profile-edit-dialog__row--resume-entry-header {
86
- align-items: center;
87
- border-bottom: 1px solid var(--gray-400, #99A1AF);
91
+ .profile-edit-dialog__field--row-width {
92
+ max-width: 34rem;
93
+ width: 100%;
88
94
  }
89
95
 
90
- .profile-edit-dialog__row--resume-entry-header > .profile-edit-dialog__entry-heading {
96
+ .profile-edit-dialog__login-message {
91
97
  margin: 0;
98
+ font-size: var(--font-size-xs, 0.75rem);
99
+ color: var(--red-600, #E7000B);
92
100
  }
93
101
 
94
- .profile-edit-dialog__entry-heading {
95
- margin: 0;
96
- color: var(--gray-700, #364153);
97
- font-size: var(--font-size-sm, 0.875rem);
98
- font-style: normal;
102
+ .profile-edit-dialog__section + .profile-edit-dialog__login-message {
103
+ margin-top: var(--spacing-sm, 0.938rem);
104
+ }
105
+
106
+ .profile__edit-form--projects .profile-edit-dialog__login-message {
107
+ margin-top: var(--spacing-sm, 0.938rem);
108
+ }
109
+
110
+ #profile-modal .modal .profile__section-header .profile__action-button,
111
+ #profile-modal .modal .profile__section-header solid-ui-button.profile__action-button::part(button) {
112
+ min-height: auto;
113
+ padding: var(--spacing-xxs);
114
+ border: none;
115
+ background: none;
116
+ color: var(--color-primary);
99
117
  font-weight: var(--font-weight-md, 500);
100
- line-height: normal;
101
118
  }
102
119
 
103
- .educationEditSection .profile-edit-dialog__section-heading {
104
- margin: 0;
105
- color: var(--gray-700, #364153);
106
- font-size: 16px;
107
- font-weight: 500;
120
+ #profile-modal .modal .profile__section-header .profile__action-button:hover,
121
+ #profile-modal .modal .profile__section-header solid-ui-button.profile__action-button:hover::part(button) {
122
+ text-decoration: underline;
108
123
  }
109
124
 
110
- .profile-edit-dialog__row--resume-entry-header .profile-edit-dialog__delete-button,
111
- #profile-modal .modal .profile-edit-dialog__row--resume-entry-header button.profile-edit-dialog__delete-button {
112
- min-height: 1.75rem;
113
- min-width: 1.75rem;
125
+ .profile-edit-dialog__actions {
126
+ display: flex;
127
+ align-items: center;
128
+ justify-content: flex-end;
129
+ flex: 0 0 auto;
114
130
  }
115
131
 
116
- /* Force two direct children to split the row into equal columns. */
117
- .profile-edit-dialog__row--equal > .profile-edit-dialog__field,
118
- .profile-edit-dialog__row--equal > .profile-edit-dialog__field-type {
119
- flex: 1 1 0;
120
- min-width: 0;
132
+ .profile-edit-dialog__actions--edge {
133
+ margin-left: auto;
134
+ }
135
+
136
+ .profile-edit-dialog__add-button {
137
+ display: inline-flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ }
141
+
142
+ .profile-edit-dialog__input-wrap {
143
+ position: relative;
144
+ width: 100%;
145
+ }
146
+
147
+ .profile-edit-dialog__input--with-action {
148
+ width: 100%;
149
+ box-sizing: border-box;
150
+ padding-right: 7.5rem;
151
+ }
152
+
153
+ .profile-edit-dialog__delete-icon {
154
+ width: var(--icon-xxs, 1rem);
155
+ height: var(--icon-xxs, 1rem);
156
+ fill: currentColor;
157
+ }
158
+
159
+ .profile-edit-dialog__delete-icon svg {
160
+ width: var(--icon-xxs, 1rem);
161
+ height: var(--icon-xxs, 1rem);
162
+ }
163
+
164
+ solid-ui-button.profile-edit-dialog__delete-button {
165
+ min-height: var(--min-touch-target, 44px);
166
+ min-width: var(--min-touch-target, 44px);
167
+ color: inherit;
168
+ --button-background: transparent;
169
+ --button-height-md: var(--min-touch-target, 44px);
170
+ --button-padding-md: 0;
171
+ --button-padding-x-sm: 0;
172
+ --button-border-width: 0;
173
+ --button-border-radius: var(--border-radius-base, 0.3125rem);
174
+ --button-text: currentColor;
175
+ --button-box-shadow: none;
176
+ --button-hover-background: var(--profile-edit-dialog-action-hover-background);
177
+ --button-hover-border: transparent;
178
+ --button-hover-text: var(--color-primary, #7C4DFF);
179
+ --button-hover-box-shadow: none;
180
+ --button-active-box-shadow: none;
181
+ --button-active-transform: none;
182
+ --button-icon-size-md: var(--icon-xxs, 1rem);
183
+ --button-icon-size-lg: var(--icon-xxs, 1rem);
184
+ }
185
+
186
+ solid-ui-button.profile-edit-dialog__delete-button:hover,
187
+ solid-ui-button.profile-edit-dialog__delete-button:focus-within {
188
+ color: inherit;
121
189
  }
122
190
 
123
191
  .profile-edit-dialog__image-preview {
@@ -125,15 +193,19 @@
125
193
  gap: var(--spacing-xs);
126
194
  }
127
195
 
128
- .profile-edit-dialog__image-preview-label,
129
- .profile-edit-dialog__image-preview-description {
130
- margin: 0;
196
+ .profile-edit-dialog__image-preview-header {
197
+ margin-bottom: var(--spacing-md, 1.25rem);
131
198
  }
132
199
 
133
200
  .profile-edit-dialog__image-preview-actions {
134
201
  display: flex;
135
202
  align-items: center;
136
- gap: var(--spacing-xs);
203
+ gap: var(--spacing-xs, 0.75rem);
204
+ }
205
+
206
+ .profile-edit-dialog__image-preview-label,
207
+ .profile-edit-dialog__image-preview-description {
208
+ margin: 0;
137
209
  }
138
210
 
139
211
  .profile-edit-dialog__image-frame {
@@ -145,26 +217,31 @@
145
217
  .profile-edit-dialog__image-camera-button {
146
218
  display: none;
147
219
  position: absolute;
220
+ align-items: center;
221
+ justify-content: center;
148
222
  right: var(--spacing-2xs, 0.625rem);
149
223
  bottom: var(--spacing-2xs, 0.625rem);
150
224
  z-index: 1;
151
225
  }
152
226
 
153
- /* Override modal-wide button defaults for the small camera overlay control. */
154
- #profile-modal .modal button.profile-edit-dialog__image-camera-button {
155
- display: none !important;
156
- position: absolute;
157
- right: var(--spacing-2xs, 0.625rem);
158
- bottom: var(--spacing-2xs, 0.625rem);
227
+ solid-ui-button.profile-edit-dialog__image-camera-button {
159
228
  width: 1.25rem;
160
229
  height: 1.25rem;
161
230
  min-width: 1.25rem;
162
231
  min-height: 1.25rem;
163
- padding: 3px;
164
- background: var(--white, #FFF);
165
- border-radius: 3.333px;
166
- box-shadow: 0 0 4.444px 0 rgba(0, 0, 0, 0.25);
167
- flex-shrink: 0;
232
+ --button-height-md: 1.25rem;
233
+ --button-padding-md: 0.1875rem;
234
+ --button-icon-size-md: 0.875rem;
235
+ --button-background: var(--color-card-bg, var(--white, #FFF));
236
+ --button-border-width: 0;
237
+ --button-border-radius: 0.2083rem;
238
+ --button-box-shadow: 0 0 0.2778rem 0 rgba(0, 0, 0, 0.25);
239
+ --button-hover-background: var(--color-card-bg, var(--white, #FFF));
240
+ --button-hover-border: transparent;
241
+ --button-hover-text: currentColor;
242
+ --button-hover-box-shadow: 0 0 0.2778rem 0 rgba(0, 0, 0, 0.25);
243
+ --button-active-box-shadow: 0 0 0.2778rem 0 rgba(0, 0, 0, 0.25);
244
+ --button-active-transform: none;
168
245
  }
169
246
 
170
247
  .profile-edit-dialog__image-camera-button svg {
@@ -173,190 +250,392 @@
173
250
  display: block;
174
251
  flex-shrink: 0;
175
252
  }
253
+
176
254
  .profile-edit-dialog__image-camera-capture-row {
177
255
  display: flex;
178
256
  justify-content: center;
179
257
  width: 100%;
180
258
  }
181
259
 
182
- .profile-edit-dialog--heading .profile-edit-dialog__image-camera-capture-row {
183
- margin-bottom: calc(var(--spacing-lg, 1.25rem) / -2);
184
- }
185
-
186
260
  .profile-edit-dialog__image-camera-capture-frame {
261
+ position: relative;
187
262
  display: flex;
188
263
  flex-direction: column;
189
- justify-content: center;
190
264
  align-items: center;
265
+ justify-content: center;
191
266
  width: fit-content;
192
267
  max-width: 100%;
193
268
  margin-left: auto;
194
269
  margin-right: auto;
195
270
  margin-top: calc(var(--spacing-xs, 0.625rem) / 2);
196
271
  margin-bottom: var(--spacing-xs, 0.625rem);
197
- padding: 10px;
272
+ padding: var(--spacing-2xs, 0.625rem);
198
273
  box-sizing: border-box;
199
- border: 1px solid var(--gray-200, #E5E7EB);
200
- border-radius: 8px;
201
- }
202
-
203
- .profile-edit-dialog--heading .profile-edit-dialog__image-camera-capture-frame {
204
- margin-top: calc(var(--spacing-xs, 0.625rem) / 4);
205
- margin-bottom: calc(var(--spacing-xs, 0.625rem) / 2);
274
+ border: 1px solid var(--color-border, var(--gray-200, #E5E7EB));
275
+ border-radius: var(--border-radius-md, 0.5rem);
206
276
  }
207
277
 
208
278
  .profile-edit-dialog__image-camera-capture-frame[hidden] {
209
279
  display: none;
210
280
  }
211
281
 
212
- .profile-edit-dialog__image-camera-capture-frame table {
213
- border-collapse: collapse;
282
+ .profile-edit-dialog__photo-capture {
283
+ display: block;
214
284
  width: 100%;
215
- table-layout: fixed;
285
+ --photo-capture-gap: var(--spacing-2xs, 0.625rem);
286
+ --photo-capture-frame-max-width: 260px;
287
+ --photo-capture-surface: transparent;
288
+ --photo-capture-text: var(--color-text-subheading, var(--gray-900, #101828));
289
+ --photo-capture-muted-text: var(--profile-edit-dialog-muted-text);
290
+ --photo-capture-border: var(--color-border-button, var(--gray-300, #D1D5DC));
291
+ --photo-capture-hover: var(--color-surface-tertiary-hover, var(--gray-100, #F3F4F6));
292
+ --photo-capture-shadow: none;
293
+ --photo-capture-trigger-background: var(--color-card-bg, var(--white, #FFF));
294
+ --photo-capture-trigger-text: var(--color-text-subheading, var(--gray-900, #101828));
295
+ }
296
+
297
+ .profile-edit-dialog__photo-capture::part(panel) {
298
+ width: auto;
299
+ padding: 0;
300
+ border: 0;
301
+ background: transparent;
302
+ box-shadow: none;
216
303
  }
217
304
 
218
- .profile-edit-dialog__image-camera-capture-frame td {
219
- text-align: center;
220
- vertical-align: middle;
305
+ .profile-edit-dialog__photo-capture::part(header) {
306
+ justify-content: flex-end;
221
307
  }
222
308
 
223
- .profile-edit-dialog__image-camera-capture-frame tr:last-child {
224
- display: flex;
225
- justify-content: flex-end;
226
- align-items: center;
227
- gap: var(--spacing-2xs, 0.625rem);
309
+ .profile-edit-dialog__photo-capture::part(heading),
310
+ .profile-edit-dialog__photo-capture::part(status-message),
311
+ .profile-edit-dialog__photo-capture::part(cancel-button) {
312
+ display: none;
228
313
  }
229
314
 
230
- .profile-edit-dialog__image-camera-capture-frame tr:last-child td {
231
- display: flex;
232
- align-items: center;
233
- justify-content: center;
234
- flex: 0 0 auto;
315
+ .profile-edit-dialog__photo-capture::part(close-button) {
235
316
  width: auto;
317
+ height: auto;
318
+ padding: 0;
319
+ border: 0;
320
+ background: transparent;
321
+ color: var(--profile-edit-dialog-muted-text);
322
+ font-size: 1.25rem;
236
323
  }
237
324
 
238
- .profile-edit-dialog__image-camera-capture-frame tr:last-child td:first-child {
239
- margin-right: auto;
325
+ .profile-edit-dialog__photo-capture::part(close-button):hover,
326
+ .profile-edit-dialog__photo-capture::part(close-button):focus-visible {
327
+ background: transparent;
328
+ color: var(--color-text-subheading, var(--gray-900, #101828));
240
329
  }
241
330
 
242
- #profile-modal .modal .profile-edit-dialog__image-camera-capture-frame tr:last-child td:first-child button {
243
- display: inline-flex;
244
- align-items: center;
331
+ .profile-edit-dialog__photo-capture::part(actions) {
245
332
  justify-content: center;
333
+ gap: var(--spacing-2xs, 0.625rem);
246
334
  }
247
335
 
248
- .profile-edit-dialog__camera-control {
249
- position: relative;
250
- display: flex;
251
- flex-direction: column;
252
- align-items: center;
336
+ .profile-edit-dialog__photo-capture::part(capture-button),
337
+ .profile-edit-dialog__photo-capture::part(retake-button),
338
+ .profile-edit-dialog__photo-capture::part(confirm-button) {
339
+ min-height: auto;
340
+ padding: 0.4125rem 0.6922rem 0.4375rem 0.8rem;
341
+ border-radius: var(--border-radius-base, 0.3125rem);
342
+ border: 0.8px solid var(--color-border-button, var(--gray-300, #D1D5DC));
343
+ background: var(--color-card-bg, var(--white, #FFF));
344
+ color: var(--color-text-subheading, var(--gray-900, #101828));
345
+ font-size: var(--font-size-xxs, 0.75rem);
346
+ font-weight: var(--font-weight-xbold, 700);
347
+ line-height: var(--line-height-base, 1.5);
253
348
  }
254
349
 
255
- .profile-edit-dialog__camera-control-actions {
256
- display: flex;
257
- align-items: center;
258
- justify-content: center !important;
259
- gap: var(--spacing-2xs, 0.625rem);
260
- width: max-content;
261
- margin-left: auto;
262
- margin-right: auto;
263
- margin-top: calc(var(--spacing-2xs, 0.625rem) / 2);
264
- align-self: center;
350
+ .profile-edit-dialog__photo-capture::part(capture-button):hover,
351
+ .profile-edit-dialog__photo-capture::part(capture-button):focus-visible,
352
+ .profile-edit-dialog__photo-capture::part(retake-button):hover,
353
+ .profile-edit-dialog__photo-capture::part(retake-button):focus-visible,
354
+ .profile-edit-dialog__photo-capture::part(confirm-button):hover,
355
+ .profile-edit-dialog__photo-capture::part(confirm-button):focus-visible {
356
+ background: var(--color-surface-tertiary-hover, var(--gray-100, #F3F4F6));
357
+ border-color: var(--color-border-button-hover, var(--gray-400, #99A1AF));
358
+ }
359
+
360
+ .profile-edit-dialog__image-upload-button::part(button),
361
+ .profile-edit-dialog__image-remove-button::part(button) {
362
+ min-height: var(--min-touch-target, 44px);
363
+ }
364
+
365
+ .profile-edit-dialog__image-button::part(button) {
366
+ font-size: var(--font-size-xxs, 0.75rem);
367
+ font-weight: var(--font-weight-xbold, 700);
368
+ line-height: var(--line-height-base, 1.5);
369
+ border-radius: var(--border-radius-base, 0.3125rem);
370
+ transform: none;
371
+ }
372
+
373
+ .profile-edit-dialog__image-upload-button::part(button) {
374
+ color: var(--color-text-subheading, var(--gray-900, #101828));
375
+ border: 0.8px solid var(--color-border-button, var(--gray-300, #D1D5DC));
376
+ background: var(--color-card-bg, var(--white, #FFF));
377
+ padding: 0.4125rem 0.6922rem 0.4375rem 0.8rem;
378
+ }
379
+
380
+ .profile-edit-dialog__image-remove-button::part(button) {
381
+ color: var(--red-600, #E7000B);
382
+ padding: 0.4125rem 0.8148rem 0.4375rem 0.8625rem;
383
+ border: 0.8px solid transparent;
384
+ background: var(--color-surface-tertiary-hover, var(--gray-100, #F3F4F6));
385
+ }
386
+
387
+ #profile-modal .modal .profile-edit-dialog__image-upload-button:hover::part(button),
388
+ #profile-modal .modal .profile-edit-dialog__image-upload-button:focus-within::part(button),
389
+ #profile-modal .modal .profile-edit-dialog__image-remove-button:hover::part(button),
390
+ #profile-modal .modal .profile-edit-dialog__image-remove-button:focus-within::part(button) {
391
+ background: var(--color-surface-tertiary-hover, var(--gray-100, #F3F4F6)) !important;
392
+ border-color: var(--color-border-button-hover, var(--gray-400, #99A1AF)) !important;
265
393
  }
266
394
 
267
- .profile-edit-dialog__camera-control-cancel {
395
+ .profile-edit-dialog__paste-button {
268
396
  position: absolute;
269
- top: 0;
270
- right: 0;
397
+ white-space: nowrap;
398
+ right: var(--spacing-2xs, 0.625rem);
399
+ top: 50%;
400
+ transform: translateY(-50%);
401
+ z-index: 1;
402
+ color: var(--profile-edit-dialog-muted-text);
403
+ min-width: 0;
404
+ --button-height-md: 0;
405
+ --button-padding-md: 0.25rem 0.375rem;
406
+ --button-font-size-md: var(--font-size-xxs, 0.75rem);
407
+ --button-font-weight: var(--font-weight-normal, 400);
408
+ --button-background: var(--color-surface-tertiary-hover, var(--gray-100, #F3F4F6));
409
+ --button-border-width: 0;
410
+ --button-border-radius: var(--border-radius-base, 0.3125rem);
411
+ --button-text: var(--profile-edit-dialog-muted-text);
412
+ --button-box-shadow: none;
413
+ --button-hover-background: var(--color-surface-tertiary-hover, var(--gray-100, #F3F4F6));
414
+ --button-hover-text: var(--profile-edit-dialog-quiet-text);
415
+ --button-hover-box-shadow: none;
416
+ --button-active-box-shadow: none;
417
+ --button-active-transform: none;
418
+ --button-icon-size-md: 0.813rem;
419
+ --spacing-xxs: var(--spacing-xxs, 0.3125rem);
420
+ }
421
+
422
+ .profile-edit-dialog__paste-button:hover,
423
+ .profile-edit-dialog__paste-button:focus-within {
424
+ color: var(--profile-edit-dialog-quiet-text);
425
+ }
426
+
427
+ .profile-edit-dialog__paste-icon {
428
+ width: 0.694rem;
429
+ height: 0.813rem;
430
+ fill: currentColor;
431
+ }
432
+
433
+ solid-ui-button.profile-edit-dialog__drag-handle {
434
+ min-width: 1.75rem;
435
+ min-height: 1.75rem;
436
+ --button-background: transparent;
437
+ --button-height-md: 1.75rem;
438
+ --button-padding-md: 0;
439
+ --button-border-width: 0;
440
+ --button-border-radius: var(--border-radius-base, 0.3125rem);
441
+ --button-icon-size-md: 0.813rem;
442
+ --button-box-shadow: none;
443
+ --button-hover-background: var(--profile-edit-dialog-action-hover-background);
444
+ --button-hover-border: transparent;
445
+ --button-hover-text: var(--color-primary, #7C4DFF);
446
+ --button-hover-box-shadow: none;
447
+ --button-active-box-shadow: none;
448
+ --button-active-transform: none;
449
+ cursor: grab;
450
+ touch-action: none;
451
+ -webkit-user-select: none;
452
+ user-select: none;
453
+ }
454
+
455
+ solid-ui-button.profile-edit-dialog__drag-handle::part(button) {
456
+ min-width: 1.75rem;
457
+ min-height: 1.75rem;
458
+ }
459
+
460
+ solid-ui-button.profile-edit-dialog__drag-handle:focus-visible::part(button) {
461
+ outline: none;
462
+ }
463
+
464
+ solid-ui-button.profile-edit-dialog__drag-handle:active {
465
+ cursor: grabbing;
466
+ }
467
+
468
+ .profile-edit-dialog__drag-handle-icon {
271
469
  display: inline-flex;
272
- align-items: center;
273
- justify-content: center;
274
- padding: 0;
275
- border: 0 !important;
276
- background: transparent !important;
277
- box-shadow: none !important;
278
- color: var(--gray-600, #4A5565) !important;
279
- margin-right: 0 !important;
470
+ width: 0.813rem;
471
+ height: 0.813rem;
472
+ }
473
+
474
+ .profile-edit-dialog__drag-handle-icon svg {
475
+ width: 100%;
476
+ height: 100%;
477
+ fill: currentColor;
478
+ }
479
+
480
+ .profile-edit-dialog__row--drop-target {
481
+ outline: 1px dashed var(--color-border-button-hover, var(--gray-400, #99A1AF));
482
+ outline-offset: 2px;
483
+ }
484
+
485
+ .profile-edit-dialog__field input,
486
+ .profile-edit-dialog__field select,
487
+ .profile-edit-dialog__field-type input,
488
+ .profile-edit-dialog__field-type select {
489
+ width: 100%;
490
+ max-width: 100%;
491
+ box-sizing: border-box;
492
+ min-height: var(--min-touch-target, 44px);
493
+ height: var(--min-touch-target, 44px);
494
+ border-radius: var(--border-radius-base, 0.3125rem);
495
+ border: 1px solid var(--color-border-button-hover, var(--gray-400, #99A1AF));
496
+ background: var(--color-card-bg, var(--white, #FFF));
497
+ color: var(--color-text-subheading, var(--gray-900, #101828));
498
+ font-size: var(--font-size-sm, 0.875rem);
499
+ font-weight: var(--font-weight-medium, 500);
500
+ padding: var(--spacing-2xs, 0.625rem);
280
501
  }
281
502
 
282
- .profile-edit-dialog__camera-control-cancel svg {
503
+ .profile-edit-dialog__field input[type='date'],
504
+ .profile-edit-dialog__field-type input[type='date'] {
505
+ min-width: 0;
506
+ }
507
+
508
+ .profile-edit-dialog__field > solid-ui-combobox,
509
+ .profile-edit-dialog__field-type > solid-ui-combobox {
283
510
  display: block;
511
+ width: 100%;
512
+ min-width: 0;
513
+ max-width: 100%;
514
+ box-sizing: border-box;
515
+ align-self: stretch;
516
+ }
517
+
518
+ .profile-edit-dialog__field textarea,
519
+ .profile-edit-dialog__field-type textarea {
520
+ width: 100%;
521
+ max-width: 100%;
522
+ box-sizing: border-box;
523
+ min-height: var(--min-touch-target, 44px);
284
524
  }
285
525
 
286
- #profile-modal .modal .profile-edit-dialog__camera-control-cancel:hover,
287
- #profile-modal .modal .profile-edit-dialog__camera-control-cancel:focus-visible {
288
- background: transparent !important;
289
- border: 0 !important;
290
- color: var(--gray-900, #101828) !important;
526
+ .profile-edit-dialog__textarea {
527
+ color: var(--color-text-subheading, var(--gray-900, #101828));
528
+ font-size: var(--font-size-sm, 0.875rem);
529
+ font-weight: var(--font-weight-md, 500);
530
+ line-height: var(--line-height-loose, 1.6);
531
+ border-radius: var(--border-radius-base, 0.3125rem);
532
+ border: var(--border-width-sm, 0.1rem) solid var(--color-border-button-hover, var(--gray-400, #99A1AF));
533
+ background: var(--color-card-bg, var(--white, #FFF));
534
+ min-height: 10rem !important;
535
+ height: auto;
536
+ resize: vertical;
291
537
  }
292
- /* display: inline-flex;
293
- align-items: center;
294
- justify-content: center;
295
- min-height: 2rem;
296
- padding: 0.25rem 0.625rem;
297
- border: 1px solid var(--gray-300, #D5D7DA) !important;
298
- -- background: var(--gray-200, #E5E7EB) !important;
299
- background: var(--gray-100, #FFF) !important;
300
- color: var(--gray-700, #364153) !important;
301
- box-shadow: none !important;
302
- border-radius: 0.375rem;
303
- font-weight: var(--font-weight-md, 500); */
304
- .profile-edit-dialog__camera-control-action {
305
- display: inline-flex;
306
- align-items: center;
307
- justify-content: center;
308
- text-align: center;
309
- font-size: var(--font-size-xxs, 0.75rem) !important; /* 12 px */
310
- font-weight: var(--font-weight-xbold, 700) !important;
311
- line-height: var(--line-height-base, 1.5) !important; /* 150% */
312
- border-radius: var(--border-radius-base, 0.3125rem) !important;
313
- border: 0.8px solid var(--gray-300, #D1D5DC) !important;
314
- color: var(--gray-900, #101828) !important;
315
- background: var(--white, #FFF) !important;
316
- padding: 6.6px 11.075px 7px 12.8px !important;
538
+
539
+ .profile__edit-form--heading {
540
+ display: flex;
541
+ flex-direction: column;
542
+ gap: 1.25rem;
543
+ }
544
+
545
+ /* Section-specific edit dialog overrides */
546
+
547
+ .profile-edit-dialog__bio-field-container {
548
+ display: flex;
549
+ width: 100%;
550
+ max-width: var(--profile-edit-dialog-row-max-width);
551
+ padding: 0;
552
+ flex-direction: column;
553
+ align-items: flex-start;
554
+ gap: var(--spacing-xs, 0.75rem);
555
+ box-sizing: border-box;
556
+ margin: 0;
557
+ }
558
+
559
+ .profile-edit-dialog__row--language {
560
+ margin-left: 0;
561
+ }
562
+
563
+ .profile-edit-dialog__row--language > .profile-edit-dialog__field--language-name {
564
+ flex: 1 1 0;
565
+ min-width: 0;
566
+ }
567
+
568
+ .profile-edit-dialog__actions--language {
569
+ margin-left: 0;
570
+ }
571
+
572
+ .profile-edit-dialog__row--social {
573
+ margin-left: calc(-1 * var(--spacing-2xs, 0.625rem));
574
+ max-width: 100%;
575
+ width: 100%;
576
+ }
577
+
578
+ .profile-edit-dialog__field--social-type {
579
+ flex: 0 0 6rem;
580
+ width: 6rem;
581
+ max-width: 6rem;
582
+ }
583
+
584
+ .profile-edit-dialog__field--social-url {
585
+ flex: 1 1 auto;
586
+ min-width: 0;
587
+ }
588
+
589
+ .profile-edit-dialog__row--project {
590
+ max-width: 100%;
591
+ width: 100%;
317
592
  }
318
593
 
319
- #profile-modal .modal .profile-edit-dialog__camera-control-actions button:hover,
320
- #profile-modal .modal .profile-edit-dialog__camera-control-actions button:focus-visible {
321
- background: var(--gray-100, #F3F4F6) !important;
322
- border-color: var(--gray-400, #99A1AF) !important;
594
+ .profile-edit-dialog__row--resume-entry-header {
595
+ align-items: center;
596
+ border-bottom: 1px solid var(--color-border-button-hover, var(--gray-400, #99A1AF));
323
597
  }
324
598
 
325
- .profile-edit-dialog__image-camera-capture-frame video,
326
- .profile-edit-dialog__image-camera-capture-frame canvas {
327
- display: block;
328
- width: 100%;
329
- max-width: 260px;
330
- height: auto;
331
- border-radius: 0.5rem;
332
- margin: 0 auto;
599
+ .profile-edit-dialog__row--resume-entry-header > .profile-edit-dialog__entry-heading {
600
+ margin: 0;
333
601
  }
334
602
 
335
- #profile-modal .modal .profile-edit-dialog__image-camera-capture-frame button {
603
+ .profile-edit-dialog__entry-heading {
604
+ margin: 0;
605
+ color: var(--color-text-primary, var(--gray-700, #364153));
336
606
  font-size: var(--font-size-sm, 0.875rem);
607
+ font-weight: var(--font-weight-md, 500);
337
608
  }
338
609
 
339
- .profile-edit-dialog__image-upload-button,
340
- .profile-edit-dialog__image-remove-button {
341
- min-height: var(--min-touch-target, 44px);
342
- padding: 0 var(--spacing-sm);
343
- }
344
-
345
- .profile-edit-dialog__field,
346
- .profile-edit-dialog__field-type {
347
- display: block;
610
+ .profile-edit-dialog__section--education .profile-edit-dialog__section-heading {
348
611
  margin: 0;
612
+ color: var(--color-text-primary, var(--gray-700, #364153));
613
+ font-size: var(--font-size-md, 1rem);
614
+ font-weight: var(--font-weight-md, 500);
349
615
  }
350
616
 
351
- .profile-edit-dialog__field-type {
352
- width: 100%;
617
+ .profile-edit-dialog__row--resume-entry-header .profile-edit-dialog__delete-button,
618
+ solid-ui-button.profile-edit-dialog__delete-button.profile-edit-dialog__delete-button {
619
+ min-height: var(--icon-sm, 1.8rem);
620
+ min-width: var(--icon-sm, 1.8rem);
353
621
  }
354
622
 
355
- .profile-edit-dialog__field {
356
- /* flex: 1 1 auto; */
623
+ /* Force two direct children to split the row into equal columns. */
624
+ .profile-edit-dialog__row--equal > .profile-edit-dialog__field,
625
+ .profile-edit-dialog__row--equal > .profile-edit-dialog__field-type {
626
+ flex: 1 1 0;
357
627
  min-width: 0;
358
628
  }
359
629
 
630
+ .profile-edit-dialog--heading .profile-edit-dialog__image-camera-capture-row {
631
+ margin-bottom: calc(var(--spacing-lg, 1.25rem) / -2);
632
+ }
633
+
634
+ .profile-edit-dialog--heading .profile-edit-dialog__image-camera-capture-frame {
635
+ margin-top: calc(var(--spacing-xs, 0.625rem) / 4);
636
+ margin-bottom: calc(var(--spacing-xs, 0.625rem) / 2);
637
+ }
638
+
360
639
  .profile__edit-form--resume .profile-edit-dialog__field,
361
640
  .profile__edit-form--resume .profile-edit-dialog__field-type:not(.hidden),
362
641
  .profile__edit-form--contact-info .profile-edit-dialog__field,
@@ -378,16 +657,18 @@
378
657
  }
379
658
 
380
659
  .profile__edit-form--resume .profile-edit-dialog__field > input,
381
- .profile__edit-form--resume .profile-edit-dialog__field > select,
660
+ .profile__edit-form--resume .profile-edit-dialog__field > solid-ui-select,
661
+ .profile__edit-form--resume .profile-edit-dialog__field > solid-ui-combobox,
382
662
  .profile__edit-form--resume .profile-edit-dialog__field > textarea,
383
663
  .profile__edit-form--resume .profile-edit-dialog__field-type > input,
384
- .profile__edit-form--resume .profile-edit-dialog__field-type > select,
664
+ .profile__edit-form--resume .profile-edit-dialog__field-type > solid-ui-select,
385
665
  .profile__edit-form--resume .profile-edit-dialog__field-type > textarea,
386
666
  .profile__edit-form--contact-info .profile-edit-dialog__field > input,
387
- .profile__edit-form--contact-info .profile-edit-dialog__field > select,
667
+ .profile__edit-form--contact-info .profile-edit-dialog__field > solid-ui-select,
388
668
  .profile__edit-form--contact-info .profile-edit-dialog__field > textarea,
389
669
  .profile__edit-form--contact-info .profile-edit-dialog__field-type > input,
390
670
  .profile__edit-form--contact-info .profile-edit-dialog__field-type > select,
671
+ .profile__edit-form--contact-info .profile-edit-dialog__field-type > solid-ui-select,
391
672
  .profile__edit-form--contact-info .profile-edit-dialog__field-type > textarea {
392
673
  align-self: stretch;
393
674
  }
@@ -415,20 +696,22 @@
415
696
  width: 100%;
416
697
  }
417
698
 
418
- .profile-edit-dialog__date-pair > select {
699
+ .profile-edit-dialog__date-pair > solid-ui-select {
419
700
  flex: 1 1 0;
420
701
  min-width: 0;
421
702
  }
422
703
 
423
- .profile-edit-dialog__field--stack {
424
- display: grid;
425
- gap: var(--spacing-xxs);
426
- }
427
-
428
- .profile-edit-dialog__field--stack > small {
704
+ .profile-edit-dialog__resume-date-select {
429
705
  display: block;
430
706
  width: 100%;
431
- text-align: right;
707
+ min-width: 0;
708
+ max-width: 100%;
709
+ box-sizing: border-box;
710
+ }
711
+
712
+ .profile-edit-dialog__resume-date-select--disabled {
713
+ pointer-events: none;
714
+ opacity: var(--opacity-input-disabled, 0.75);
432
715
  }
433
716
 
434
717
  .profile-edit-dialog__bio-field-container > small {
@@ -436,16 +719,6 @@
436
719
  text-align: right;
437
720
  }
438
721
 
439
- .profile-edit-dialog__field--full {
440
- max-width: 100% !important;
441
- width: 100%;
442
- }
443
-
444
- .profile-edit-dialog__field--row-width {
445
- max-width: 34rem;
446
- width: 100%;
447
- }
448
-
449
722
  .profile-edit-dialog--heading .profile-edit-dialog__row,
450
723
  .profile-edit-dialog--heading .profile-edit-dialog__field--row-width {
451
724
  max-width: 100%;
@@ -453,29 +726,14 @@
453
726
  }
454
727
 
455
728
  .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo {
456
- padding-bottom: calc(var(--spacing-sm, 0.938rem) / 2);
457
- margin-bottom: calc(var(--spacing-sm, 0.938rem) / 2);
458
- border-bottom: 1px solid var(--slate-200, #E2E8F0);
729
+ padding-bottom: var(--spacing-md, 1.25rem);
730
+ border-bottom: 1px solid var(--color-border-lighter, var(--slate-200, #E2E8F0));
459
731
  }
460
732
 
461
733
  .profile-edit-dialog--heading .profile-edit {
462
734
  gap: calc(var(--spacing-lg, 1.25rem) / 2);
463
735
  }
464
736
 
465
- .profile-edit-dialog__login-message {
466
- margin: 0;
467
- font-size: var(--font-size-xs, 0.75rem);
468
- color: var(--red-600, #E7000B);
469
- }
470
-
471
- .profile-edit-dialog__section + .profile-edit-dialog__login-message {
472
- margin-top: var(--spacing-sm, 0.938rem);
473
- }
474
-
475
- .profile__edit-form--projects .profile-edit-dialog__login-message {
476
- margin-top: var(--spacing-sm, 0.938rem);
477
- }
478
-
479
737
  .profile-edit-dialog--heading .profile-edit-dialog__row--contact-point {
480
738
  max-width: 100%;
481
739
  width: 100%;
@@ -499,14 +757,8 @@
499
757
  max-width: 6.4375rem;
500
758
  }
501
759
 
502
- .profile-edit-dialog__field-type--contact-point select {
503
- width: auto;
504
- max-width: none;
505
- min-width: 6.4375rem;
506
- }
507
-
508
760
  .profile-edit-dialog__row--address-header {
509
- max-width: 34rem;
761
+ max-width: var(--profile-edit-dialog-row-max-width);
510
762
  align-items: flex-end;
511
763
  }
512
764
 
@@ -516,20 +768,20 @@
516
768
  }
517
769
 
518
770
  .profile-edit-dialog__checkbox-label {
771
+ margin-left: auto;
519
772
  display: inline-flex;
520
773
  align-items: center;
521
- gap: var(--spacing-xs);
522
- margin-left: auto;
523
- cursor: pointer;
774
+ gap: var(--spacing-xs, 0.75rem);
775
+ cursor: var(--profile-interactive-cursor, pointer);
524
776
  }
525
777
 
526
778
  .profile-edit-dialog__checkbox-input {
527
- width: 1rem;
528
- height: 1rem;
779
+ width: var(--icon-xxs, 1rem);
780
+ height: var(--icon-xxs, 1rem);
529
781
  margin: 0;
530
782
  flex: 0 0 auto;
531
783
  accent-color: var(--color-primary, #7C4DFF);
532
- cursor: pointer;
784
+ cursor: var(--profile-interactive-cursor, pointer);
533
785
  }
534
786
 
535
787
  .profile-edit-dialog__checkbox-input:focus-visible {
@@ -543,7 +795,7 @@
543
795
 
544
796
  /* The street-address row is a standalone label, so cap its width like the flex rows. */
545
797
  .profile-edit-dialog__section fieldset > .profile-edit-dialog__field {
546
- max-width: 34rem;
798
+ max-width: var(--profile-edit-dialog-row-max-width);
547
799
  }
548
800
 
549
801
  .profile-edit-dialog__field-type--wide {
@@ -560,267 +812,32 @@
560
812
  align-self: flex-start;
561
813
  }
562
814
 
563
- .profile-edit-dialog__actions {
564
- flex: 0 0 auto;
565
- display: flex;
566
- align-items: center;
567
- justify-content: flex-end;
568
- }
569
-
570
- .profile-edit-dialog__actions--edge {
571
- margin-left: auto;
572
- }
573
-
574
- .profile-edit-dialog__input-wrap {
575
- position: relative;
576
- width: 100%;
577
- }
578
-
579
- .profile-edit-dialog__input--with-action {
580
- width: 100%;
581
- box-sizing: border-box;
582
- padding-right: 7.5rem;
583
- }
584
-
585
- .profile-edit-dialog__input--with-leading-icon {
586
- width: 100%;
587
- box-sizing: border-box;
588
- padding-left: 2.1rem;
589
- }
590
-
591
- .profile-edit-dialog__search-icon {
592
- position: absolute;
593
- left: var(--spacing-2xs, 0.625rem);
594
- top: 50%;
595
- transform: translateY(-50%);
596
- display: inline-flex;
597
- align-items: center;
598
- justify-content: center;
599
- color: var(--gray-400, #99A1AF);
600
- pointer-events: none;
601
- z-index: 1;
602
- }
603
-
604
- .profile-edit-dialog__search-icon svg {
605
- display: block;
606
- width: 0.8125rem;
607
- height: 0.8125rem;
608
- }
609
-
610
- .profile-edit-dialog__delete-button {
611
- min-height: var(--min-touch-target, 44px);
612
- min-width: var(--min-touch-target, 44px);
613
- padding: 0;
614
- border: 0;
615
- background: transparent;
616
- color: inherit;
617
- cursor: pointer;
618
- }
619
-
620
- #profile-modal .modal button.profile-edit-dialog__delete-button {
815
+ .profile__edit-form--resume .profile-edit-dialog__field > solid-ui-combobox {
621
816
  min-height: var(--min-touch-target, 44px);
622
- min-width: var(--min-touch-target, 44px);
623
- padding: 0;
624
- border: 0;
625
- border-radius: 0;
626
- background: transparent;
627
- color: inherit;
628
- box-shadow: none;
629
- }
630
-
631
- .profile-edit-dialog__delete-icon {
632
- display: inline-flex;
633
- align-items: center;
634
- justify-content: center;
635
- width: 1.1rem;
636
- height: 1.1rem;
637
- fill: currentColor;
638
- }
639
-
640
- .profile-edit-dialog__delete-icon svg {
641
- width: 1.1rem;
642
- height: 1.1rem;
643
- }
644
-
645
- .profile-edit-dialog__delete-button:hover,
646
- .profile-edit-dialog__delete-button:focus-visible {
647
- color: var(--color-danger, #b42318);
648
- }
649
-
650
- .profile-edit-dialog__image-button {
651
- text-align: center;
652
- font-size: var(--font-size-xxs, 0.75rem); /* 12 px */
653
- font-weight: var(--font-weight-xbold, 700);
654
- line-height: var(--line-height-base, 1.5); /* 150% */
655
- border-radius: var(--border-radius-base, 0.3125rem);
656
- border: 0.8px solid var(--gray-300, #D1D5DC);
657
- }
658
-
659
- .profile-edit-dialog__image-upload-button {
660
- color: var(--gray-900, #101828);
661
- border: 0.8px solid var(--gray-300, #D1D5DC);
662
- background: var(--white, #FFF);
663
- padding: 6.6px 11.075px 7px 12.8px;
664
- }
665
-
666
- .profile-edit-dialog__image-remove-button {
667
- color: var(--red-600, #E7000B);
668
- padding: 6.6px 13.037px 7px 13.8px;
669
- border: 0.8px solid rgba(0, 0, 0, 0.00);
670
- background: var(--gray-100, #F3F4F6);
671
- }
672
-
673
- #profile-modal .modal .profile-edit-dialog__image-upload-button:hover,
674
- #profile-modal .modal .profile-edit-dialog__image-upload-button:focus-visible,
675
- #profile-modal .modal .profile-edit-dialog__image-remove-button:hover,
676
- #profile-modal .modal .profile-edit-dialog__image-remove-button:focus-visible {
677
- background: var(--gray-100, #F3F4F6) !important;
678
- border-color: var(--gray-400, #99A1AF) !important;
679
- }
680
-
681
- /* Placeholder class for project paste action styling. */
682
- .profile-edit-dialog__paste-button {
683
- display: flex;
684
- padding: 0.25rem 0.375rem; /* 4px 6px */
685
- align-items: center;
686
- position: absolute;
687
- background: var(--white, #fff);
688
- border: 0;
689
- outline: none;
690
- white-space: nowrap;
691
- right: var(--spacing-2xs, 0.625rem);
692
- top: 50%;
693
- transform: translateY(-50%);
694
- z-index: 1;
695
- color: var(--gray-500, #6A7282);
696
- font-size: 0.75rem; /* 12px */
697
- font-weight: var(--font-weight-normal, 400);
698
- }
699
-
700
- .profile-edit-dialog__paste-button:focus,
701
- .profile-edit-dialog__paste-button:focus-visible {
702
- outline: none;
703
- }
704
-
705
- /* remove the regular button styling for paste */
706
- #profile-modal .modal button.profile-edit-dialog__paste-button,
707
- #profile-modal .modal button.profile-edit-dialog__paste-button:hover,
708
- #profile-modal .modal button.profile-edit-dialog__paste-button:focus,
709
- #profile-modal .modal button.profile-edit-dialog__paste-button:focus-visible,
710
- #profile-modal .modal button.profile-edit-dialog__paste-button:active {
711
- border: 0;
712
- outline: none;
713
- box-shadow: none;
714
- -webkit-appearance: none;
715
- appearance: none;
716
- }
717
- .profile-edit-dialog__paste-icon {
718
- width: 0.694rem; /* 11.105px */
719
- height: 0.813rem; /* 13.038px */
720
- fill: var(--gray-500, #6A7282);
721
- }
722
- #profile-modal .modal button.profile-edit-dialog__drag-handle {
723
- min-height: 1.75rem;
724
- min-width: 1.75rem;
725
- padding: 0;
726
- border: 0;
727
- background: transparent;
728
- box-shadow: none;
729
- }
730
-
731
- .profile-edit-dialog__row--drop-target {
732
- outline: 1px dashed var(--gray-400, #99A1AF);
733
- outline-offset: 2px;
734
- }
735
-
736
- #profile-modal .modal button.profile-edit-dialog__delete-button:hover,
737
- #profile-modal .modal button.profile-edit-dialog__delete-button:focus-visible {
738
- border: 0;
739
- background: transparent;
740
- color: var(--color-danger, #b42318);
817
+ height: var(--min-touch-target, 44px);
741
818
  }
742
819
 
743
- .profile-edit-dialog__field input,
744
- .profile-edit-dialog__field select,
745
- .profile-edit-dialog__field-type input,
746
- .profile-edit-dialog__field-type select {
747
- width: 100%;
748
- max-width: 100%;
749
- box-sizing: border-box;
820
+ .profile__edit-form--resume .profile-edit-dialog__field > solid-ui-combobox::part(input) {
750
821
  min-height: var(--min-touch-target, 44px);
751
822
  height: var(--min-touch-target, 44px);
752
- border-radius: var(--border-radius-base, 0.3125rem);
753
- border: 1px solid var(--gray-400, #99A1AF);
754
- background: var(--white, #FFF);
755
- color: var(--gray-900, #101828);
756
- font-size: var(--font-size-sm, 0.875rem);
757
- font-weight: var(--font-weight-medium, 500);
758
- padding: var(--spacing-2xs, 0.625rem);
759
- }
760
-
761
- .profile-edit-dialog__field input.profile-edit-dialog__input--with-leading-icon {
762
- padding-left: 2.1rem;
763
- }
764
-
765
- /* Keep phone/email contact-point type selects compact. */
766
- .profile-edit-dialog__field-type--contact-point > select {
767
- display: inline-block;
768
- width: auto !important;
769
- max-width: none !important;
770
- min-width: 0 !important;
771
823
  }
772
824
 
773
- /* In heading edit, force both type selects to fill the same fixed wrapper width. */
774
- .profile-edit-dialog--heading .profile-edit-dialog__row--contact-point > .profile-edit-dialog__field-type.profile-edit-dialog__field-type--contact-point > select {
825
+ /* Dedicated hook for the social account type select in SocialEditDialog. */
826
+ .profile-edit-dialog__social-account-select {
775
827
  display: block;
776
- width: 100% !important;
777
- min-width: 0 !important;
778
- max-width: 100% !important;
779
- }
780
-
781
- /* Keep phone/email type selects compact after the generic full-width rule above. */
782
- .profile-edit-dialog__field-type--contact-point select {
783
- width: fit-content;
784
- max-width: none;
785
- min-width: 6.4375rem;
786
- }
787
-
788
- .profile-edit-dialog__textarea {
789
- color: var(--gray-900, #101828);
790
- font-size: var(--font-size-sm, 0.875rem);
791
- font-weight: var(--font-weight-md, 500);
792
- line-height: var(--line-height-loose, 1.6); /* 22.4px */
793
- border-radius: var(--border-radius-base, 0.3125rem);
794
- border: var(--border-width-sm, 0.1rem) solid var(--gray-400, #99A1AF);
795
- background: var(--white, #FFF);
796
- }
797
-
798
- .profile-edit-dialog__field textarea,
799
- .profile-edit-dialog__field-type textarea {
800
828
  width: 100%;
829
+ min-width: 0;
801
830
  max-width: 100%;
802
831
  box-sizing: border-box;
803
- min-height: var(--min-touch-target, 44px);
832
+ contain: inline-size;
804
833
  }
805
834
 
806
- /* Dedicated hook for the social account type select in SocialEditDialog. */
807
- .profile-edit-dialog__social-account-select {
835
+ .profile-edit-dialog__resume-organization-type-select {
808
836
  display: block;
809
837
  width: 100%;
810
838
  min-width: 0;
811
839
  max-width: 100%;
812
840
  box-sizing: border-box;
813
- min-height: var(--min-touch-target, 44px);
814
- height: var(--min-touch-target, 44px);
815
- border-radius: var(--border-radius-base, 0.3125rem);
816
- border: 1px solid var(--gray-400, #99A1AF);
817
- background: var(--white, #FFF);
818
- color: var(--gray-900, #101828);
819
- font-size: var(--font-size-sm, 0.875rem);
820
- font-weight: var(--font-weight-medium, 500);
821
- padding: var(--spacing-2xs, 0.625rem);
822
-
823
-
824
841
  }
825
842
 
826
843
  .profile-edit-dialog__bio-field-container textarea {
@@ -829,200 +846,3 @@
829
846
  box-sizing: border-box;
830
847
  min-height: var(--min-touch-target, 44px);
831
848
  }
832
-
833
- .profile-edit-dialog__textarea {
834
- min-height: 10rem !important;
835
- height: auto;
836
- resize: vertical;
837
- }
838
-
839
- .profile-edit-dialog__field--stack small {
840
- justify-self: end;
841
- text-align: right;
842
- }
843
-
844
- @media (max-width: 640px) {
845
- .profile-edit-dialog__row {
846
- max-width: 100%;
847
- flex-direction: column;
848
- align-items: stretch;
849
- }
850
-
851
- .profile-edit-dialog__row--equal > .profile-edit-dialog__field,
852
- .profile-edit-dialog__row--equal > .profile-edit-dialog__field-type {
853
- flex: 1 1 auto;
854
- }
855
-
856
- .profile-edit-dialog__field-type {
857
- flex: 1 1 auto;
858
- }
859
-
860
- .profile-edit-dialog__field-type--contact-point {
861
- flex: 1 1 auto;
862
- max-width: 100%;
863
- }
864
-
865
- .profile-edit-dialog__row--address-header {
866
- flex-direction: row;
867
- align-items: flex-end;
868
- }
869
-
870
- .profile-edit-dialog__row--social {
871
- margin-left: 0;
872
- gap: var(--spacing-2xs, 0.625rem);
873
- flex-direction: row;
874
- align-items: center;
875
- flex-wrap: nowrap;
876
- }
877
-
878
- .profile-edit-dialog__row--social .profile-edit-dialog__social-icon {
879
- width: 1.5rem;
880
- height: 1.5rem;
881
- }
882
-
883
- .profile-edit-dialog__field--social-type {
884
- flex: 0 0 5.5rem;
885
- width: 5.5rem;
886
- max-width: 5.5rem;
887
- }
888
-
889
- .profile-edit-dialog__field--social-url {
890
- flex: 1 1 auto;
891
- min-width: 0;
892
- }
893
-
894
- .profile-edit-dialog__field--resume-location {
895
- flex: 1 1 100%;
896
- width: 100%;
897
- max-width: 100%;
898
- }
899
-
900
- .profile-edit-dialog__row--language {
901
- flex-direction: row;
902
- align-items: center;
903
- flex-wrap: nowrap;
904
- }
905
-
906
- .profile-edit-dialog__row--language > .profile-edit-dialog__field {
907
- flex: 1 1 0;
908
- min-width: 0;
909
- }
910
-
911
- .profile-edit-dialog__row--resume-entry-header {
912
- flex-direction: row;
913
- align-items: center;
914
- flex-wrap: nowrap;
915
- width: 100%;
916
- max-width: 100%;
917
- }
918
-
919
- .profile-edit-dialog__row--resume-entry-header > .profile-edit-dialog__actions--edge {
920
- margin-left: auto;
921
- }
922
-
923
- .profile-edit-dialog__row--skill {
924
- flex-direction: row;
925
- align-items: center;
926
- flex-wrap: nowrap;
927
- gap: var(--spacing-2xs, 0.625rem);
928
- }
929
-
930
- .profile-edit-dialog__row--skill > .profile-edit-dialog__field {
931
- flex: 1 1 0;
932
- min-width: 0;
933
- }
934
-
935
- .profile-edit-dialog__row--skill > .profile-edit-dialog__actions {
936
- flex: 0 0 auto;
937
- margin-left: 0;
938
- }
939
-
940
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo {
941
- flex-direction: row;
942
- align-items: center;
943
- flex-wrap: nowrap;
944
- gap: var(--spacing-xs, 0.75rem);
945
- width: 100%;
946
- max-width: 100%;
947
- }
948
-
949
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo > header {
950
- margin-bottom: 0;
951
- flex: 0 0 auto;
952
- }
953
-
954
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile__hero,
955
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile__hero-alt {
956
- width: 5.5rem;
957
- height: 5.5rem;
958
- }
959
-
960
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile__hero-alt {
961
- display: flex;
962
- align-items: center;
963
- justify-content: center;
964
- padding: 0;
965
- }
966
-
967
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile-edit-dialog__image-camera-button {
968
- display: inline-flex;
969
- right: var(--spacing-xxs, 0.3125rem);
970
- bottom: var(--spacing-xxs, 0.3125rem);
971
- width: 1.875rem;
972
- min-width: 1.875rem;
973
- min-height: 1.875rem;
974
- }
975
-
976
- #profile-modal .modal button.profile-edit-dialog__image-camera-button {
977
- display: inline-flex !important;
978
- }
979
-
980
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile-edit-dialog__image-preview {
981
- flex: 1 1 auto;
982
- min-width: 0;
983
- gap: var(--spacing-xxs, 0.3125rem);
984
- width: 100%;
985
- }
986
-
987
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile-edit-dialog__image-preview-label {
988
- font-size: var(--font-size-sm, 0.875rem);
989
- line-height: var(--line-height-tight, 1.25);
990
- }
991
-
992
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile-edit-dialog__image-preview-description {
993
- font-size: 10px;
994
- line-height: var(--line-height-base, 1.4);
995
- }
996
-
997
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile-edit-dialog__image-preview-actions {
998
- flex-wrap: nowrap;
999
- gap: var(--spacing-xs, 0.5rem);
1000
- width: 100%;
1001
- }
1002
-
1003
- .profile-edit-dialog--heading .profile-edit-dialog__row--heading-photo .profile-edit-dialog__image-button {
1004
- flex: 1 1 0;
1005
- width: 100%;
1006
- padding: 0 0.75rem;
1007
- }
1008
-
1009
- .profile-edit-dialog__row--inline-end {
1010
- justify-content: flex-start;
1011
- }
1012
-
1013
- .profile-edit-dialog__actions {
1014
- justify-content: flex-start;
1015
- }
1016
-
1017
- .profile-edit-dialog__row--address-header .profile-edit-dialog__actions {
1018
- justify-content: flex-end;
1019
- }
1020
-
1021
- .profile-edit-dialog__textarea {
1022
- min-height: 15rem !important;
1023
- }
1024
-
1025
- .profile-edit-dialog__input-help-text {
1026
- display: none;
1027
- }
1028
- }