From: pdontthink Date: Sun, 6 May 2007 02:22:19 +0000 (+0000) Subject: Forgot CSS style for resizable widget code X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e5bbf4cc094fd0ac49138a32686e5cd81349379f;p=squirrelmail.git Forgot CSS style for resizable widget code git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12366 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/templates/default_advanced/css/advanced.css b/templates/default_advanced/css/advanced.css index c8b9b0ae..141474ca 100644 --- a/templates/default_advanced/css/advanced.css +++ b/templates/default_advanced/css/advanced.css @@ -82,6 +82,7 @@ padding-bottom: 2px; } + /* advanced message editing defs */ #colorSample { width: 50px; @@ -98,6 +99,7 @@ font-weight: bold; } + /* Advanced Tree definitions */ .dtree { font-size:11px; @@ -133,3 +135,18 @@ .dtree .clip { overflow: hidden; } + + +/* Resizing handle */ +.resize_handle { + height: 9px; + overflow: hidden; + border-color: #DDDDDD; + border-style: solid; + border-width: 0px 1px 1px; + cursor: s-resize; +/* FIXME! HOW DO WE BETTER DEFINE IMAGE PATHS HERE? */ + background: #EEEEEE url(../images/grippie.png) no-repeat center 2px; +} + + diff --git a/templates/default_advanced/images/grippie.png b/templates/default_advanced/images/grippie.png new file mode 100644 index 00000000..6524d416 Binary files /dev/null and b/templates/default_advanced/images/grippie.png differ