| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**
- * Styles errors and links in the AddPeopleDialog.
- */
- .modal-dialog-form {
- .add-people-form-wrap {
- margin-top: 8px;
-
- .error {
- padding-left: 5px;
-
- a {
- padding-left: 5px;
- }
- }
-
- .add-telephone-icon {
- display: flex;
- height: 28px;
- transform: scaleX(-1);
- width: 28px;
-
- i {
- line-height: 28px;
- margin: auto;
- }
- }
-
- .footer-text-wrap {
- display: flex;
- }
-
- .footer-telephone-icon {
- display: flex;
- transform: scaleX(-1);
- padding-left: 10px;
-
- i {
- line-height: 20px;
- margin: auto;
- }
- }
- }
- }
-
- /**
- * Styles errors in the MultiSelectAutocomplete.
- */
- .autocomplete-error {
- min-width: 260px;
- }
|