Skip to content

Commit

Permalink
Item9283: git pull from CMR
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/WidgetsSkin@8087 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
SvenDowideit authored and SvenDowideit committed Jul 9, 2010
1 parent 6c47f1c commit ed412c5
Show file tree
Hide file tree
Showing 16 changed files with 635 additions and 3 deletions.
11 changes: 8 additions & 3 deletions data/System/WidgetsSkin.txt
Expand Up @@ -155,10 +155,10 @@ You can use this technique to create a skin that matches closely the HTML of you
| Screenshot: | <a href="%ATTACHURL%/iconic.gif"><img class="demoImage" src="%ATTACHURL%/iconic_preview.gif" alt="Click for full screen image" width="600" height="130" /></a> |
| Preview: | [[%SCRIPTURL%/view%SCRIPTSUFFIX%/%WEB%/%TOPIC%][Preview with this topic]] |
| Base Name: | Widget |
| Skin Version: | %$VERSION% |
| Dependencies: | %$DEPENDENCIES% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 9 Jul 2010: | prepare for uploading |
| 7 Apr 2010: | update iblog2 and poetry CMR themes - add jarrah |
| 27 Feb 2010: | fix REVINFO bug in the widget-history - so that it shows the requested topic's history |
| 13 Feb 2010: | bring in styles from http://www.codemonkeyramblings.com/themes/ and fix bugs |
Expand Down Expand Up @@ -457,11 +457,16 @@ from http://github.com/mikert/Movable-Type-Styles - see http://www.codemonkeyram
* Set NAME136 = jarrah
* Set CSS136 = %PUBURL%/%SYSTEMWEB%/WidgetsSkin/CMR_themes/jarrah/screen.css

* Set LASTCSS = 136

* Set NAME137 = twentyten
* Set CSS137 = %PUBURL%/%SYSTEMWEB%/WidgetsSkin/CMR_themes/twentyten/screen.css
* Set NAME138 = ink-and-wash
* Set CSS138 = %PUBURL%/%SYSTEMWEB%/WidgetsSkin/CMR_themes/ink-and-wash/screen.css
* Set NAME139 = twentyten-forestfloor
* Set CSS139 = %PUBURL%/%SYSTEMWEB%/WidgetsSkin/CMR_themes/twentyten-forestfloor/screen.css



* Set LASTCSS = 136
</div>
%ENDSECTION{"css-browser"}%

Expand Down
15 changes: 15 additions & 0 deletions lib/Foswiki/Contrib/WidgetsSkin/MANIFEST
Expand Up @@ -882,3 +882,18 @@ pub/System/WidgetsSkin/CMR_themes/jarrah/icontag.png
pub/System/WidgetsSkin/CMR_themes/jarrah/bg.jpg
pub/System/WidgetsSkin/CMR_themes/jarrah/rss-bg.jpg

pub/System/WidgetsSkin/CMR_themes/twentyten/sunset.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/forestfloor.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/inkwell.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/screen.css
pub/System/WidgetsSkin/CMR_themes/twentyten/fern.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/berries.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/path.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/cherryblossoms.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten/concave.jpg
pub/System/WidgetsSkin/CMR_themes/ink-and-wash/screen.css
pub/System/WidgetsSkin/CMR_themes/ink-and-wash/abgl.png
pub/System/WidgetsSkin/CMR_themes/ink-and-wash/abgr.png
pub/System/WidgetsSkin/CMR_themes/twentyten-forestfloor/forestfloor.jpg
pub/System/WidgetsSkin/CMR_themes/twentyten-forestfloor/screen.css

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions pub/System/WidgetsSkin/CMR_themes/ink-and-wash/screen.css
@@ -0,0 +1,84 @@
/*
name: Unstyled
designer: Movable Type
designer_url: http://www.movabletype.org
layouts: layout-wtt, layout-twt, layout-wt, layout-tw, layout-wm, layout-mw
This theme has now Styles, but via StyleCatcher it does include base blog styles for layout and typography.
*/

body {
font-size: 12px; font-family: Microsoft YaHei,Tahoma, Helvetica, Arial, sans-serif; color: #222222;
background:#e3ddcd url(http://www.codemonkeyramblings.com/wordpress/wp-content/themes/ink-and-wash/images/bg.jpg);
height:800px;
}

#container {
background:url(http://www.codemonkeyramblings.com/wordpress/wp-content/themes/ink-and-wash/images/topbg.jpg) no-repeat scroll center top transparent;
height:471px;
}

#header {
background:transparent;
float:left;
width:950px;
}

#header-inner {
margin:50px 0 0 100px;
}

#header-name, #header-name a {
color:#000000;
font-size:35px;
font-weight:700;
text-decoration: none;
}

#main-navigation ul {
padding:25px 0 0 60px;
}

#main-navigation ul li {
background:url(http://www.codemonkeyramblings.com/mt/mt-static/themes/ink-and-wash/abgl.png) no-repeat scroll left 0 transparent;
display:block;
float:left;
height:40px;
margin:0 7px 0 0;
}

#main-navigation ul li a {
background:url(http://www.codemonkeyramblings.com/mt/mt-static/themes/ink-and-wash/abgr.png) no-repeat scroll right 0 transparent;
color:#F4F0E8;
display:block;
float:left;
font-size:14px;
padding:11px 30px 11px 30px;
text-align:center;
}

#header .widget-sign-in {
position: absolute;
right: 15px;
top: 15px;
text-align: right;
font-size: 15px;
margin: 0;
padding: 0;
}

#header .widget-sign-in a {
color: white;
text-decoration: none;
font-weight: bold;
}

#header .widget-sign-in .widget-header {
display: none;
}

#main-navigation .widget-search {
display: none;
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ed412c5

Please sign in to comment.