- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Mar 2012 15:29:09 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv23890 Modified Files: alert.css load-timeout.js Log Message: add dashed lines and change how Path objects work to instead use external line and font styles and transformation objects (whatwg r7028) [updated by splitter] Index: alert.css =================================================================== RCS file: /sources/public/html5/spec/alert.css,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- alert.css 20 Mar 2012 15:27:22 -0000 1.4 +++ alert.css 20 Mar 2012 15:29:06 -0000 1.5 @@ -1,5 +1,5 @@ #alert { position: fixed; top: 20%; left: 20%; right: 20%; font-size: 2em; padding: 0.5em; z-index: 40; background: gray; background: rgba(32,32,32,0.9); color: white; border-radius: 1em; -moz-border-radius: 1em; -webkit-transition: opacity 1s linear; } #alert.closed { opacity: 0; } -#alert input { position: absolute; top: 2em; right: 2em; } +#alert input { position: absolute; top: 1em; right: 2em; } #alert :link, #alert :visited { color: white; } #alert :link:hover, #alert :visited:hover { background: transparent; } Index: load-timeout.js =================================================================== RCS file: /sources/public/html5/spec/load-timeout.js,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- load-timeout.js 20 Mar 2012 15:22:40 -0000 1.18 +++ load-timeout.js 20 Mar 2012 15:29:06 -0000 1.19 @@ -9,7 +9,7 @@ x.value = "Close"; x.onclick = closeAlert2; currentAlert.appendChild(x); - currentAlert.appendChild(document.createElement('span')); + currentAlert.appendChild(document.createElement('p')); currentAlert.onmousemove = function () { clearTimeout(currentAlertTimeout); currentAlert.className = '';
Received on Tuesday, 20 March 2012 15:29:11 UTC