added YUI and YUI-ext
fixed the resizable text area with IE problem fixed the ad space with IE problem merged the 7.2.0 and 7.1.4 change logs
This commit is contained in:
parent
6bf329d68d
commit
4f68a0933c
1026 changed files with 331404 additions and 60 deletions
14
www/extras/yui/examples/container/css/ResizePanel.css
Normal file
14
www/extras/yui/examples/container/css/ResizePanel.css
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
.panel {
|
||||
overflow:visible;
|
||||
}
|
||||
|
||||
.panel .bd {
|
||||
overflow:auto;
|
||||
}
|
||||
|
||||
.panel .ft {
|
||||
padding:0px;
|
||||
height:4px;
|
||||
font-size:4px;
|
||||
background-color:#CCC;
|
||||
}
|
||||
187
www/extras/yui/examples/container/css/example.css
Normal file
187
www/extras/yui/examples/container/css/example.css
Normal file
|
|
@ -0,0 +1,187 @@
|
|||
body {
|
||||
background-image:url(../img/bg.png);
|
||||
background-repeat:repeat-x;
|
||||
background-color:#FFFFFF;
|
||||
}
|
||||
|
||||
.homeLink {
|
||||
background-color:#CCC;position:absolute;right:0;top:0;text-align:center;padding:5px;margin-bottom:5px;border:1px solid #CCC;width:75px;
|
||||
}
|
||||
|
||||
label {
|
||||
float:left;
|
||||
width:150px;
|
||||
}
|
||||
.buttonset {
|
||||
clear:both;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
.box code, .box xmp {
|
||||
display:block;
|
||||
padding:5px;
|
||||
font-size:11px;
|
||||
background-color:#EEE;
|
||||
border:1px solid #555;
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.bd form {
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
.box {
|
||||
border:1px solid #CCC;
|
||||
background-color:#FFF;
|
||||
padding:5px;
|
||||
width:700px;
|
||||
}
|
||||
|
||||
.box p {
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.box h1 {
|
||||
font-family:georgia,times new roman,times,serif;
|
||||
color:purple;
|
||||
font-size:24px;
|
||||
margin-top:0px;
|
||||
margin-bottom:10px;
|
||||
padding-bottom:5px;
|
||||
border-bottom:1px dotted black;
|
||||
}
|
||||
|
||||
.box h2 {
|
||||
font-family:georgia,times new roman,times,serif;
|
||||
color:purple;
|
||||
font-size:14px;
|
||||
margin-top:0px;
|
||||
margin-bottom:10px;
|
||||
padding-bottom:5px;
|
||||
border-bottom:1px dotted black;
|
||||
}
|
||||
|
||||
.box h3 {
|
||||
font-family:georgia,times new roman,times,serif;
|
||||
color:black;
|
||||
font-size:11px;
|
||||
margin-top:0px;
|
||||
margin-bottom:5px;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
|
||||
|
||||
button {
|
||||
font:100 76% verdana;
|
||||
text-decoration:none;
|
||||
background-color: #E4E4E4;
|
||||
color: #333;
|
||||
cursor: hand;
|
||||
vertical-align: middle;
|
||||
border: 2px solid #797979;
|
||||
border-top-color:#FFF;
|
||||
border-left-color:#FFF;
|
||||
margin:2px;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
button.default {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
button:hover, button.hover {
|
||||
border:2px solid #90A029;
|
||||
background-color:#EBF09E;
|
||||
border-top-color:#FFF;
|
||||
border-left-color:#FFF;
|
||||
}
|
||||
|
||||
button:active {
|
||||
border:2px solid #E4E4E4;
|
||||
background-color:#BBB;
|
||||
border-top-color:#333;
|
||||
border-left-color:#333;
|
||||
}
|
||||
|
||||
div.overlayform {
|
||||
width:700px;
|
||||
border:1px solid black;
|
||||
background-color:#FFF;
|
||||
}
|
||||
|
||||
div.overlayform .formheader {
|
||||
padding:5px;
|
||||
font-weight:bold;
|
||||
background-color:#D92121;
|
||||
color:#FFF;
|
||||
|
||||
}
|
||||
|
||||
div.overlayform textarea {
|
||||
width:450px;
|
||||
height:50px;
|
||||
}
|
||||
|
||||
div.overlayform button {
|
||||
float:right;
|
||||
margin-right:10px
|
||||
}
|
||||
|
||||
div.row {
|
||||
clear:both;
|
||||
vertical-align:middle;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
|
||||
div.row.header {
|
||||
font-weight:bold;
|
||||
background-color:#666;
|
||||
color:#FFF;
|
||||
vertical-align:middle;
|
||||
height:1em;
|
||||
}
|
||||
|
||||
div.row.first {
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
div.row.last {
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
div.row div.label {
|
||||
float: left;
|
||||
width: 125px;
|
||||
margin-right:10px;
|
||||
text-align: right;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
div.row div.formw {
|
||||
float: left;
|
||||
text-align: left;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
#resp {
|
||||
font-family:courier;
|
||||
font-size:12px;
|
||||
margin-top:0px;
|
||||
}
|
||||
|
||||
.box label {
|
||||
float:none;
|
||||
}
|
||||
|
||||
.radioline {
|
||||
width:100%;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.radioline.first {
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.radioline.last {
|
||||
margin-bottom:10px;
|
||||
}
|
||||
65
www/extras/yui/examples/container/css/module.css
Normal file
65
www/extras/yui/examples/container/css/module.css
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
.module {
|
||||
margin:5px;
|
||||
padding:5px;
|
||||
border:1px solid red;
|
||||
background-color:#FFFFFF;
|
||||
}
|
||||
div.overlayform {
|
||||
width:700px;
|
||||
border:1px solid black;
|
||||
background-color:#FFF;
|
||||
}
|
||||
|
||||
div.overlayform .formheader {
|
||||
padding:5px;
|
||||
font-weight:bold;
|
||||
background-color:#D92121;
|
||||
color:#FFF;
|
||||
|
||||
}
|
||||
|
||||
div.overlayform textarea {
|
||||
width:450px;
|
||||
height:50px;
|
||||
}
|
||||
|
||||
div.overlayform button {
|
||||
float:right;
|
||||
margin-right:10px
|
||||
}
|
||||
|
||||
div.row {
|
||||
clear:both;
|
||||
vertical-align:middle;
|
||||
padding-bottom:5px;
|
||||
}
|
||||
|
||||
div.row.header {
|
||||
font-weight:bold;
|
||||
background-color:#666;
|
||||
color:#FFF;
|
||||
vertical-align:middle;
|
||||
height:1em;
|
||||
}
|
||||
|
||||
div.row.first {
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
div.row.last {
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
div.row div.label {
|
||||
float: left;
|
||||
width: 125px;
|
||||
margin-right:10px;
|
||||
text-align: right;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
div.row div.formw {
|
||||
float: left;
|
||||
text-align: left;
|
||||
vertical-align:middle;
|
||||
}
|
||||
77
www/extras/yui/examples/container/css/panel-aqua.css
Normal file
77
www/extras/yui/examples/container/css/panel-aqua.css
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
#win {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
.panel-container.shadow .underlay {
|
||||
background-color:#999;
|
||||
}
|
||||
|
||||
.panel {
|
||||
border:none;
|
||||
overflow:visible;
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
.panel .hd {
|
||||
padding:0;
|
||||
border:none;
|
||||
background:transparent url(../img/aqua-hd-bg.gif);
|
||||
color:#000;
|
||||
height:22px;
|
||||
margin-left:7px;
|
||||
margin-right:7px;
|
||||
text-align:center;
|
||||
overflow:visible;
|
||||
}
|
||||
|
||||
.panel .hd span {
|
||||
vertical-align:middle;
|
||||
line-height:22px;
|
||||
}
|
||||
|
||||
.panel .close {
|
||||
top:3px;
|
||||
left:4px;
|
||||
height:18px;
|
||||
width:17px;
|
||||
}
|
||||
|
||||
.panel .close.nonsecure {
|
||||
background-image:url(../img/aqua-hd-close.gif);
|
||||
}
|
||||
|
||||
.panel .close.secure {
|
||||
background-image:url(../img/aqua-hd-close.gif);
|
||||
}
|
||||
|
||||
.panel .close.nonsecure:hover {
|
||||
background-image:url(../img/aqua-hd-close-over.gif);
|
||||
}
|
||||
|
||||
.panel .close.secure:hover {
|
||||
background-image:url(../img/aqua-hd-close-over.gif);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.panel .lt {
|
||||
width:7px;height:22px;
|
||||
top:0;left:0;
|
||||
background:transparent url(../img/aqua-hd-lt.gif);
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
.panel .rt {
|
||||
width:7px;height:22px;
|
||||
top:0;right:0;
|
||||
background:transparent url(../img/aqua-hd-rt.gif);
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
.panel .bd {
|
||||
overflow:hidden;
|
||||
padding:4px;
|
||||
border:1px solid #aeaeae;
|
||||
background-color:#FFF;
|
||||
|
||||
}
|
||||
104
www/extras/yui/examples/container/css/panel-xp.css
Normal file
104
www/extras/yui/examples/container/css/panel-xp.css
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
#win {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
.panel-container.shadow .underlay {
|
||||
background-color:#999;
|
||||
}
|
||||
|
||||
.panel {
|
||||
border:none;
|
||||
overflow:visible;
|
||||
background:transparent url(../img/xp-brdr-rt.gif) no-repeat top right;
|
||||
}
|
||||
|
||||
.panel .hd {
|
||||
padding:0;
|
||||
border:none;
|
||||
background:transparent url(../img/xp-hd.gif);
|
||||
color:#FFF;
|
||||
height:30px;
|
||||
margin-left:8px;
|
||||
margin-right:8px;
|
||||
text-align:left;
|
||||
vertical-align:middle;
|
||||
overflow:visible;
|
||||
}
|
||||
|
||||
.panel .hd span {
|
||||
line-height:30px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
.panel .close {
|
||||
top:5px;
|
||||
right:8px;
|
||||
height:21px;
|
||||
width:21px;
|
||||
}
|
||||
|
||||
.panel .close.nonsecure {
|
||||
background-image:url(../img/xp-close.gif);
|
||||
}
|
||||
|
||||
.panel .close.secure {
|
||||
background-image:url(../img/xp-close.gif);
|
||||
}
|
||||
|
||||
.panel .tl {
|
||||
width:8px;height:29px;
|
||||
top:1px;left:0;
|
||||
background:transparent url(../img/xp-tl.gif);
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
.panel .tr {
|
||||
width:8px;height:29px;
|
||||
top:1px;right:0;
|
||||
background:transparent url(../img/xp-tr.gif);
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
.panel .bl {
|
||||
width:8px;height:26px;
|
||||
bottom:0;left:0;
|
||||
background:transparent url(../img/xp-bl.gif);
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
.panel .ft {
|
||||
background:transparent url(../img/xp-ft.gif);
|
||||
font-size:11px;
|
||||
height:26px;
|
||||
padding:0px 10px;
|
||||
}
|
||||
|
||||
.panel .ft span {
|
||||
line-height:22px;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
.panel .br {
|
||||
width:8px;height:26px;
|
||||
bottom:0;right:0;
|
||||
background:transparent url(../img/xp-br.gif);
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
.panel .bd {
|
||||
overflow:hidden;
|
||||
padding:10px;
|
||||
border:none;
|
||||
background:#FFF url(../img/xp-brdr-lt.gif) repeat-y;
|
||||
margin:0 4px 0 0;
|
||||
}
|
||||
|
||||
.panel .bd .brdr-rt {
|
||||
width:4px;
|
||||
right:0;
|
||||
top:29px;
|
||||
bottom:26px;
|
||||
height:auto;
|
||||
background:#FFF url(../img/xp-brdr-rt.gif) repeat-y;
|
||||
position:absolute;
|
||||
}
|
||||
82
www/extras/yui/examples/container/css/photobox.css
Normal file
82
www/extras/yui/examples/container/css/photobox.css
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
#win {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
.photobox {
|
||||
border:3px solid #666;
|
||||
overflow:visible;
|
||||
background-color:#333;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.photobox .hd {
|
||||
font-family:georgia, times new roman, times, serif;
|
||||
font-weight:normal;
|
||||
border:none;
|
||||
border-bottom:1px solid #666;
|
||||
background:transparent;
|
||||
color:#FFF;
|
||||
height:18px;
|
||||
text-align:left;
|
||||
overflow:visible;
|
||||
padding:0;
|
||||
padding-bottom:5px;
|
||||
margin-bottom:5px;
|
||||
width:500px;
|
||||
}
|
||||
|
||||
.photobox .hd span {
|
||||
vertical-align:middle;
|
||||
line-height:15px;
|
||||
}
|
||||
|
||||
.photobox .close {
|
||||
top:8px;
|
||||
right:8px;
|
||||
height:15px;
|
||||
width:18px;
|
||||
}
|
||||
|
||||
.photobox .close.nonsecure {
|
||||
background-image:url(../img/ybox-close.gif);
|
||||
}
|
||||
|
||||
.photobox .close.secure {
|
||||
background-image:url(../img/ybox-close.gif);
|
||||
}
|
||||
|
||||
.photobox .bd {
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.photobox .bd img {
|
||||
border:none;
|
||||
}
|
||||
|
||||
.mask {
|
||||
background-color:#000;
|
||||
-moz-opacity: 0.75;
|
||||
opacity:.75;
|
||||
filter:alpha(opacity=75);
|
||||
}
|
||||
|
||||
.photobox .ft {
|
||||
height:16px;
|
||||
width:500px;
|
||||
padding:5px 0;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.photobox .ft .back {
|
||||
position:absolute;
|
||||
left:1px;
|
||||
}
|
||||
|
||||
.photobox .ft .back img, .photobox .ft .next img {
|
||||
border:none;
|
||||
}
|
||||
|
||||
.photobox .ft .next {
|
||||
position:absolute;
|
||||
right:1px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue