Changeset 950 for branches/gdl-frontend/src/anaToMia
- Timestamp:
- 09/21/11 10:39:11 (14 years ago)
- Location:
- branches/gdl-frontend/src/anaToMia/GDL_Widgets
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ¶
r949 r950 42 42 private final String GDL_PANEL_STYLE_NAME = "gdl_panel"; 43 43 private final String CREATE_NEW_BUTTON_STYLE_NAME = "create_new_button"; 44 private final String HASH_OBJECT_PSI_CONTAINER_STYLE_NAME = "hash_object_psi_container"; 44 45 private HashObjectPsiContainer hashObjectPsicontainer = null; 45 46 … … 97 98 if(this.hashObjectPsicontainer != null) this.hashObjectPsicontainer.removeFromParent(); 98 99 this.hashObjectPsicontainer = psiContainer; 99 if(this.hashObjectPsicontainer != null) this.contentPanel.insert(this.hashObjectPsicontainer, this.contentPanel.getWidgetCount()); 100 if(this.hashObjectPsicontainer != null){ 101 this.contentPanel.insert(this.hashObjectPsicontainer, this.contentPanel.getWidgetCount()); 102 this.hashObjectPsicontainer.addStyleName(this.HASH_OBJECT_PSI_CONTAINER_STYLE_NAME); 103 } 100 104 } 101 105 -
TabularUnified branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ¶
r949 r950 7 7 import com.google.gwt.event.dom.client.ClickEvent; 8 8 import com.google.gwt.event.dom.client.ClickHandler; 9 import com.google.gwt.user.client.DOM; 9 10 import com.google.gwt.user.client.Window; 10 11 import com.google.gwt.user.client.ui.Button; … … 27 28 this.containerPanel.add(this.commitButton); 28 29 this.commitButton.addClickHandler(new HashObjectPsiContainerClickHandler()); 30 DOM.setStyleAttribute(this.commitButton.getElement(), "width", "100%"); 31 DOM.setStyleAttribute(this.commitButton.getElement(), "marginTop", "1em"); 29 32 } 30 33 -
TabularUnified branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css ¶
r949 r950 63 63 64 64 65 .hash_object_psi_container { 66 border: rgb(134, 169, 203) 1px solid; 67 border-radius: 5px; 68 } 69 70 65 71 .gdl_panel { 66 72 margin-left:auto;
Note: See TracChangeset
for help on using the changeset viewer.