Ticket #45432: 45432.patch
File 45432.patch, 6.8 KB (added by , 7 years ago) |
---|
-
src/wp-content/themes/twentytwelve/css/blocks.css
244 244 245 245 /* Buttons */ 246 246 247 .wp-block-button .wp-block-button__link, 248 .wp-block-button .wp-block-button__link:visited { 249 background-color: #e6e6e6; 250 background-repeat: repeat-x; 251 background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6); 252 background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6); 253 background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6); 254 background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6); 255 background-image: linear-gradient(top, #f4f4f4, #e6e6e6); 247 .wp-block-button .wp-block-button__link { 256 248 border: 1px solid #d2d2d2; 257 249 border-radius: 3px; 258 box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);259 color: #7c7c7c;260 250 font-family: inherit; 261 251 font-size: 11px; 262 252 font-size: 0.785714286rem; … … 266 256 padding: 0.428571429rem 0.714285714rem; 267 257 } 268 258 269 .wp-block-button .wp-block-button__link:hover, 270 .wp-block-button .wp-block-button__link:focus { 259 .entry-content .wp-block-button__link, 260 .entry-content .wp-block-button__link:visited { 261 background-color: #e6e6e6; 262 color: #7c7c7c; 263 } 264 265 .entry-content .wp-block-button__link:hover, 266 .entry-content .wp-block-button__link:visited:hover, 267 .entry-content .wp-block-button__link:focus { 271 268 background-color: #ebebeb; 269 color: #5e5e5e; 270 } 271 272 .entry-content .wp-block-button__link:active { 273 background-color: #e1e1e1; 274 color: #757575; 275 } 276 277 .wp-block-button__link:not(.has-background) { 278 background-repeat: repeat-x; 279 background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6); 280 background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6); 281 background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6); 282 background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6); 283 background-image: linear-gradient(top, #f4f4f4, #e6e6e6); 284 } 285 286 .wp-block-button__link:not(.has-text-color) { 287 box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1); 288 } 289 290 .wp-block-button__link:not(.has-background):hover, 291 .wp-block-button__link:not(.has-background):focus { 272 292 background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb); 273 293 background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb); 274 294 background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb); … … 275 295 background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb); 276 296 background-image: linear-gradient(top, #f9f9f9, #ebebeb); 277 297 background-repeat: repeat-x; 278 color: #5e5e5e;279 298 } 280 299 281 .wp-block-button .wp-block-button__link:active { 282 background-color: #e1e1e1; 300 .wp-block-button__link:not(.has-background):active { 283 301 background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1); 284 302 background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1); 285 303 background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1); … … 287 305 background-image: linear-gradient(top, #ebebeb, #e1e1e1); 288 306 background-repeat: repeat-x; 289 307 border-color: transparent; 308 } 309 310 .wp-block-button__link:not(.has-text-color):active { 290 311 box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4; 291 color: #757575;292 312 } 293 313 294 314 /* Separator */ … … 367 387 6.0 Blocks - Colors 368 388 --------------------------------------------------------------*/ 369 389 370 .has-blue-color { 390 .entry-content .has-blue-color, 391 .entry-content .has-blue-color:visited { 371 392 color: #21759b; 372 393 } 373 394 374 .has-blue-background-color { 395 .entry-content .has-blue-background-color, 396 .entry-content .has-blue-background-color:visited { 375 397 background-color: #21759b; 376 398 } 377 399 378 .has-dark-gray-color { 400 .entry-content .has-dark-gray-color, 401 .entry-content .has-dark-gray-color:visited { 379 402 color: #373737; 380 403 } 381 404 382 .has-dark-gray-background-color { 405 .entry-content .has-dark-gray-background-color, 406 .entry-content .has-dark-gray-background-color:visited { 383 407 background-color: #373737; 384 408 } 385 409 386 .has-medium-gray-color { 410 .entry-content .has-medium-gray-color, 411 .entry-content .has-medium-gray-color:visited { 387 412 color: #9f9f9f; 388 413 } 389 414 390 .has-medium-gray-background-color { 415 .entry-content .has-medium-gray-background-color, 416 .entry-content .has-medium-gray-background-color:visited { 391 417 background-color: #9f9f9f; 392 418 } 393 419 394 .has-light-gray-color { 420 .entry-content .has-light-gray-color, 421 .entry-content .has-light-gray-color:visited { 395 422 color: #e6e6e6; 396 423 } 397 424 398 .has-light-gray-background-color { 425 .entry-content .has-light-gray-background-color, 426 .entry-content .has-light-gray-background-color:visited { 399 427 background-color: #e6e6e6; 400 428 } 401 429 402 .has-white-color { 430 .entry-content .has-white-color, 431 .entry-content .has-white-color:visited { 403 432 color: #fff; 404 433 } 405 434 406 .has-white-background-color { 435 .entry-content .has-white-background-color, 436 .entry-content .has-white-background-color:visited { 407 437 background-color: #fff; 408 438 } -
src/wp-content/themes/twentytwelve/css/editor-blocks.css
235 235 } 236 236 237 237 .wp-block-file .wp-block-file__button, 238 .wp-block-button .wp-block- button__link:hover {238 .wp-block-button .wp-block-file__button:hover { 239 239 background-color: #e6e6e6; 240 240 background-repeat: repeat-x; 241 241 background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6); … … 335 335 336 336 /* Buttons */ 337 337 338 .wp-block-button .wp-block-button__link, 339 .wp-block-button .wp-block-button__link:hover { 338 .wp-block-button__link { 340 339 background-color: #e6e6e6; 341 background-repeat: repeat-x; 342 background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6); 343 background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6); 344 background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6); 345 background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6); 346 background-image: linear-gradient(top, #f4f4f4, #e6e6e6); 340 color: #7c7c7c; 341 } 342 343 .wp-block-button .wp-block-button__link { 347 344 border: 1px solid #d2d2d2; 348 345 border-radius: 3px; 349 box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);350 color: #7c7c7c;351 346 font-family: inherit; 352 347 font-size: 11px; 353 348 font-weight: normal; … … 355 350 padding: 6px 10px; 356 351 } 357 352 353 .wp-block-button .editor-rich-text__tinymce.mce-content-body { 354 line-height: 1.428571429; 355 } 356 357 .wp-block-button__link:not(.has-text-color) { 358 box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1); 359 } 360 361 .wp-block-button .wp-block-button__link:not(.has-background) { 362 background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6); 363 background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6); 364 background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6); 365 background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6); 366 background-image: linear-gradient(top, #f4f4f4, #e6e6e6); 367 background-repeat: repeat-x; 368 } 369 358 370 /* Separator */ 359 371 360 372 .editor-block-list__block hr.wp-block-separator {