Changeset 1810:1cad42f451bc
- Timestamp:
- 09/13/13 19:21:23 (12 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r1801 r1810 574 574 color: #fff; 575 575 border: 1px solid #2C8FD1; 576 background :-moz-linear-gradient(top,#25A6E1 0%,#188BC0 100%);577 background :-webkit-gradient(linear,left top,left bottom,color-stop(0%,#25A6E1),color-stop(100%,#188BC0));578 background :linear-gradient(top,#25A6E1 0%,#188BC0 100%);576 background-image:-moz-linear-gradient(top,#25A6E1 0%,#188BC0 100%); 577 background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#25A6E1),color-stop(100%,#188BC0)); 578 background-image:linear-gradient(top,#25A6E1 0%,#188BC0 100%); 579 579 background-color:#25A6E1; 580 580 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); … … 582 582 input[type=submit]:hover, input[type=submit]:focus, 583 583 a.button.submit:hover, a.button.submit:focus { 584 background :-moz-linear-gradient(top,#188BC0 0%,#25A6E1 100%);585 background :-webkit-gradient(linear,left top,left bottom,color-stop(0%,#188BC0),color-stop(100%,#25A6E1));586 background :linear-gradient(top,#188BC0 0%,#25A6E1 100%);584 background-image:-moz-linear-gradient(top,#188BC0 0%,#25A6E1 100%); 585 background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#188BC0),color-stop(100%,#25A6E1)); 586 background-image:linear-gradient(top,#188BC0 0%,#25A6E1 100%); 587 587 background-color:#188BC0; 588 588 } … … 593 593 a.button.delete, a.button.reset, a.button { 594 594 color: #000; 595 background : -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#dfdfdf));596 background : -moz-linear-gradient(top, #f5f5f5, #dfdfdf);595 background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#dfdfdf)); 596 background-image: -moz-linear-gradient(top, #f5f5f5, #dfdfdf); 597 597 background-color: #eee; 598 598 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); … … 606 606 a.button.delete:hover, a.button.reset:hover, a.button:hover, 607 607 a.button.delete:focus, a.button.reset:focus, a.button:focus { 608 background :-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );609 background :-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );608 background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) ); 609 background-image:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% ); 610 610 background-color:#f3f3f3; 611 611 } … … 628 628 } 629 629 .button.add { 630 background :-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bee74b), color-stop(1, #9BCA1C) );631 background :-moz-linear-gradient( center top, #bee74b 5%, #9BCA1C 100% );630 background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bee74b), color-stop(1, #9BCA1C) ); 631 background-image:-moz-linear-gradient( center top, #bee74b 5%, #9BCA1C 100% ); 632 632 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bee74b', endColorstr='#9BCA1C'); 633 633 background-color:#bee74b; … … 641 641 } 642 642 .button.add:hover, .button.add:active, .button.add:focus { 643 background :-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9BCA1C), color-stop(1, #bee74b) );644 background :-moz-linear-gradient( center top, #9BCA1C 5%, #bee74b 100% );643 background-image:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9BCA1C), color-stop(1, #bee74b) ); 644 background-image:-moz-linear-gradient( center top, #9BCA1C 5%, #bee74b 100% ); 645 645 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9BCA1C', endColorstr='#bee74b'); 646 646 background-color:#9BCA1C; -
admin/style/jsToolBar/jsToolBar.css
r1760 r1810 36 36 border-radius: 4px 4px 0 0; 37 37 } 38 39 38 .jstElements select, .jstElements button { 40 39 vertical-align: middle; … … 55 54 background-repeat: no-repeat; 56 55 } 57 .jstElements button:hover {56 .jstElements button:hover, .jstElements button:focus { 58 57 border-color : #ddd; 59 58 background-color: #fff; … … 72 71 margin-right: 0; 73 72 } 74 75 73 .jstSwitcher { 76 74 display: block; … … 98 96 /* Buttons 99 97 -------------------------------------------------------- */ 100 .jstb_strong {98 button.jstb_strong { 101 99 background-image: url(bt_strong.png); 102 100 } 103 .jstb_em {101 button.jstb_em { 104 102 background-image: url(bt_em.png); 105 103 } 106 .jstb_ins {104 button.jstb_ins { 107 105 background-image: url(bt_ins.png); 108 106 } 109 .jstb_del {107 button.jstb_del { 110 108 background-image: url(bt_del.png); 111 109 } 112 .jstb_quote {110 button.jstb_quote { 113 111 background-image: url(bt_quote.png); 114 112 } 115 .jstb_code {113 button.jstb_code { 116 114 background-image: url(bt_code.png); 117 115 } 118 .jstb_paragraph {116 button.jstb_paragraph { 119 117 background-image: url(bt_paragraph.png); 120 118 } 121 .jstb_br {119 button.jstb_br { 122 120 background-image: url(bt_br.png); 123 121 } 124 .jstb_blockquote {122 button.jstb_blockquote { 125 123 background-image: url(bt_bquote.png); 126 124 } 127 .jstb_pre {125 button.jstb_pre { 128 126 background-image: url(bt_pre.png); 129 127 } 130 .jstb_ul {128 button.jstb_ul { 131 129 background-image: url(bt_ul.png); 132 130 } 133 .jstb_ol {131 button.jstb_ol { 134 132 background-image: url(bt_ol.png); 135 133 } 136 .jstb_link {134 button.jstb_link { 137 135 background-image: url(bt_link.png); 138 136 } 139 .jstb_img {137 button.jstb_img { 140 138 background-image: url(bt_img.png); 141 139 } 142 .jstb_img_select {140 button.jstb_img_select { 143 141 background-image: url(bt_img_select.png); 144 142 } 145 .jstb_post_link {143 button.jstb_post_link { 146 144 background-image: url(bt_post.png); 147 145 } 148 .jstb_removeFormat {146 button.jstb_removeFormat { 149 147 background-image: url(bt_clean.png); 150 148 }
Note: See TracChangeset
for help on using the changeset viewer.