Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7eec8f25 authored by Akhil's avatar Akhil 🙂
Browse files

Merge branch 'dev/personal-info-settings' into 'main'

Class name changes to correct regression

See merge request e/infra/ecloud/nextcloud-apps/ecloud-theme-helper!43
parents 75a186c5 18234947
Loading
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
#personal-settings {

    .email-actions-container,
    .email-container+em,
    .email__actions-container,
    .email+em,
    .personal-settings-setting-box label[for="email"]~.add-button {
        display: none;
    }

	input:read-only {
		background-color: #e0e0e0;
	}
}
+1 −1
Original line number Diff line number Diff line
$(document).ready(function () {
    $('.email-container input[name="email"]').prop('readonly', true);
    $('.personal-settings-setting-box #email').prop('readonly', true);
})