Making WordPress.org

Changeset 2321


Ignore:
Timestamp:
01/19/2016 02:57:17 PM (9 years ago)
Author:
stephdau
Message:

Wordpress.org SSO: committing 1524.1.diff, from #1524

Rollback to pure CSS (over Compass), plus updates, plus cleanup.

Props mapk, netweb

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/partials/checkemail.php

    r2308 r2321  
    1 <p><?php _e( 'Check your email for the confirmation link.', 'wporg-login' ); ?></p>
     1<p class="center"><?php _e( 'Check your email for the confirmation link.', 'wporg-login' ); ?></p>
    22
    33<p class="nav">
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/partials/loggedout.php

    r2308 r2321  
    1 <p><?php _e( 'You are now logged out.', 'wporg-login' ); ?></p>
     1<p class="center"><?php _e( 'You are now logged out.', 'wporg-login' ); ?></p>
    22
    33<p class="nav">
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/stylesheets/l10n.css

    r2308 r2321  
    5050
    5151/* zh_CN: Enlarge dashboard widget 'Configure' link */
    52 .locale-zh-cn .hdnle a { font-size: 12px; }
     52.locale-zh-cn .hdnle a {
     53    font-size: 12px;
     54}
    5355
    5456/* zn_CH: Enlarge font size, set font-size: normal */
    55 .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
     57.locale-zh-cn form.upgrade .hint {
     58    font-style: normal;
     59    font-size: 100%;
     60}
    5661
    5762/* zh_CN: Enlarge font-size. */
    58 .locale-zh-cn #sort-buttons { font-size: 1em !important; }
     63.locale-zh-cn #sort-buttons {
     64    font-size: 1em !important;
     65}
    5966
    6067/* de_DE: Text needs more space for translation */
     
    6370    padding: 0 5px 1px; /* default 0 10px 1px */
    6471}
     72
    6573.locale-de-de #customize-header-actions .spinner,
    6674.locale-de-de-formal #customize-header-actions .spinner {
     
    7280    width: inherit; /* back-compat for pre-3.2 */
    7381}
     82
    7483.locale-ru-ru #adminmenu,
    7584.locale-ru-ru #wpbody {
    7685    margin-left: 0; /* back-compat for pre-3.2 */
    7786}
     87
    7888.locale-ru-ru .inline-edit-row fieldset label span.title,
    7989.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend {
    8090    width: 8em; /* default 6em */
    8191}
     92
    8293.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
    8394.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap {
    8495    margin-left: 8em; /* default 6em */
    8596}
     97
    8698.locale-ru-ru.post-php .tagsdiv .newtag,
    8799.locale-ru-ru.post-new-php .tagsdiv .newtag {
    88100    width: 165px; /* default 180px - 15px */
    89101}
     102
    90103.locale-ru-ru.press-this .posting {
    91104    margin-right: 277px; /* default 252px + 25px */
    92105}
     106
    93107.locale-ru-ru .press-this-sidebar {
    94108    width: 265px; /* default 240px + 25px */
    95109}
     110
    96111.locale-ru-ru #customize-header-actions .button {
    97112    padding: 0 5px 1px; /* default 0 10px 1px */
    98113}
     114
    99115.locale-ru-ru #customize-header-actions .spinner {
    100116    margin: 16px 3px 0; /* default 16px 4px 0 5px */
     
    106122    width: 8em; /* default 6em */
    107123}
     124
    108125.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,
    109126.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap {
     
    112129
    113130@media screen and (max-width: 782px) {
     131
    114132    .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,
    115133    .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/stylesheets/login.css

    r2308 r2321  
    11@import url(../stylesheets/l10n.css);
    22@import url(../stylesheets/dashicons.css);
    3 /* line 5, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     3
     4/**
     5 * * #.# Compass Reset
     6 *
     7 * A quick way to reset some of the HTML elements across browsers
     8 */
     9
    410html, body, div, span, applet, object, iframe,
    511h1, h2, h3, h4, h5, h6, p, blockquote, pre,
     
    1521menu, nav, output, ruby, section, summary,
    1622time, mark, audio, video {
    17   margin: 0;
    18   padding: 0;
    19   border: 0;
    20   font: inherit;
    21   font-size: 100%;
    22   vertical-align: baseline;
    23 }
    24 
    25 /* line 22, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     23    margin: 0;
     24    padding: 0;
     25    border: 0;
     26    font: inherit;
     27    font-size: 100%;
     28    vertical-align: baseline;
     29}
     30
    2631html {
    27   line-height: 1;
    28 }
    29 
    30 /* line 24, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     32    line-height: 1;
     33}
     34
    3135ol, ul {
    32   list-style: none;
    33 }
    34 
    35 /* line 26, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     36    list-style: none;
     37}
     38
    3639table {
    37   border-collapse: collapse;
    38   border-spacing: 0;
    39 }
    40 
    41 /* line 28, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     40    border-collapse: collapse;
     41    border-spacing: 0;
     42}
     43
    4244caption, th, td {
    43   text-align: left;
    44   font-weight: normal;
    45   vertical-align: middle;
    46 }
    47 
    48 /* line 30, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     45    text-align: left;
     46    font-weight: normal;
     47    vertical-align: middle;
     48}
     49
    4950q, blockquote {
    50   quotes: none;
    51 }
    52 /* line 103, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     51    quotes: none;
     52}
     53
    5354q:before, q:after, blockquote:before, blockquote:after {
    54   content: "";
    55   content: none;
    56 }
    57 
    58 /* line 32, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     55    content: "";
     56    content: none;
     57}
     58
    5959a img {
    60   border: none;
    61 }
    62 
    63 /* line 116, ../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
     60    border: none;
     61}
     62
    6463article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    65   display: block;
    66 }
    67 
    68 /* line 5, ../sass/oauth.scss */
     64    display: block;
     65}
     66
     67/**
     68 * #.# wp-login CSS overwrites
     69 *
     70 * These selectors overwrite the core css on the wp-login page
     71 */
     72
     73button, input, optgroup, select, textarea {
     74    color: inherit;
     75    font: inherit;
     76    margin: 0;
     77}
     78
     79body.login {
     80    padding-top: 8%;
     81}
     82
     83.login-action-lostpassword.login .message,
     84.login-action-rp.login .message,
     85.login-action-login.login .message,
     86.login .message.reset-pass {
     87    border-left: none;
     88    background-color: transparent;
     89    color: #f5f5f5 !important;
     90    padding: 0;
     91    -webkit-box-shadow: none;
     92    box-shadow: none;
     93}
     94
     95.wp-core-ui.login .button-primary {
     96    width: 100%;
     97    height: 40px;
     98    background: #00a0d2;
     99    color: #fff;
     100    border: none;
     101    -webkit-border-radius: 2px;
     102    -moz-border-radius: 2px;
     103    border-radius: 2px;
     104    outline: none;
     105    position: relative;
     106    text-shadow: none;
     107    font-size: 16px;
     108    -webkit-box-shadow: none;
     109    box-shadow: none;
     110}
     111
     112.wp-core-ui.login .button-primary:hover {
     113    background: #008db9;
     114    -webkit-transition: background 0.2s ease;
     115    transition: background 0.2s ease;
     116}
     117
     118.wp-core-ui.login .button-primary:active {
     119    -webkit-box-shadow: none;
     120    box-shadow: none;
     121    top: 0;
     122}
     123
     124#backtoblog {
     125    display: none;
     126}
     127
     128.login #nav,
     129.container #nav {
     130    font-size: 0.8em;
     131    padding: 0;
     132    margin: 24px 0;
     133    text-align: center;
     134}
     135
     136#pass-strength-result {
     137    background: #23282d;
     138}
     139
     140#pass-strength-result.strong {
     141    color: #46b450;  /* Green */
     142    -webkit-box-shadow:
     143        inset 0 16px #23282d,
     144        inset 0 -16px #23282d,
     145        inset -100px 0 #46b450,
     146        inset 100px 0 #46b450;
     147    box-shadow:
     148        inset 0 16px #23282d,
     149        inset 0 -16px #23282d,
     150        inset -100px 0 #46b450,
     151        inset 100px 0 #46b450;
     152}
     153
     154#pass-strength-result.good {
     155    color: #ffb900; /* Orange */
     156    -webkit-box-shadow:
     157        inset 0 16px #23282d,
     158        inset 0 -16px #23282d,
     159        inset -100px 0 #ffb900,
     160        inset 100px 0 #ffb900;
     161    box-shadow:
     162        inset 0 16px #23282d,
     163        inset 0 -16px #23282d,
     164        inset -100px 0 #ffb900,
     165        inset 100px 0 #ffb900;
     166}
     167
     168#pass-strength-result.bad, #pass-strength-result.short {
     169    color: #dc3232; /* Red */
     170    -webkit-box-shadow:
     171        inset 0 16px #23282d,
     172        inset 0 -16px #23282d,
     173        inset -100px 0 #dc3232,
     174        inset 100px 0 #dc3232;
     175    box-shadow:
     176        inset 0 16px #23282d,
     177        inset 0 -16px #23282d,
     178        inset -100px 0 #dc3232,
     179        inset 100px 0 #dc3232;
     180}
     181
     182/**
     183 * #.# Basic CSS
     184 *
     185 * The rest of the CSS is for all login pages.
     186 */
    69187html, body {
    70   height: 100%;
    71 }
    72 
    73 /* line 6, ../sass/oauth.scss */
     188    height: 100%;
     189}
     190
    74191html {
    75   background: #23282D;
    76 }
    77 
    78 /* line 7, ../sass/oauth.scss */
     192    background: #23282d;
     193    margin: 0;
     194    padding: 0;
     195}
     196
    79197body {
    80   color: #F5F5F5;
    81   font-family: "Open Sans", sans-serif;
    82   font-size: 16px;
    83   font-weight: 300;
    84   line-height: 1.4;
    85 }
    86 
    87 /* line 8, ../sass/oauth.scss */
     198    color: #f5f5f5;
     199    font-family: "Open Sans", sans-serif;
     200    font-size: 16px;
     201    font-weight: 300;
     202    line-height: 1.4;
     203}
     204
    88205* {
    89   box-sizing: border-box;
    90 }
    91 
    92 /* line 10, ../sass/oauth.scss */
     206    -webkit-box-sizing: border-box;
     207    -moz-box-sizing: border-box;
     208    box-sizing: border-box;
     209}
     210
    93211a {
    94   color: #009FD4;
    95   text-decoration: none;
    96   font-weight: normal;
    97   -webkit-transition-property: border, background, color;
    98   transition-property: border, background, color;
    99   -webkit-transition-duration: .05s;
    100   transition-duration: .05s;
    101   -webkit-transition-timing-function: ease-in-out;
    102   transition-timing-function: ease-in-out;
    103   outline: 0;
    104 }
    105 /* line 22, ../sass/oauth.scss */
     212    color: #009fd4;
     213    text-decoration: none;
     214    font-weight: normal;
     215    -webkit-transition-property: border, background, color;
     216    transition-property: border, background, color;
     217    -webkit-transition-duration: 0.05s;
     218    transition-duration: 0.05s;
     219    -webkit-transition-timing-function: ease-in-out;
     220    transition-timing-function: ease-in-out;
     221    outline: 0;
     222}
     223
    106224a:hover, a:active {
    107   text-decoration: underline;
    108 }
    109 
    110 /* line 25, ../sass/oauth.scss */
     225    text-decoration: underline;
     226}
     227
    111228h2 {
    112   font-size: 1.5em;
    113 }
    114 
    115 /* line 26, ../sass/oauth.scss */
     229    font-size: 1.5em;
     230}
     231
    116232p {
    117   line-height: 1.5;
    118   margin-bottom: 1em;
    119 }
    120 
    121 /* line 27, ../sass/oauth.scss */
     233    line-height: 1.5;
     234    margin-bottom: 1em;
     235}
     236
    122237strong {
    123   font-weight: bolder;
    124 }
    125 
    126 /* line 28, ../sass/oauth.scss */
     238    font-weight: bolder;
     239}
     240
    127241.subtle {
    128   color: #B4B9BE;
    129   font-size: .8em;
    130   font-weight: normal;
    131 }
    132 
    133 /* line 29, ../sass/oauth.scss */
     242    color: #b4b9be;
     243    font-size: 0.8em;
     244    font-weight: normal;
     245}
     246
    134247.small {
    135   font-size: .8em;
    136   font-weight: normal;
    137 }
    138 
    139 /* line 31, ../sass/oauth.scss */
     248    font-size: 0.8em;
     249    font-weight: normal;
     250}
     251
     252.center {
     253    text-align: center;
     254}
     255
    140256.btn {
    141   width: 100%;
    142   height: 40px;
    143   background: #B4B9BE;
    144   border: none;
    145   color: #32373C;
    146   -webkit-border-radius: 2px;
    147   -moz-border-radius: 2px;
    148   border-radius: 2px;
    149   outline: none;
    150   position: relative;
    151 }
    152 /* line 32, ../sass/oauth.scss */
     257    width: 100%;
     258    height: 40px;
     259    background: #b4b9be;
     260    border: none;
     261    color: #32373c;
     262    -webkit-border-radius: 2px;
     263    border-radius: 2px;
     264    outline: none;
     265    position: relative;
     266}
     267
    153268.btn:hover {
    154   background: #99a0a6;
    155   transition: background .2s ease;
    156 }
    157 /* line 33, ../sass/oauth.scss */
    158 .btn:focus {
    159   top: 1px;
    160 }
    161 /* line 35, ../sass/oauth.scss */
     269    background: #99a0a6;
     270    -webkit-transition: background 0.2s ease;
     271    transition: background 0.2s ease;
     272}
     273
     274.btn:active {
     275    top: 1px;
     276}
     277
    162278.btn.btn-primary {
    163   background: #00A0D2;
    164   color: #FFF;
    165 }
    166 /* line 36, ../sass/oauth.scss */
     279    background: #00a0d2;
     280    color: #fff;
     281}
     282
    167283.btn.btn-primary:hover {
    168   background: #008db9;
    169 }
    170 
    171 /* line 40, ../sass/oauth.scss */
     284    background: #008db9;
     285}
     286
    172287.button-primary {
    173   width: 100%;
    174   height: 40px;
    175   background: #00A0D2;
    176   color: #FFF;
    177   border: none;
    178   -webkit-border-radius: 2px;
    179   -moz-border-radius: 2px;
    180   border-radius: 2px;
    181   outline: none;
    182   position: relative;
    183 }
    184 /* line 43, ../sass/oauth.scss */
     288    width: 100%;
     289    height: 40px;
     290    background: #00a0d2;
     291    color: #fff;
     292    border: none;
     293    -webkit-border-radius: 2px;
     294    border-radius: 2px;
     295    outline: none;
     296    position: relative;
     297}
     298
    185299.button-primary:hover {
    186   background: #008db9;
    187   transition: background .2s ease;
    188 }
    189 /* line 44, ../sass/oauth.scss */
    190 .button-primary:focus {
    191   top: 1px;
    192 }
    193 
    194 /* line 48, ../sass/oauth.scss */
     300    background: #008db9;
     301    -webkit-transition: background 0.2s ease;
     302    transition: background 0.2s ease;
     303}
     304
     305.button-primary:active {
     306    top: 1px;
     307}
     308
    195309.side-by-side .btn {
    196   display: inline-block;
    197   max-width: 144px;
    198   margin-right: 11px;
    199 }
    200 /* line 49, ../sass/oauth.scss */
     310    display: inline-block;
     311    max-width: 144px;
     312    margin-right: 11px;
     313}
     314
    201315.side-by-side .btn:last-child {
    202   margin-right: 0;
    203 }
    204 
    205 /* line 54, ../sass/oauth.scss */
     316    margin-right: 0;
     317}
     318
    206319.login, .container {
    207   width: 304px;
    208   padding: 0;
    209   margin: auto;
    210 }
    211 /* line 55, ../sass/oauth.scss */
     320    width: 304px;
     321    padding: 0;
     322    margin: auto;
     323}
     324
    212325.login h1, .container h1 {
    213   text-align: center;
    214   margin-bottom: 56px;
    215 }
    216 /* line 56, ../sass/oauth.scss */
     326    text-align: center;
     327    margin-bottom: 56px;
     328}
     329
    217330.login h1 a, .container h1 a {
    218   background-image: url(../images/wporg-logotype-standard.png);
    219   background-image: none, url(../images/wporg-logotype-standard.svg);
    220   -webkit-background-size: 253px;
    221   background-size: 253px;
    222   background-position: center top;
    223   background-repeat: no-repeat;
    224   color: #999;
    225   height: 52px;
    226   margin: 0 auto;
    227   padding: 0;
    228   width: auto;
    229   text-indent: -9999px;
    230   outline: none;
    231   overflow: hidden;
    232   display: block;
    233 }
    234 /* line 75, ../sass/oauth.scss */
     331    background-image: url(../images/wporg-logotype-standard.png);
     332    background-image: none, url(../images/wporg-logotype-standard.svg);
     333    -webkit-background-size: 253px;
     334    background-size: 253px;
     335    background-position: center top;
     336    background-repeat: no-repeat;
     337    color: #999;
     338    height: 52px;
     339    margin: 0 auto;
     340    padding: 0;
     341    width: auto;
     342    text-indent: -9999px;
     343    outline: none;
     344    overflow: hidden;
     345    display: block;
     346}
     347
    235348.login .message,
    236 .login #login_error, .container .message,
     349.login #login_error,
     350.container .message,
    237351.container #login_error {
    238   border-left: 4px solid #00a0d2;
    239   padding: 12px;
    240   margin-left: 0;
    241   background-color: #fff;
    242   -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    243   box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    244   color: #000 !important;
    245 }
    246 /* line 81, ../sass/oauth.scss */
     352    border-left: 4px solid #00a0d2;
     353    padding: 12px;
     354    margin-left: 0;
     355    background-color: #fff;
     356    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
     357    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
     358    color: #000 !important;
     359}
     360
    247361.login #login_error, .container #login_error {
    248   border-left-color: #dc3232;
    249 }
    250 /* line 83, ../sass/oauth.scss */
     362    border-left-color: #dc3232;
     363}
     364
    251365.login .nav, .container .nav {
    252   font-size: .8em;
    253   padding: 0;
    254   margin: 24px 0;
    255   text-align: center;
    256 }
    257 
    258 /* line 85, ../sass/oauth.scss */
     366    font-size: 0.8em;
     367    padding: 0;
     368    margin: 24px 0;
     369    text-align: center;
     370}
     371
    259372.container {
    260   padding: 0 0 64px;
    261   margin-top: 24px;
    262 }
    263 
    264 /* line 87, ../sass/oauth.scss */
     373    padding: 0 0 64px;
     374    margin-top: 24px;
     375}
     376
    265377form {
    266   margin-top: 24px;
    267 }
    268 /* line 88, ../sass/oauth.scss */
     378    margin-top: 24px;
     379}
     380
    269381form p {
    270   margin-bottom: 0;
    271 }
    272 /* line 89, ../sass/oauth.scss */
    273 form .forgetmenot {
    274   font-weight: normal;
    275   margin-bottom: 16px;
    276 }
    277 /* line 90, ../sass/oauth.scss */
    278 form .forgetmenot label {
    279   font-size: .8em;
    280   line-height: 1;
    281   cursor: pointer;
    282 }
    283 /* line 92, ../sass/oauth.scss */
     382    margin-bottom: 0;
     383}
     384
     385form .forgetmenot,
     386form .login-remember {
     387    font-weight: normal;
     388    margin-bottom: 16px;
     389}
     390
     391form .forgetmenot label,
     392form .login-remember label {
     393    font-size: 0.8em;
     394    line-height: 1;
     395    cursor: pointer;
     396}
     397
    284398form .submit {
    285   margin: 8px 0 0 0;
    286   padding: 0;
    287 }
    288 /* line 94, ../sass/oauth.scss */
     399    margin: 8px 0 0 0;
     400    padding: 0;
     401}
     402
    289403form input[type="text"],
    290404form input[type="password"] {
    291   width: 100%;
    292   padding: 3px 10px;
    293   margin: 2px 6px 16px 0;
    294   height: 40px;
    295   outline: none;
    296   color: #23282D;
    297 }
    298 /* line 97, ../sass/oauth.scss */
     405    width: 100%;
     406    padding: 3px 10px;
     407    margin: 2px 6px 16px 0;
     408    height: 40px;
     409    outline: none;
     410    color: #23282d;
     411    font-weight: 400;
     412}
     413
    299414form input[type="text"],
    300415form input[type="password"],
    301416form input[type="checkbox"],
    302417form input[type="radio"] {
    303   background: #fbfbfb;
    304   border: none;
    305 }
    306 /* line 102, ../sass/oauth.scss */
     418    background: #fbfbfb;
     419    border: none;
     420}
     421
    307422form input[type="checkbox"], form input[type="radio"] {
    308   cursor: pointer;
    309   display: inline-block;
    310   width: 16px;
    311   min-width: 16px;
    312   height: 16px;
    313   margin: -4px 4px 0 0;
    314   outline: 0;
    315   padding: 0;
    316   text-align: center;
    317   vertical-align: middle;
    318   -webkit-appearance: none;
    319 }
    320 /* line 115, ../sass/oauth.scss */
    321 form input[type="checkbox"]:checked:before, form input[type="checkbox"]:checked:before, form input[type="radio"]:checked:before, form input[type="radio"]:checked:before {
    322   float: left;
    323   display: inline-block;
    324   vertical-align: middle;
    325   width: 16px;
    326   font: normal 21px/1 dashicons;
    327   speak: none;
    328   -webkit-font-smoothing: antialiased;
    329   -moz-osx-font-smoothing: grayscale;
    330 }
    331 /* line 127, ../sass/oauth.scss */
     423    cursor: pointer;
     424    display: inline-block;
     425    width: 16px;
     426    min-width: 16px;
     427    height: 16px;
     428    margin: -4px 4px 0 0;
     429    outline: 0;
     430    padding: 0;
     431    text-align: center;
     432    vertical-align: middle;
     433    -webkit-appearance: none;
     434}
     435
     436form input[type="checkbox"]:checked:before,
     437form input[type="checkbox"]:checked:before,
     438form input[type="radio"]:checked:before,
     439form input[type="radio"]:checked:before {
     440    float: left;
     441    display: inline-block;
     442    vertical-align: middle;
     443    width: 16px;
     444    font: normal 21px/1 dashicons;
     445    speak: none;
     446    -webkit-font-smoothing: antialiased;
     447    -moz-osx-font-smoothing: grayscale;
     448}
     449
    332450form input[type="checkbox"]:checked:before {
    333   content: "\f147";
    334   margin: -3px 0 0 -4px;
    335   color: #1e8cbe;
    336 }
    337 /* line 129, ../sass/oauth.scss */
     451    content: "\f147";
     452    margin: -3px 0 0 -4px;
     453    color: #1e8cbe;
     454}
     455
    338456form#authorize {
    339   margin-bottom: 24px;
    340 }
    341 
    342 /* line 132, ../sass/oauth.scss */
     457    margin-bottom: 24px;
     458}
     459
    343460label {
    344   color: #A0A5AA;
    345 }
    346 
    347 /* line 135, ../sass/oauth.scss */
     461    color: #a0a5aa;
     462}
     463
    348464#loginform p.submit,
    349465.login-action-lostpassword p.submit {
    350   border: none;
    351 }
    352 
    353 /* line 140, ../sass/oauth.scss */
     466    border: none;
     467}
     468
    354469.login #pass-strength-result {
    355   font-weight: 600;
    356   margin: -1px 5px 16px 0;
    357   padding: 6px 5px;
    358   text-align: center;
    359   width: 100%;
    360 }
    361 
    362 /* line 148, ../sass/oauth.scss */
     470    font-weight: 600;
     471    margin: -1px 5px 16px 0;
     472    padding: 6px 5px;
     473    text-align: center;
     474    width: 100%;
     475}
     476
    363477.wrapper {
    364   padding: 8% 0 80px;
    365   min-height: 100%;
    366   position: relative;
    367 }
    368 
    369 /* line 149, ../sass/oauth.scss */
     478    padding: 8% 0 80px;
     479    min-height: 100%;
     480    position: relative;
     481}
     482
    370483.loginfooter {
    371   position: absolute;
    372   bottom: 0;
    373   width: 100%;
    374   height: 48px;
    375   text-align: center;
    376   text-transform: uppercase;
    377   letter-spacing: 1px;
    378   font-size: .8em;
     484    position: absolute;
     485    bottom: 0;
     486    width: 100%;
     487    height: 48px;
     488    text-align: center;
     489    text-transform: uppercase;
     490    letter-spacing: 1px;
     491    font-size: 0.8em;
    379492}
    380493
    381494@media (max-height: 499px) {
    382   /* line 151, ../sass/oauth.scss */
    383   .loginfooter {
    384     position: relative;
    385     bottom: inherit;
    386   }
    387 }
    388 /* line 158, ../sass/oauth.scss */
     495
     496    .loginfooter {
     497        position: relative;
     498        bottom: inherit;
     499    }
     500}
     501
    389502.oauth {
    390   width: 100%;
    391   background: #32373C;
    392   height: auto;
    393   overflow: hidden;
    394   margin-top: -24px;
    395   -webkit-transition: all .3s ease;
    396   -moz-transition: all .3s ease;
    397   transition: all .3s ease;
    398 }
    399 /* line 159, ../sass/oauth.scss */
     503    width: 100%;
     504    background: #32373c;
     505    height: auto;
     506    overflow: hidden;
     507    margin-top: -24px;
     508    -webkit-transition: all 0.3s ease;
     509    transition: all 0.3s ease;
     510}
     511
    400512.oauth > div {
    401   text-align: center;
    402   margin: 0 auto;
    403   padding: 48px 16px;
    404   max-width: 1024px;
    405 }
    406 /* line 160, ../sass/oauth.scss */
     513    text-align: center;
     514    margin: 0 auto;
     515    padding: 48px 16px;
     516    max-width: 1024px;
     517}
     518
    407519.oauth > div .partner-logo {
    408   margin-bottom: 24px;
    409 }
     520    margin-bottom: 24px;
     521}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/stylesheets/normalize.css

    r2308 r2321  
    1 /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
     1/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
    22
    33/**
    44 * 1. Set default font family to sans-serif.
    5  * 2. Prevent iOS text size adjust after orientation change, without disabling
    6  *    user zoom.
     5 * 2. Prevent iOS and IE text size adjust after device orientation change,
     6 *    without disabling user zoom.
    77 */
    88
     
    3838footer,
    3939header,
    40 hgroup,
    4140main,
    4241menu,
     
    7271/**
    7372 * Address `[hidden]` styling not present in IE 8/9/10.
    74  * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
     73 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
    7574 */
    7675
     
    9291
    9392/**
    94  * Improve readability when focused and also mouse hovered in all browsers.
     93 * Improve readability of focused elements when they are also in an
     94 * active/hover state.
    9595 */
    9696
     
    210210
    211211hr {
    212   -moz-box-sizing: content-box;
    213212  box-sizing: content-box;
    214213  height: 0;
     
    351350/**
    352351 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
    353  * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
    354  *    (include `-moz` to future-proof).
     352 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
    355353 */
    356354
    357355input[type="search"] {
    358356  -webkit-appearance: textfield; /* 1 */
    359   -moz-box-sizing: content-box;
    360   -webkit-box-sizing: content-box; /* 2 */
    361   box-sizing: content-box;
     357  box-sizing: content-box; /* 2 */
    362358}
    363359
Note: See TracChangeset for help on using the changeset viewer.