- Timestamp:
- 06/06/05 08:56:29 (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/htmlarea.css
r217 r221 11 11 .htmlarea .toolbar .toolbarRow { 12 12 margin: 0; 13 padding -left: 0px 0px 0px 2px;13 padding: 0px 2px 0px 2px; 14 14 font-family: Tahoma,Verdana,sans-serif; 15 15 font-size: 11px; … … 25 25 vertical-align: top; 26 26 position: relative; 27 top: 2px;27 top: 3px; 28 28 } 29 29 -
trunk/htmlarea.js
r217 r221 938 938 clearBoth(); 939 939 newLine(); // init first line 940 var first = true;941 940 for (var i = 0; i < this.config.toolbar.length; ++i) { 942 if (!first) {943 // createButton("linebreak");944 } else {945 first = false;946 }947 941 if(this.config.toolbar[i] == null) this.config.toolbar[i] = ['separator']; 948 942 var group = this.config.toolbar[i]; -
trunk/skins/blue-metallic/skin.css
r217 r221 3 3 .htmlarea .toolbar .toolbarRow 4 4 { 5 background-image: url(button-background.png); 5 /*background-image: url(button-background.png);*/ 6 background-color: #C5DCEC; 6 7 border:1px solid #DEDEDE; 7 -moz-border-radius:3px; 8 -moz-border-radius:5px; 9 margin: 1px; 8 10 } 9 11 10 12 .htmlarea .toolbar .toolbarRow .button { 11 13 background-image: url(button-background.png); 12 border:1px solid #f7f8fd; 14 padding: 1px; 15 border: 0px; 13 16 } 17 14 18 .htmlarea .toolbar .toolbarRow .separator { 15 19 background-image: url(separator.gif); 16 border:1px #f7f8fd; 17 width:7px; 20 padding: 1px; 21 border: 0px; 22 margin: 2px; 23 width: 7px; 18 24 } 19 25 20 26 .htmlarea .toolbar .toolbarRow .buttonHover 21 27 { 28 padding: 0px; 29 border: 1px solid; 22 30 border-color: #316AC5; 23 31 background-image: none !important; … … 27 35 .htmlarea .toolbar .toolbarRow .buttonDisabled 28 36 { 29 background-color : #FFE1AC; 37 padding: 1px; 38 border: 0px; 39 border-color: #f7f8fd; 30 40 } 31 41 … … 33 43 .htmlarea .toolbar .toolbarRow .button.buttonPressed 34 44 { 45 padding: 0px; 46 border: 1px solid; 35 47 border-color: #79A4CC #FFFFFF #FFFFFF #79A4CC; 36 48 background-image: none !important;
Note: See TracChangeset
for help on using the changeset viewer.