/** * * * @param string $class */ private function createLook($class) { $style = new HTMLStyle("{$class}"); $style->width = "{$this->wth}px"; $style->height = $this->hgt + 2 . "px"; $style->border = "1px solid #E7E7F1"; $style->background_color = "#FAFAFB"; //$style->z_index = self::$counter + "100000"; return $style->getOutput(); }
private function createStatusLook() { $look = new HTMLStyle("statusBar"); $look->font_size = "12px"; $look->font_family = "Sans"; $look->text_align = "left"; $look->color = "#F3F5F5"; $look->border = "1px outset #CEDAE8"; $look->background_color = "#AABACC"; //$look->background_image="url('../library/icons/grid_caption.png')"; $look->printOut(); }