Make WordPress Core

Ticket #56603: 56603.1.patch

File 56603.1.patch, 1.3 KB (added by sabernhardt, 2 years ago)

adding #content to text color selectors, while keeping the original selectors (so the colors can work in widgets)

  • src/wp-content/themes/twentyten/blocks.css

     
    205205--------------------------------------------------------------*/
    206206
    207207.has-blue-color,
    208 .has-blue-color:visited {
     208.has-blue-color:visited,
     209#content .has-blue-color,
     210#content .has-blue-color:visited {
    209211        color: #0066cc;
    210212}
    211213
     
    215217}
    216218
    217219.has-black-color,
    218 .has-black-color:visited {
     220.has-black-color:visited,
     221#content .has-black-color,
     222#content .has-black-color:visited {
    219223        color: #000;
    220224}
    221225
     
    225229}
    226230
    227231.has-medium-gray-color,
    228 .has-medium-gray-color:visited {
     232.has-medium-gray-color:visited,
     233#content .has-medium-gray-color,
     234#content .has-medium-gray-color:visited {
    229235        color: #666;
    230236}
    231237
     
    235241}
    236242
    237243.has-light-gray-color,
    238 .has-light-gray-color:visited {
     244.has-light-gray-color:visited,
     245#content .has-light-gray-color,
     246#content .has-light-gray-color:visited {
    239247        color: #f1f1f1;
    240248}
    241249
     
    245253}
    246254
    247255.has-white-color,
    248 .has-white-color:visited {
     256.has-white-color:visited,
     257#content .has-white-color,
     258#content .has-white-color:visited {
    249259        color: #fff;
    250260}
    251261