diff --git a/ChangeLog b/ChangeLog index d7b69dac3..5e7497c7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-11-01 Wolfgang Sourdeau + + * UI/Common/UIxPageFrame.m ([UIxPageFrame -pageContentClasses]): + new method that returns "pageContent" as class, but also "popup" + for the DIV where the page content lies, so that we can manipulate + the content of popup's with CSS identifiers. + 2006-10-31 Wolfgang Sourdeau * UI/Scheduler/UIxCalInlineAptView.m ([UIxCalInlineAptView diff --git a/UI/Common/UIxPageFrame.m b/UI/Common/UIxPageFrame.m index 4d2444338..d29842ec1 100644 --- a/UI/Common/UIxPageFrame.m +++ b/UI/Common/UIxPageFrame.m @@ -125,6 +125,11 @@ return isPopup; } +- (NSString *) pageContentClasses +{ + return (isPopup ? @"pageContent popup" : @"pageContent"); +} + /* page based JavaScript */ - (NSString *) pageJavaScriptURL diff --git a/UI/Templates/UIxPageFrame.wox b/UI/Templates/UIxPageFrame.wox index 4ef08e44e..39d0b5124 100644 --- a/UI/Templates/UIxPageFrame.wox +++ b/UI/Templates/UIxPageFrame.wox @@ -36,10 +36,15 @@ var UserLogin = ''; - - + + + + + + + -
-
- +