Explorar o código

css: rename '.jt_buttons' to '.amber_buttons'

mkroehnert %!s(int64=12) %!d(string=hai) anos
pai
achega
bc5f3d35e7
Modificáronse 4 ficheiros con 7 adicións e 7 borrados
  1. 3 3
      css/amber.css
  2. 1 1
      js/IDE.deploy.js
  3. 2 2
      js/IDE.js
  4. 1 1
      st/IDE.st

+ 3 - 3
css/amber.css

@@ -162,7 +162,7 @@ body.amberBody {
     bottom: 27px;
 }
 
-.amberTool .jt_buttons {
+.amberTool .amber_buttons {
     position: absolute;
     bottom: 0;
     left: 0;
@@ -172,7 +172,7 @@ body.amberBody {
     background: url("../images/sprite.amber.png") 0 0 repeat;
 }
 
-.amberTool .jt_buttons .right {
+.amberTool .amber_buttons .right {
     float: right;
 }
 
@@ -412,7 +412,7 @@ body.amberBody {
     width: 75%;
 }
 
-.amberTool .jt_buttons.inspector {
+.amberTool .amber_buttons.inspector {
     position: absolute;
     top: 150px;
 }

+ 1 - 1
js/IDE.deploy.js

@@ -1019,7 +1019,7 @@ smalltalk.method({
 selector: "renderTab",
 fn: function (){
 var self=this;
-smalltalk.send(self['@div'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["amber_box"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderBoxOn_", [html]);})]);})(smalltalk.send(html, "_div", []));return (function($rec){smalltalk.send($rec, "_class_", ["jt_buttons"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderButtonsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));})]);
+smalltalk.send(self['@div'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["amber_box"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderBoxOn_", [html]);})]);})(smalltalk.send(html, "_div", []));return (function($rec){smalltalk.send($rec, "_class_", ["amber_buttons"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderButtonsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));})]);
 return self;}
 }),
 smalltalk.TabWidget);

+ 2 - 2
js/IDE.js

@@ -1425,10 +1425,10 @@ selector: "renderTab",
 category: 'rendering',
 fn: function (){
 var self=this;
-smalltalk.send(self['@div'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["amber_box"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderBoxOn_", [html]);})]);})(smalltalk.send(html, "_div", []));return (function($rec){smalltalk.send($rec, "_class_", ["jt_buttons"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderButtonsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));})]);
+smalltalk.send(self['@div'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["amber_box"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderBoxOn_", [html]);})]);})(smalltalk.send(html, "_div", []));return (function($rec){smalltalk.send($rec, "_class_", ["amber_buttons"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderButtonsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));})]);
 return self;},
 args: [],
-source: "renderTab\x0a\x09div contents: [:html |\x0a\x09    html div\x0a\x09\x09class: 'amber_box';\x0a\x09\x09with: [self renderBoxOn: html].\x0a\x09    html div\x0a\x09\x09class: 'jt_buttons';\x0a\x09\x09with: [self renderButtonsOn: html]]",
+source: "renderTab\x0a\x09div contents: [:html |\x0a\x09    html div\x0a\x09\x09class: 'amber_box';\x0a\x09\x09with: [self renderBoxOn: html].\x0a\x09    html div\x0a\x09\x09class: 'amber_buttons';\x0a\x09\x09with: [self renderButtonsOn: html]]",
 messageSends: ["contents:", "class:", "with:", "renderBoxOn:", "div", "renderButtonsOn:"],
 referencedClasses: []
 }),

+ 1 - 1
st/IDE.st

@@ -587,7 +587,7 @@ renderTab
 		class: 'amber_box';
 		with: [self renderBoxOn: html].
 	    html div
-		class: 'jt_buttons';
+		class: 'amber_buttons';
 		with: [self renderButtonsOn: html]]
 !