Making WordPress.org

Ticket #616: 616.2.patch

File 616.2.patch, 4.2 KB (added by Kau-Boy, 10 years ago)
  • css/template-coming-soon.css

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    55}
    66
    77#wccsp-container {
    8         max-width: 700px;
    9         margin: 50px auto;
    10         padding: 40px;
     8        padding: 20px;
    119        overflow: auto;
    12 
    13         border: 1px solid black; /* todo box shadow */
    1410}
    1511       
    16         #wccsp-image {
    17                 display: block;
    18                 max-width: 100%;
    19                 margin: 0 auto 40px auto;
    20         }
    21        
    22         #wccsp-introduction {
    23                 margin-bottom: 0;
    24         }
    25        
    26         .wccsp-box {
    27                 width: 46%;             /* todo temp workaround */
    28                 min-height: 150px;
    29                 float: left;
    30                 overflow: auto;
    31                 margin: 40px 40px 0 0;
    32                 padding: 15px;
    33        
    34                 border: 1px solid black;        /* todo box shadow */
    35         }
    36        
    37                 #wccsp-container .wccsp-box:last-child {
    38                         margin-right: 0;
    39                 }
    40                
    41                 .wccsp-box .widget {
    42                         margin: 0;
    43                         padding: 0;
    44                 }
    45        
    46                 .wccsp-box h2 {
    47                         margin-top: 0;
    48                 }
    49                
    50                 .wccsp-box p:last-child {
    51                         margin-bottom: 0;
    52                 }
    53                
    54                 .wccsp-box input[type="text"],
    55                 .wccsp-box textarea {
    56                         width: 100%;
    57                         margin-bottom: 1em;
    58                         padding: 2px 3px;
    59                        
    60                         /* todo not working */
    61                 }
    62                
    63                 .wccsp-box input[type="text"]:last-child {
    64                         margin-bottom: 0;
    65                 }
    66                
    67                 .wccsp-box input[type="submit"] {
    68                         margin: 0 auto;                         /*todo not working */
    69                         text-align: center;
    70                 }
    71                
    72                 .wccsp-box textarea {
    73                         height: 8em;
    74                 }
     12#wccsp-image {
     13        display: block;
     14        max-width: 100%;
     15        margin: 0 auto 40px auto;
     16}
     17
     18#wccsp-introduction {
     19        margin-bottom: 0;
     20}
     21
     22.wccsp-box {
     23        width: 100%;
     24        min-height: 150px;
     25        overflow: auto;
     26        padding: 15px;
     27        margin-top: 40px;
     28        border-spacing: 40px;
     29        vertical-align: top;
     30        border: 1px solid black;        /* todo box shadow */
     31}
     32
     33.wccsp-box .widget {
     34        margin: 0;
     35        padding: 0;
     36}
     37
     38.wccsp-box h2 {
     39        margin-top: 0;
     40}
     41
     42.wccsp-box p:last-child {
     43        margin-bottom: 0;
     44}
     45
     46.wccsp-box input[type="text"],
     47.wccsp-box input[type="email"],
     48.wccsp-box input[type="url"],
     49.wccsp-box textarea {
     50        width: 100%;
     51        margin-bottom: 1em;
     52        padding: 2px 3px;
     53}
     54
     55.wccsp-box input[type="text"]:last-child {
     56        margin-bottom: 0;
     57}
     58
     59.wccsp-box input[type="submit"] {
     60        display: block;
     61        margin: 0 auto;
     62        text-align: center;
     63}
     64
     65.wccsp-box textarea {
     66        height: 8em;
     67}
    7568
    76                 .grunion-field-label span {
    77                         padding-left: 5px;
    78                 }
     69.grunion-field-label span {
     70        padding-left: 5px;
     71}
     72
     73@media all and ( min-width: 800px ) {
     74        #wccsp-container {
     75                border: 1px solid black; /* todo box shadow */
     76                max-width: 700px;
     77                margin: 50px auto;
     78                padding: 40px;
     79        }
     80
     81        .wccsp-box-container {
     82                float: left;
     83                padding-right: 20px;
     84                width: 50%;
     85        }
     86
     87        .wccsp-box-container:last-child {
     88                float: right;
     89                padding: 0;
     90                padding-left: 20px;
     91        }
     92}
     93 No newline at end of file
  • views/template-coming-soon.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    2727                </p>
    2828
    2929                <?php if ( in_array( 'subscriptions', $active_modules ) ) : ?>
    30                         <div class="wccsp-box">
    31                                 <?php echo do_shortcode( '[jetpack_subscription_form title="Subscribe for Updates"]' ); ?>
    32                         </div>
     30                        <div class="wccsp-box-container">
     31                                <div class="wccsp-box">
     32                                        <?php echo do_shortcode( '[jetpack_subscription_form title="Subscribe for Updates"]' ); ?>
     33                                </div>
     34                        </div>
    3335                <?php endif; ?>
    3436
    3537                <?php if ( in_array( 'contact-form', $active_modules ) && $contact_form_shortcode ) : ?>
    36                         <div class="wccsp-box">
    37                                 <h2>Contact the Organizers</h2>
    38                                
    39                                 <?php echo $contact_form_shortcode; // intentionally not escaping because it's the output of do_shortcode() ?>
     38                        <div class="wccsp-box-container">
     39                                <div class="wccsp-box">
     40                                        <h2>Contact the Organizers</h2>
     41
     42                                        <?php echo $contact_form_shortcode; // intentionally not escaping because it's the output of do_shortcode() ?>
     43                                </div>
    4044                        </div>
    4145                <?php endif; ?>
    4246