Skip to content
Snippets Groups Projects
Select Git revision
  • 8.9.x
  • 11.x default protected
  • 11.2.x protected
  • 10.5.x protected
  • 10.6.x protected
  • 11.1.x protected
  • 10.4.x protected
  • 11.0.x protected
  • 10.3.x protected
  • 7.x protected
  • 10.2.x protected
  • 10.1.x protected
  • 9.5.x protected
  • 10.0.x protected
  • 9.4.x protected
  • 9.3.x protected
  • 9.2.x protected
  • 9.1.x protected
  • 9.0.x protected
  • 8.8.x protected
  • 10.5.2 protected
  • 11.2.3 protected
  • 10.5.1 protected
  • 11.2.2 protected
  • 11.2.1 protected
  • 11.2.0 protected
  • 10.5.0 protected
  • 11.2.0-rc2 protected
  • 10.5.0-rc1 protected
  • 11.2.0-rc1 protected
  • 10.4.8 protected
  • 11.1.8 protected
  • 10.5.0-beta1 protected
  • 11.2.0-beta1 protected
  • 11.2.0-alpha1 protected
  • 10.4.7 protected
  • 11.1.7 protected
  • 10.4.6 protected
  • 11.1.6 protected
  • 10.3.14 protected
40 results

action-links.css

Blame
  • Lauri Eskola's avatar
    Issue #3024527 by alexpott, markconroy, waako, occupant: Add and configure stylelint-order
    Lauri Timmanee authored
    9a4a499f
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    action-links.css 832 B
    /**
     * @file
     * Styles for link buttons and action links.
     */
    
    .action-links {
      margin: 1em 0;
      padding: 0;
      list-style: none;
    }
    [dir="rtl"] .action-links {
      /* This is required to win over specificity of [dir="rtl"] ul */
      margin-right: 0;
    }
    .action-links li {
      display: inline-block;
      margin: 0 0.3em;
    }
    .action-links li:first-child {
      margin-left: 0; /* LTR */
    }
    [dir="rtl"] .action-links li:first-child {
      margin-right: 0;
      margin-left: 0.3em;
    }
    .button-action {
      display: inline-block;
      padding: 0.2em 0.5em 0.3em;
      text-decoration: none;
      line-height: 160%;
    }
    .button-action:before {
      margin-left: -0.1em; /* LTR */
      padding-right: 0.2em; /* LTR */
      content: "+";
      font-weight: 900;
    }
    [dir="rtl"] .button-action:before {
      margin-right: -0.1em;
      margin-left: 0;
      padding-right: 0;
      padding-left: 0.2em;
    }