diff --git a/ChangeLog b/ChangeLog index cf369470..e0c0edc0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -79,6 +79,8 @@ dom.js and util.js. * Added functions DOM.addKeyListener and Util.loadOnLoad +* Added buttons panel. + 2012.10.01, Version 0.1.7 diff --git a/config.json b/config.json index 8706ca79..0e41dd71 100644 --- a/config.json +++ b/config.json @@ -2,10 +2,10 @@ "cache" : {"allowed" : false}, "appcache" : false, "minification" : { - "js" : false, - "css" : true, - "html" : true, - "img" : true + "js" : true, + "css" : false, + "html" : false, + "img" : false }, "oauth_client_id" : "891c251b925e4e967fa9", "oauth_client_secret" : "afe9bed1e810c5dc44c4c2a953fc6efb1e5b0545", diff --git a/css/style.css b/css/style.css index f3cc05fb..9ab14010 100644 --- a/css/style.css +++ b/css/style.css @@ -90,15 +90,36 @@ body{ background:url(/img/spinner.gif); } .error:hover{ - color:rgba(222, 41, 41, 0.81); + color:rgb(222, 41, 41); + color:rgba(222, 41, 41, 0.81); } .refresh-icon{ background:url(/img/panel_refresh.png) no-repeat; } .refresh-icon:active{ /*background-position-y: -15px;*/ -background:url(/img/panel_refresh.png) 0 -15px no-repeat; + background:url(/img/panel_refresh.png) 0 -15px no-repeat; } + +.cmd-button{ + border: 1.5px solid rgba(49,123,249,.40); + background-color: white; + color: rgb(49,123,249); + margin: 20px 2px 0 2px; + overflow: hidden; + text-overflow: ellipsis; + width: 10%; + white-space: nowrap; +} +.cmd-button:hover{ + border: 1.5px solid rgb(0,0,0); +} + +.cmd-button:active{ + background-color: rgb(49,123,249); + color: white; +} + .clear-cache{ margin-right: 6px; margin-left: 7px; diff --git a/index.html b/index.html index 380a17ee..ab590fdd 100644 --- a/index.html +++ b/index.html @@ -30,15 +30,15 @@