mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
elofgren: USABILITY: Move action buttons to bottom right of screen, make them look more like buttons, and add hover effect in order to fix usability issue #13 'Important Buttons Not Noticeable Enough'. More info: http://www.silverstripe.com/google-summer-of-code-forum/flat/1654
(merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41859 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
9413acbc05
commit
708621f56b
@ -330,30 +330,54 @@ table.CMSList tbody td.current td {
|
||||
|
||||
.ajaxActions {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 3px;
|
||||
right: 10px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: right;
|
||||
/*
|
||||
background-image:url(../images/textures/ToolBar.png);
|
||||
height : 21px;
|
||||
border-left : 1px solid #808080;
|
||||
border-bottom : 1px solid #808080;
|
||||
*/
|
||||
}
|
||||
.ajaxActions input {
|
||||
/*
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
background-color:transparent;
|
||||
*/
|
||||
cursor: pointer;
|
||||
float : left;
|
||||
height : 22px;
|
||||
height : 25px;
|
||||
/*
|
||||
background-image:url(../images/textures/seperator.png);
|
||||
background-repeat:no-repeat;
|
||||
background-position:right;
|
||||
*/
|
||||
background-image: url(../images/textures/ToolBar.png);
|
||||
padding-left: 10px;
|
||||
padding-right : 10px;
|
||||
margin : 0px;
|
||||
color : #333333;
|
||||
overflow: visible;
|
||||
width: auto;
|
||||
border-color: #CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
|
||||
border-style: double;
|
||||
border-width: 3px;
|
||||
margin: 1px;
|
||||
}
|
||||
.ajaxActions input:active {
|
||||
background: #F4F4F4 none repeat scroll 0%;
|
||||
border-color: #999999 rgb(204, 204, 204) rgb(204, 204, 204) rgb(153, 153, 153);
|
||||
}
|
||||
.ajaxActions input:hover {
|
||||
background: #fff;
|
||||
}
|
||||
.ajaxActions input.delete:hover {
|
||||
background: #ce0000;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.right form div.tab {
|
||||
@ -614,29 +638,28 @@ div.TreeDropdownField a.editLink {
|
||||
#statusMessage {
|
||||
position: absolute;
|
||||
z-index: 500;
|
||||
bottom: 15px;
|
||||
right: 30px;
|
||||
bottom: 3px;
|
||||
left: 3px;
|
||||
text-align: left;
|
||||
|
||||
padding: 15px 15px 15px 40px;
|
||||
padding: 1px 1px 1px 40px;
|
||||
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
|
||||
border: 1px solid #cc9;
|
||||
/* border: 1px solid #cc9; */
|
||||
color: #660;
|
||||
background-color: #F9F9E3;
|
||||
/* background-color: #F9F9E3; */
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
#statusMessage.good {
|
||||
border-color: #9c9;
|
||||
color: #060;
|
||||
background: url(../images/alert-good.gif) #E2F9E3 7px no-repeat;
|
||||
background: url(../images/alert-good.gif) /*#E2F9E3*/ 7px no-repeat;
|
||||
}
|
||||
#statusMessage.bad {
|
||||
border-color: #c99;
|
||||
color: #fff;
|
||||
background: url(../images/alert-bad.gif) #c00 7px no-repeat;
|
||||
color: #c00;
|
||||
background: url(../images/alert-bad.gif) /*#c00*/ 7px no-repeat;
|
||||
max-height: 600px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user