12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * Styles errors and links in the AddPeopleDialog.
- */
- .modal-dialog-form {
- .add-people-form-wrap {
-
- .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;
- }
|