mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 00:25:23 +08:00
f72899401d
This PR refactors the following: * leaving all the CSS applied to the old `modal-body` classes in their respective files * made new clean styling for `.d-modal` and refactored the template to use the new BEM classes * `inner-`, `middle-`, `outer-` container classes are gone and replaced with simplified `wrapper` and `container` classes * use standardised max-sizes with modifiers `-large` and `-max` * lighter backdrop, * min-width to prevent puny modals * other styling changes regarding padding, close button,… * pulled out all modal overrides into a general `modal-overrides` file + cleanup of outdated CSS * pulled out login and create account modal styling into their own file, cause it's such a big override * removed old general login.scss file for mobile & desktop * only kept some remainders I don't want to touch in `app/assets/stylesheets/common/base/login.scss`
26 lines
631 B
Ruby
26 lines
631 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Modals
|
|
class RejectReasonReviewable < PageObjects::Modals::Base
|
|
def modal
|
|
find(".reject-reason-reviewable-modal")
|
|
end
|
|
|
|
def select_send_rejection_email_checkbox
|
|
modal.find(".reject-reason-reviewable-modal__send_email--inline").check
|
|
end
|
|
|
|
def fill_in_rejection_reason(reason)
|
|
modal.find(".reject-reason-reviewable-modal__explain-reviewable textarea").fill_in(
|
|
with: reason,
|
|
)
|
|
end
|
|
|
|
def delete_user
|
|
modal.find(".d-modal__footer .btn.btn-danger").click
|
|
end
|
|
end
|
|
end
|
|
end
|