Making WordPress.org

Changeset 4495


Ignore:
Timestamp:
12/06/2016 08:38:19 PM (8 years ago)
Author:
coffee2code
Message:

Handbook plugin: Simplify and reformat CSS rules for callout boxes.

Props samuelsidler.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/stylesheets/callout-boxes.css

    r3685 r4495  
    2525  display: none;
    2626}
    27 .callout-info {
    28   background: #e5f5fa;
    29   border-color: #00a0d2;
    30 }
    31 .callout-info:before {
    32   content: "\f348";
    33   color: #00a0d2 ;
    34 }
    35 .callout-tip {
    36   background: #eff7ed;
    37   border: 1px solid #64b450;
    38   border-bottom: 3px solid #64b450;
    39 }
    40 .callout-tip:before {
    41   content: "\f339";
    42   color: #64b450;
    43 }
    44 .callout-alert {
    45   background: #fff8e5;
    46   border: 1px solid #ffb900;
    47   border-bottom: 3px solid #ffb900;
    48 }
    49 .callout-alert:before {
    50   content: "\f227";
    51   color: #ffb900;
    52 }
    53 .callout-tutorial {
    54   background: #f2f0f7;
    55   border: 1px solid #826eb4;
    56   border-bottom: 3px solid #826eb4;
    57 }
    58 .callout-tutorial:before {
    59   content: "\f308";
    60   color: #826eb4;
    61 }
    62 .callout-warning {
    63   background: #fbeaea;
    64   border: 1px solid #dc3232;
    65   border-bottom: 3px solid #dc3232;
    66 }
    67 .callout-warning:before {
    68   content: "\f153";
    69   color: #dc3232;
    70 }
    7127
     28.callout-info     { background: #e5f5fa; border-color: #00a0d2; }
     29.callout-tip      { background: #eff7ed; border-color: #64b450; }
     30.callout-alert    { background: #fff8e5; border-color: #ffb900; }
     31.callout-tutorial { background: #f2f0f7; border-color: #826eb4; }
     32.callout-warning  { background: #fbeaea; border-color: #dc3232; }
     33
     34.callout-info:before     { content: "\f348"; color: #00a0d2; }
     35.callout-tip:before      { content: "\f339"; color: #64b450; }
     36.callout-alert:before    { content: "\f227"; color: #ffb900; }
     37.callout-tutorial:before { content: "\f308"; color: #826eb4; }
     38.callout-warning:before  { content: "\f153"; color: #dc3232; }
Note: See TracChangeset for help on using the changeset viewer.