* Move .back-button inline styles to CSS file All occurrences of the back-button CSS class used the same inline CSS rules, so moved them over to the CSS file * Fix “Add new domain block” button using inline CSS * Replace common pattern of inline-styled button boxes by a CSS class In particular, switching from `float: left/right` to a flexbox with `justify-content: space-between`. This implied changing the order of a few HTML tags and adding an empty `div` in one case. Also removed a `margin-bottom` rule that wasn't needed due to the margins of surrounding elements. * Move account admin view inline CSS to CSS file
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
- content_for :page_title do
 | 
						|
  = t('admin.instances.title')
 | 
						|
 | 
						|
.filters
 | 
						|
  .filter-subset
 | 
						|
    %strong= t('admin.instances.moderation.title')
 | 
						|
    %ul
 | 
						|
      %li= filter_link_to t('admin.instances.moderation.all'), limited: nil
 | 
						|
 | 
						|
      - unless whitelist_mode?
 | 
						|
        %li= filter_link_to t('admin.instances.moderation.limited'), limited: '1'
 | 
						|
 | 
						|
  %div.special-action-button
 | 
						|
    - if whitelist_mode?
 | 
						|
      = link_to t('admin.domain_allows.add_new'), new_admin_domain_allow_path, class: 'button'
 | 
						|
    - else
 | 
						|
      = link_to t('admin.domain_blocks.add_new'), new_admin_domain_block_path, class: 'button'
 | 
						|
 | 
						|
- unless whitelist_mode?
 | 
						|
  = form_tag admin_instances_url, method: 'GET', class: 'simple_form' do
 | 
						|
    .fields-group
 | 
						|
      - InstanceFilter::KEYS.each do |key|
 | 
						|
        = hidden_field_tag key, params[key] if params[key].present?
 | 
						|
 | 
						|
      - %i(by_domain).each do |key|
 | 
						|
        .input.string.optional
 | 
						|
          = text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.instances.#{key}")
 | 
						|
 | 
						|
      .actions
 | 
						|
        %button= t('admin.accounts.search')
 | 
						|
        = link_to t('admin.accounts.reset'), admin_instances_path, class: 'button negative'
 | 
						|
 | 
						|
%hr.spacer/
 | 
						|
 | 
						|
- @instances.each do |instance|
 | 
						|
  .directory__tag
 | 
						|
    = link_to admin_instance_path(instance) do
 | 
						|
      %h4
 | 
						|
        = instance.domain
 | 
						|
        %small
 | 
						|
          - if instance.domain_block
 | 
						|
            - first_item = true
 | 
						|
            - if !instance.domain_block.noop?
 | 
						|
              = t("admin.domain_blocks.severity.#{instance.domain_block.severity}")
 | 
						|
              - first_item = false
 | 
						|
            - unless instance.domain_block.suspend?
 | 
						|
              - if instance.domain_block.reject_media?
 | 
						|
                - unless first_item
 | 
						|
                  •
 | 
						|
                = t('admin.domain_blocks.rejecting_media')
 | 
						|
                - first_item = false
 | 
						|
              - if instance.domain_block.reject_reports?
 | 
						|
                - unless first_item
 | 
						|
                  •
 | 
						|
                = t('admin.domain_blocks.rejecting_reports')
 | 
						|
          - elsif whitelist_mode?
 | 
						|
            = t('admin.accounts.whitelisted')
 | 
						|
          - else
 | 
						|
            = t('admin.accounts.no_limits_imposed')
 | 
						|
      - if instance.countable?
 | 
						|
        .trends__item__current{ title: t('admin.instances.known_accounts', count: instance.accounts_count) }= number_to_human instance.accounts_count, strip_insignificant_zeros: true
 | 
						|
 | 
						|
= paginate paginated_instances
 |