style.css
93 lines
| 1 | .wp-core-ui .button-red { |
| 2 | background-color: #9B2124; |
| 3 | background-image: -webkit-gradient(linear, left top, left bottom, from(#C5292E), to(#9B2124)); |
| 4 | background-image: -webkit-linear-gradient(top, #C5292E, #9B2124); |
| 5 | background-image: -moz-linear-gradient(top, #C5292E, #9B2124); |
| 6 | background-image: -ms-linear-gradient(top, #C5292E, #9B2124); |
| 7 | background-image: -o-linear-gradient(top, #C5292E, #9B2124); |
| 8 | background-image: linear-gradient(to bottom, #C5292E, #9B2124); |
| 9 | border-color: #9B2124; |
| 10 | border-bottom-color: #8D1F21; |
| 11 | -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); |
| 12 | box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); |
| 13 | color: #fff; |
| 14 | text-decoration: none; |
| 15 | text-shadow: 0 1px 0 rgba(0,0,0,0.1); |
| 16 | float: right; |
| 17 | } |
| 18 | |
| 19 | .wp-core-ui .button-red.hover, |
| 20 | .wp-core-ui .button-red:hover, |
| 21 | .wp-core-ui .button-red.focus, |
| 22 | .wp-core-ui .button-red:focus { |
| 23 | background-color: #B72629; |
| 24 | background-image: -webkit-gradient(linear, left top, left bottom, from(#D22E30), to(#9B2124)); |
| 25 | background-image: -webkit-linear-gradient(top, #D22E30, #9B2124); |
| 26 | background-image: -moz-linear-gradient(top, #D22E30, #9B2124); |
| 27 | background-image: -ms-linear-gradient(top, #D22E30, #9B2124); |
| 28 | background-image: -o-linear-gradient(top, #D22E30, #9B2124); |
| 29 | background-image: linear-gradient(to bottom, #D22E30, #9B2124); |
| 30 | border-color: #7F1C1F; |
| 31 | -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); |
| 32 | box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); |
| 33 | color: #fff; |
| 34 | text-shadow: 0 -1px 0 rgba(0,0,0,0.3); |
| 35 | } |
| 36 | |
| 37 | .wp-core-ui .button-red.focus, |
| 38 | .wp-core-ui .button-red:focus { |
| 39 | border-color: #500F0E; |
| 40 | -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4); |
| 41 | box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4); |
| 42 | } |
| 43 | |
| 44 | .wp-core-ui .button-red.active, |
| 45 | .wp-core-ui .button-red.active:hover, |
| 46 | .wp-core-ui .button-red.active:focus, |
| 47 | .wp-core-ui .button-red:active { |
| 48 | background: #7F1C1F; |
| 49 | background-image: -webkit-gradient(linear, left top, left bottom, from(#9B2124), to(#B72629)); |
| 50 | background-image: -webkit-linear-gradient(top, #9B2124, #B72629); |
| 51 | background-image: -moz-linear-gradient(top, #9B2124, #B72629); |
| 52 | background-image: -ms-linear-gradient(top, #9B2124, #B72629); |
| 53 | background-image: -o-linear-gradient(top, #9B2124, #B72629); |
| 54 | background-image: linear-gradient(to bottom, #9B2124, #B72629); |
| 55 | border-color: #601312 #AE2426 #AE2426 #AE2426; |
| 56 | color: rgba(255,255,255,0.95); |
| 57 | -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); |
| 58 | box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); |
| 59 | text-shadow: 0 1px 0 rgba(0,0,0,0.1); |
| 60 | } |
| 61 | |
| 62 | .wp-core-ui .button-red[disabled], |
| 63 | .wp-core-ui .button-red:disabled, |
| 64 | .wp-core-ui .button-red-disabled { |
| 65 | color: #E79496 !important; |
| 66 | background: #BA292B !important; |
| 67 | border-color: #7F1C1F !important; |
| 68 | -webkit-box-shadow: none !important; |
| 69 | box-shadow: none !important; |
| 70 | text-shadow: 0 -1px 0 rgba(0,0,0,0.1) !important; |
| 71 | cursor: default; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Dialog |
| 76 | */ |
| 77 | #wpmc-dialog { |
| 78 | text-align: center; |
| 79 | } |
| 80 | #wpmc-dialog .prompt { |
| 81 | margin-top: 16px; |
| 82 | } |
| 83 | #wpmc-dialog .prompt .button + .button { |
| 84 | margin-left: 16px; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Settings |
| 89 | */ |
| 90 | .meow-box form input:invalid { |
| 91 | color: red; |
| 92 | } |
| 93 |